-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.95 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.95 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
{
"name": "react-native-update-cli",
"version": "2.8.5",
"description": "command line tool for react-native-update (remote updates for react native)",
"main": "lib/exports.js",
"types": "lib/exports.d.ts",
"bin": {
"pushy": "lib/index.js",
"cresc": "lib/index.js"
},
"exports": {
".": {
"types": "./lib/exports.d.ts",
"require": "./lib/exports.js",
"default": "./lib/exports.js"
},
"./cli": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./diff": {
"types": "./lib/diff.d.ts",
"require": "./lib/diff.js",
"default": "./lib/diff.js"
},
"./lib/diff": {
"types": "./lib/diff.d.ts",
"require": "./lib/diff.js",
"default": "./lib/diff.js"
}
},
"files": ["lib", "src", "proto", "cli.json"],
"scripts": {
"build": "rm -rf lib && swc src -d lib --strip-leading-paths && tsc -p tsconfig.build.json",
"prepublishOnly": "bun scripts/prepublish.ts && bun run build && chmod +x lib/index.js",
"lint": "tsc --noEmit && biome check --write .",
"test": "bun test",
"test:coverage": "bun test --coverage --coverage-reporter=text --coverage-reporter=lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactnativecn/react-native-update-cli.git"
},
"keywords": ["react-native", "ios", "android", "harmony", "update"],
"author": "reactnativecn",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/reactnativecn/react-native-update-cli/issues"
},
"homepage": "https://github.com/reactnativecn/react-native-update-cli",
"dependencies": {
"@colors/colors": "^1.6.0",
"bplist-parser": "^0.3.2",
"bytebuffer": "^5.0.1",
"cgbi-to-png": "^1.0.7",
"chalk": "4",
"cli-arguments": "^0.2.1",
"commander": "^13",
"compare-versions": "^6.1.1",
"filesize-parser": "^1.5.1",
"form-data": "^4.0.2",
"fs-extra": "8",
"global-dirs": "^4.0.0",
"gradle-to-js": "^2.0.1",
"i18next": "^24.2.3",
"isomorphic-git": "^1.30.1",
"isomorphic-unzip": "^1.1.5",
"node-fetch": "^2.6.1",
"plist": "^3.1.0",
"progress": "^2.0.3",
"properties": "^1.2.1",
"protobufjs": "^7.5.4",
"read": "^4.1.0",
"registry-auth-token": "^5.1.0",
"semver": "^7.7.2",
"tcp-ping": "^0.1.1",
"tty-table": "4.2",
"yauzl": "^3.2.0",
"yazl": "3.3.1"
},
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@swc/cli": "0.7.7",
"@swc/core": "^1.11.24",
"@types/bun": "^1.3.8",
"@types/filesize-parser": "^1.5.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.18",
"@types/node-fetch": "^2.6.12",
"@types/progress": "^2.0.7",
"@types/semver": "^7.7.0",
"@types/tcp-ping": "^0.1.6",
"@types/yauzl": "^2.10.3",
"@types/yazl": "^2.4.6",
"typescript": "^5.8.3"
},
"trustedDependencies": ["@biomejs/biome", "@swc/core"]
}