Files
codex-game-studio/package.json
T
07af64c147 feat: add flexible studio approval gates (#1)
- migrate Truthmark repository truth into the v2 workspace layout
- add OpenSpec change artifacts for the flexible studio depth refactor
- add studio policy primitives plus approval store and CLI management
- add validation, CLI, and policy tests for approvals and studio gates

Co-authored-by: MerlinH <merlinh221@gmail.com>
2026-06-14 01:10:16 +10:00

40 lines
999 B
JSON

{
"name": "open-gamestudio",
"version": "0.1.0",
"description": "Codex-native CLI workflow layer for game projects.",
"author": "MerlinH",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"files": [
"dist/",
"engine_configs/",
"templates/"
],
"bin": {
"opengamestudio": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"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": "^20.19.25",
"truthmark": "^2.1.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
}
}