-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.11 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.11 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
{
"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 && bun run typecheck:build",
"prepublishOnly": "bun run build && chmod +x lib/index.js",
"typecheck": "tsc --noEmit",
"typecheck:build": "tsc -p tsconfig.build.json",
"lint": "bun run typecheck && biome check .",
"lint:fix": "bun run typecheck && 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.5",
"fs-extra": "8",
"global-dirs": "^4.0.0",
"gradle-to-js": "^2.0.1",
"i18next": "^26.0.4",
"isomorphic-git": "^1.37.5",
"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.1",
"semver": "^7.7.4",
"tcp-ping": "^0.1.1",
"tty-table": "5.0",
"yauzl": "^3.3.0",
"yazl": "3.3.1"
},
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@swc/cli": "0.8.1",
"@swc/core": "^1.15.24",
"@types/bun": "^1.3.12",
"@types/filesize-parser": "^1.5.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.6.0",
"@types/node-fetch": "^2.6.13",
"@types/progress": "^2.0.7",
"@types/semver": "^7.7.1",
"@types/tcp-ping": "^0.1.6",
"@types/yauzl": "^2.10.3",
"@types/yazl": "^2.4.6",
"typescript": "^6.0.2"
},
"trustedDependencies": [
"@biomejs/biome",
"@swc/core"
]
}