mirror of
https://github.com/merlinhu1/codex-game-studio.git
synced 2026-08-25 07:54:34 +02:00
* feat: add flexible studio depth foundations - add context manifests, engine references, and studio policy gates - refresh Truthmark 2.2.1 generated surfaces and lane docs - update OpenSpec tasks and validation coverage * docs: add Open Game Studio product truth - add product-capability truth doc for the Codex-native CLI - cross-link product and engineering truth in route YAML - update product truth index * chore: remove stale planning artifacts --------- Co-authored-by: MerlinH <merlinh221@gmail.com>
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
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/",
|
|
"engine_reference/",
|
|
"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.2.1",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^1.6.1"
|
|
}
|
|
}
|