-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 KB
/
package.json
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
{
"name": "@idopterlabs/rn-zendesk",
"main": "index.js",
"preferGlobal": false,
"version": "0.5.2",
"description": "React Native Wrapper around Zendesk Chat",
"license": "MIT",
"author": "Idopter Labs",
"keywords": [
"android",
"chat",
"ios",
"react",
"react-component",
"react-native",
"zendesk"
],
"scripts": {
"lint": "eslint",
"docs": "typedoc --plugin typedoc-plugin-extras --options typedoc.json index.d.ts",
"prettier": "prettier",
"prettier:all": "prettier --write '**/*.json' '**/*.js' '**/*.ts' "
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/idopterlabs/rn-zendesk"
},
"homepage": "https://github.com/idopterlabs/rn-zendesk.git",
"bugs": {
"url": "https://github.com/idopterlabs/rn-zendesk/issues"
},
"files": [
".gitignore",
"LICENSE",
"RNZendesk.podspec",
"android",
"index.d.ts",
"index.js",
"ios",
"package.json"
],
"devDependencies": {
"eslint": "7.3.x",
"prettier": "2.0.x",
"typedoc": "^0.22.15",
"typedoc-plugin-extras": "^2.2.3",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^16.11.0",
"react-native": "0.60.x | 0.61.x | 0.62.x | 0.63.x"
},
"types": "index.d.ts"
}