-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.09 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.09 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
{
"name": "gsm3-management-panel",
"version": "1.0.0",
"description": "GSM3游戏服务端管理面板",
"main": "dist/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm run dev",
"build": "npm run build:server && npm run build:client",
"build:server": "cd server && npm run build",
"build:client": "cd client && npm run build",
"package": "npm run build && node scripts/package.js",
"package:create": "node scripts/package.js",
"package:linux": "npm run build && node scripts/package.js --target=linux",
"package:windows": "npm run build && node scripts/package.js --target=windows",
"package:no-zip": "npm run build && node scripts/package.js --no-zip",
"package:linux:no-zip": "npm run build && node scripts/package.js --target=linux --no-zip",
"package:windows:no-zip": "npm run build && node scripts/package.js --target=windows --no-zip",
"start": "cd server && npm start",
"start:prod": "cd dist && node index.js",
"install:all": "npm install && cd server && npm install && cd ../client && npm install",
"clean": "rimraf dist && rimraf server/dist && rimraf client/dist",
"test": "cd server && npm test",
"lint": "cd client && npm run lint"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/fs-extra": "^11.0.4",
"@types/tar": "^7.0.87",
"archiver": "^7.0.1",
"concurrently": "^9.2.1",
"fs-extra": "^11.3.4",
"iconv-lite": "^0.7.2",
"rimraf": "^6.1.3",
"typescript": "^6.0.2"
},
"overrides": {
"esbuild": "0.25.0",
"glob": "^10.5.0",
"minimatch": ">=5.1.8"
},
"keywords": [
"game",
"server",
"management",
"panel",
"react",
"typescript",
"gsm3",
"gaming"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"homepage": "",
"private": true,
"dependencies": {
"tar": "^7.5.13"
}
}