-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.17 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
{
"name": "acg",
"version": "0.1.0",
"private": true,
"description": "Aglarond Character Generator - a rebuild of ACG 3.10 (1998) for the browser",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"pack:extract": "PYTHONPATH=.cache/pylibs python3 tools/extract-mdb.py",
"pack:build": "node tools/build-pack.mjs docs/reference/acg-mdb-raw.json packs/rmss-acg-3.10.json",
"pack:validate": "node tools/validate-pack.mjs packs/rmss-acg-3.10.json",
"pack": "npm run pack:build && npm run pack:validate",
"test": "npm run test --workspaces --if-present",
"dev": "npm run dev -w @acg/web",
"build": "npm run build -w @acg/web",
"pack:combat": "node tools/build-combat-pack.mjs packs/combat.json",
"pack:example": "node tools/build-example-pack.mjs packs/example.json"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"happy-dom": "^20.11.1",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vitest": "^4.1.10"
}
}