{
"name": "rpg",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "npm run dev --workspace @rpg/game",
"build": "npm run build --workspace @rpg/game",
"art": "node apps/game/tools/pixelart/gen.mjs",
"audio": "node apps/game/tools/audio/gen.mjs",
"maps": "vitest run apps/game/tools/maps/gen.test.ts",
"guard": "node apps/game/tools/guards/boundary.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p packages/engine && tsc --noEmit -p apps/game",
"check:fast": "npm run typecheck && npm run guard && npm test",
"agent": "node apps/game/tools/agent.mjs dev",
"agent:check": "node apps/game/tools/agent.mjs check",
"agent:snapshot": "node apps/game/tools/agent.mjs snapshot --new-game"
},
"prepare": "git config core.hooksPath .githooks",
"devDependencies": {
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}