-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "@papercups-io/chat-widget-native",
"version": "1.0.4",
"description": "Papercups chat widget for React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"directories": {
"example": "example"
},
"scripts": {
"prepare": "bob build",
"pack": "npm pack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "reichert621",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"query-string": "^6.13.1",
"react-native-webview": "^10.6.0"
},
"devDependencies": {
"@react-native-community/bob": "^0.16.2",
"@types/react": "^16.9.46",
"@types/react-native": "^0.63.8",
"react": "^16.13.1",
"react-native": "^0.63.2",
"typescript": "^3.9.7"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"license": "MIT"
}