-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.84 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
{
"name": "react-native-code-push-plugin",
"version": "1.0.14",
"description": "Config plugin to auto configure react-native-code-push on prebuild",
"keywords": [
"expo",
"react-native",
"react-native-code-push"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gstj/react-native-code-push-plugin.git"
},
"files": [
"build",
"app.plugin.js"
],
"sideEffects": false,
"main": "build/index.js",
"types": "build/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"changelog:check": "node tools/changelog-check.mjs",
"clean": "expo-module clean",
"lint": "oxlint --report-unused-disable-directives --deny-warnings",
"lint:fix": "oxlint --report-unused-disable-directives --deny-warnings --fix",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"typecheck": "tsc --noEmit",
"test": "jest",
"prepare": "pnpm run build",
"release": "release-it",
"expo-module": "expo-module"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@release-it/conventional-changelog": "^12.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^24.13.3",
"conventional-changelog": "^8.1.0",
"conventional-changelog-conventionalcommits": "^10.2.1",
"conventional-recommended-bump": "^12.1.0",
"expo": ">=49.0.0",
"expo-module-scripts": "^3.0.3",
"jest": "^29",
"magic-codemods": "^1.1.0",
"magic-oxfmt-config": "^1.2.0",
"magic-oxlint-config": "^1.2.0",
"magic-tsconfig": "^1.2.0",
"oxfmt": "0.60.0",
"oxlint": "1.75.0",
"release-it": "^21.0.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"expo": ">=49.0.0"
},
"packageManager": "pnpm@11.17.0",
"upstreamPackage": "react-native-code-push"
}