forked from microsoft/react-native-code-push
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 3.56 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@bravemobile/react-native-code-push",
"version": "13.0.0",
"description": "React Native plugin for the CodePush service",
"main": "src/CodePush.js",
"react-native": "src/CodePush.js",
"source": "src/CodePush.js",
"types": "typings/react-native-code-push.d.ts",
"codegenConfig": {
"name": "RNCodePushSpec",
"type": "modules",
"jsSrcsDir": "src/specs",
"android": {
"javaPackageName": "com.microsoft.codepush.react"
},
"ios": {
"modulesProvider": {
"CodePush": "CodePush"
}
}
},
"homepage": "https://microsoft.github.io/code-push",
"keywords": [
"react-native",
"expo",
"code",
"push",
"code-push",
"react-native-code-push",
"expo-code-push"
],
"workspaces": [
"cli"
],
"author": "Soomgo Mobile Team (originally Microsoft Corporation)",
"license": "MIT",
"bin": {
"code-push": "bin/code-push.js"
},
"files": [
"src",
"bin/code-push.js",
"android",
"ios",
"cli/dist",
"cli/**/*.ts",
"!cli/node_modules",
"expo",
"typings",
"*.podspec",
"react-native.config.js",
"app.plugin.js",
"package.json",
"!ios/build",
"!android/build",
"!android/app/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"setup": "npm install --quiet --no-progress",
"setup-example-app": "ts-node --project scripts/setupExampleApp/tsconfig.json scripts/setupExampleApp/runSetupExampleApp.ts",
"setup-expo-example-app": "ts-node --project scripts/setupExampleApp/tsconfig.json scripts/setupExpoExampleApp/runSetupExpoExampleApp.ts",
"type:src": "tsc --project tsconfig.json --noEmit",
"type:cli": "npm run --workspace cli typecheck",
"type:scripts": "tsc --project scripts/tsconfig.json --noEmit",
"type:e2e": "tsc --project e2e/tsconfig.json --noEmit",
"typecheck": "npm run type:src && npm run type:cli && npm run type:scripts && npm run type:e2e",
"build:cli": "npm run --workspace cli clean && npm run --workspace cli build",
"prepack": "npm run build:cli",
"eslint": "eslint --quiet .",
"jest": "jest src/versioning/* expo/* && npm run --workspace cli test",
"e2e": "ts-node --project e2e/tsconfig.json e2e/run.ts"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Soomgo-Mobile/react-native-code-push.git"
},
"dependencies": {
"commander": "^12.1.0",
"hoist-non-react-statics": "^3.3.2",
"semver": "^7.3.5",
"shelljs": "^0.10.0",
"xcode": "^3.0.1",
"yauzl": "^3.2.0",
"yazl": "^3.3.1"
},
"peerDependencies": {
"expo": ">=50.0.0",
"react-native": "*"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.13.0",
"@types/express": "^5.0.6",
"@types/node": "^18.19.129",
"@types/react": "19.2.14",
"@types/semver": "^7.5.8",
"@types/shelljs": "^0.8.15",
"@types/yauzl": "^2.10.3",
"babel-jest": "^29.7.0",
"eslint": "^9.13.0",
"eslint-plugin-react": "^7.37.2",
"express": "latest",
"globals": "^15.11.0",
"jest": "^29.7.0",
"react": "19.2.3",
"react-native": "0.84.1",
"ts-node": "^10.9.2",
"typescript": "5.0.4",
"typescript-eslint": "^8.11.0"
},
"engines": {
"node": ">=18"
}
}