-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.12 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.12 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
{
"devDependencies": {
"@types/node": "^24.0.13",
"tsx": "^4.20.3",
"vitepress": "^1.3.4"
},
"scripts": {
"build": "npm run build:all",
"build:all": "npm run api:build && npm run arena:build && npm run voxa:build && npm run arenapro:build",
"start": "node server.js",
"prod": "node server.js",
"arena:dev": "vitepress dev arena",
"arena:build": "vitepress build arena",
"voxa:dev": "vitepress dev voxa",
"voxa:build": "vitepress build voxa",
"api:dev": "vitepress dev api",
"api:build": "vitepress build api && tsx scripts/build-api-llms-txt.ts",
"arenapro:dev": "vitepress dev arenapro",
"arenapro:build": "vitepress build arenapro",
"mc-mod:dev": "vitepress dev mc-mod",
"mc-mod:build": "vitepress build mc-mod",
"unity-package:dev": "vitepress dev unity-package",
"unity-package:build": "vitepress build unity-package"
},
"dependencies": {
"axios": "^1.7.7",
"express": "4.21.2",
"glob": "^11.0.3",
"marked": "^15.0.0",
"pagefind": "^1.1.1",
"vitepress-plugin-group-icons": "^1.6.5",
"vitepress-plugin-pagefind": "^0.4.10"
}
}