Files
codex-game-studio/package.json
T

45 lines
1.1 KiB
JSON

{
"name": "codex-game-studio",
"version": "0.1.0",
"description": "Codex-native CLI workflow layer for game projects.",
"author": "MerlinH",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24"
},
"files": [
"dist/",
"engine_configs/",
"engine_reference/",
"templates/",
"AGENTS.md",
".codex/agents/",
".codex/workflows/",
".agents/skills/"
],
"bin": {
"codex-game-studio": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --import tsx --test --test-concurrency=1",
"validate": "npm run build --silent && node dist/cli.js validate",
"init": "npm run build --silent && node dist/cli.js init",
"manage": "npm run build --silent && node dist/cli.js status",
"templates": "npm run build --silent && node dist/cli.js templates"
},
"dependencies": {
"commander": "^12.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.13.2",
"expect": "^30.4.1",
"truthmark": "^2.2.6",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}