-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.83 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
{
"name": "@box3lab/arenapro-cli",
"version": "0.5.4",
"type": "module",
"bin": {
"apc": "./cli/dist/index.js"
},
"keywords": [
"vite",
"arena",
"dao3",
"box3lab",
"arenapro",
"cli"
],
"author": "神岛实验室",
"scripts": {
"dev": "npm-run-all -p dev:*",
"build": "npm-run-all build:*",
"tsc": "npm-run-all -p tsc:*",
"tsc:check": "npm-run-all tsc:check:*",
"eslint:fix": "eslint --fix",
"prettier:write": "prettier . --write",
"tsc:client": "tsc -p client/tsconfig.json",
"tsc:server": "tsc -p server/tsconfig.json",
"tsc:check:client": "tsc -noEmit -p client/tsconfig.json",
"tsc:check:server": "tsc -noEmit -p server/tsconfig.json",
"dev:server": "cross-env VITE_BUILD_TARGET=server vite build --mode development --watch",
"dev:client": "cross-env VITE_BUILD_TARGET=client vite build --mode development --watch",
"build:server": "cross-env VITE_BUILD_TARGET=server vite build --mode production",
"build:client": "cross-env VITE_BUILD_TARGET=client vite build --mode production",
"debug:server": "cross-env VITE_BUILD_TARGET=server vite build --mode debug",
"debug:client": "cross-env VITE_BUILD_TARGET=client vite build --mode debug",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^25.0.10",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^5.4.21",
"vite-plugin-arenapro-script": "^0.2.8",
"vite-plugin-checker": "^0.11.0",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"axios": "^1.13.3",
"cac": "^6.7.14",
"chalk": "^5.6.2",
"env-paths": "^3.0.0",
"form-data": "^4.0.5",
"node-rsa": "^1.1.1",
"i18next": "^25.8.0"
}
}