-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.3 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.3 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
{
"name": "app-upgrade-react-native-sdk",
"version": "2.0.0",
"description": "Official App Upgrade react-native sdk",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest --verbose"
},
"author": "App Upgrade <support@appupgrade.dev> (https://appupgrade.dev)",
"homepage": "https://github.com/appupgrade-dev/app-upgrade-react-native-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/appupgrade-dev/app-upgrade-react-native-sdk.git"
},
"bugs": {
"url": "https://github.com/appupgrade-dev/app-upgrade-react-native-sdk.git/issues"
},
"license": "MIT",
"dependencies": {
"axios": "^1.13.0",
"axios-retry": "^4.5.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.70.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-native": {
"optional": false
}
},
"keywords": [
"app-update",
"react-native",
"force-update",
"version",
"app-upgrade",
"force-upgrade",
"typescript"
],
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/react": "^19.0.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.6",
"typescript": "^5.7.0"
}
}