-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (64 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
{
"name": "react-native-verloop-sdk",
"version": "1.1.5",
"description": "VerloopSDK is to display client side livechat widget on the mobile app.",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"build-sdk": "cd android && ./gradlew build",
"build": "tsc",
"clean": "cd android && ./gradlew clean"
},
"keywords": [
"react-native",
"android",
"ios"
],
"repository": {
"type": "git",
"url": "git+https://github.com/github_account/react-native-verloop-sdk.git.git"
},
"author": "Raghav Rawat <raghav@verloop.com> (https://github.com/github_account/react-native-verloop-sdk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/github_account/react-native-verloop-sdk.git/issues"
},
"homepage": "https://github.com/github_account/react-native-verloop-sdk.git#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.70.0"
},
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!android/java*",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"devDependencies": {
"typescript": "^5.8.2",
"prettier": "^3.0.3"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}