This repository was archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.54 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@onewelcome/react-native-sdk",
"title": "OneWelcome React Native SDK",
"version": "0.6.0",
"description": "OneWelcome SDK component for React Native (iOS and Android)",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"lib",
"README.md",
"android/",
"android/build.gradle",
"ios/",
"react-native-sdk.podspec"
],
"scripts": {
"start": "react-native start",
"lint": "eslint .",
"prepack": "bob build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onewelcome/sdk-react-native.git",
"baseUrl": "https://www.npmjs.com/package/@onewelcome/react-native-sdk"
},
"keywords": [
"react-native",
"react native",
"onewelcome-sdk",
"onewelcome",
"sdk"
],
"author": {
"name": "OneWelcome",
"email": "contact@onewelcome.com"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react-native": ">=0.63.0"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/react": "^16.14.0",
"@types/react-native": "0.70.5",
"eslint": "^7.11.0",
"react": "18",
"react-native": "0.70.5",
"react-native-builder-bob": "^0.20.4",
"typescript": "^4.2.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}