-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
78 lines (78 loc) · 2.26 KB
/
package.json
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
{
"name": "hb-store-cdn-cli-server",
"version": "1.4.1",
"description": "HB-Store CDN Server CLI Edition",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && npm run dist && pkg .",
"build:all": "npm run clean && npm run dist && pkg . -t linux,macos,win",
"build:win": "npm run clean && npm run dist && pkg . -t node14-win-x64",
"build:mac": "npm run clean && npm run dist && pkg . -t node14-macos-x64",
"build:linux": "npm run clean && npm run dist && pkg . -t node14-linux-x64",
"build:linux-arm": "npm run clean && npm run dist && pkg . -t node14-linux-arm64",
"dist:es5": "babel ./src --out-dir build",
"dist": "tsc --rootDir src --target ES2020 --module commonjs --outDir build",
"dev": "npm run clean && npm run dist -- --watch",
"clean": "rimraf build && rimraf release"
},
"author": "Gkiokan Sali <[email protected]>",
"bin": "build/app.js",
"pkg": {
"scripts": [
"build/**/*.js"
],
"assets": [
"assets/**/*",
"node_modules/**/*"
],
"targets": [
"node14-macos-x64"
],
"outputPath": "release",
"options": [
"experimental-modules"
]
},
"dependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.9",
"@njzy/ps4-pkg-info": "^0.1.0",
"@types/inquirer": "^8.2.1",
"axios": "^0.27.2",
"better-sqlite3": "^7.5.1",
"clear": "^0.1.0",
"cli-color": "^2.0.2",
"cli-table": "^0.3.11",
"download": "^8.0.0",
"express": "^4.18.1",
"extract-zip": "^2.0.1",
"fast-glob": "^3.2.11",
"figlet": "^1.5.2",
"ini": "^3.0.0",
"inquirer": "^8.2.4",
"inquirer-file-tree-selection-prompt": "^1.0.19",
"md5-file": "^5.0.0",
"normalize-path": "^3.0.0",
"os": "^0.1.2",
"python-struct": "^1.1.3",
"rimraf": "^3.0.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.17.10",
"@types/node": "^17.0.31",
"@types/python-struct": "^1.0.0",
"typescript": "^4.6.4"
},
"plugins": [
"@babel/plugin-transform-runtime"
]
}