-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.22 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
{
"name": "publisher-cli",
"version": "2026.4.21-t114957",
"description": "Publisher CLI for app versions, channels, builds, and manifests",
"main": "dist/index.js",
"bin": {
"publisher": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"manifest.xsd",
"manifest.example.xml"
],
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"prepublishOnly": "npm run build",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"pkg": "npm run build && pkg . --compress GZip",
"pkg:all": "npm run build && pkg . --targets node20-macos-arm64,node20-macos-x64,node20-linux-x64,node20-win-x64 --out-path bin --compress GZip",
"pkg:macos-arm64": "npm run build && pkg . --targets node20-macos-arm64 --output bin/publisher-macos-arm64 --compress GZip",
"pkg:macos-x64": "npm run build && pkg . --targets node20-macos-x64 --output bin/publisher-macos-x64 --compress GZip",
"pkg:linux-x64": "npm run build && pkg . --targets node20-linux-x64 --output bin/publisher-linux-x64 --compress GZip",
"pkg:win-x64": "npm run build && pkg . --targets node20-win-x64 --output bin/publisher-win-x64.exe --compress GZip"
},
"pkg": {
"scripts": "dist/**/*.js",
"assets": [],
"outputPath": "bin"
},
"engines": {
"node": ">=20"
},
"keywords": [
"publisher",
"version",
"cli",
"deployment"
],
"author": "Publisher CLI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SpacerunApp/publisher-cli.git"
},
"homepage": "https://github.com/SpacerunApp/publisher-cli#readme",
"bugs": {
"url": "https://github.com/SpacerunApp/publisher-cli/issues"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.0",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"dotenv": "^16.4.0",
"fast-xml-parser": "^5.7.1",
"glob": "^11.0.0",
"jsonwebtoken": "^9.0.3",
"mime-types": "^2.1.35",
"ora": "^5.4.1",
"prompts": "^2.4.2",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/mime-types": "^2.1.4",
"@types/node": "^20.11.0",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.6",
"@yao-pkg/pkg": "^6.14.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}