2026-05-27 22:43:29 +00:00
|
|
|
{
|
2026-06-28 16:08:22 +00:00
|
|
|
"name": "codex-game-studio",
|
2026-05-27 22:43:29 +00:00
|
|
|
"version": "0.1.0",
|
2026-05-28 15:11:30 +00:00
|
|
|
"description": "Codex-native CLI workflow layer for game projects.",
|
2026-05-27 22:43:29 +00:00
|
|
|
"author": "MerlinH",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"engines": {
|
2026-06-25 14:52:52 +00:00
|
|
|
"node": ">=24"
|
2026-05-27 22:43:29 +00:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist/",
|
|
|
|
|
"engine_configs/",
|
2026-06-17 18:47:15 +10:00
|
|
|
"engine_reference/",
|
2026-06-29 14:11:18 +00:00
|
|
|
"templates/",
|
|
|
|
|
"AGENTS.md",
|
|
|
|
|
".codex/agents/",
|
|
|
|
|
".codex/workflows/",
|
|
|
|
|
".agents/skills/"
|
2026-05-27 22:43:29 +00:00
|
|
|
],
|
|
|
|
|
"bin": {
|
2026-06-28 16:21:22 +00:00
|
|
|
"codex-game-studio": "./dist/cli.js"
|
2026-05-27 22:43:29 +00:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc -p tsconfig.build.json",
|
|
|
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
2026-06-29 12:47:44 +00:00
|
|
|
"test": "node --import tsx --test --test-concurrency=1",
|
2026-05-27 22:43:29 +00:00
|
|
|
"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",
|
2026-07-08 02:26:02 +10:00
|
|
|
"templates": "npm run build --silent && node dist/cli.js templates",
|
|
|
|
|
"ctx:studio": "tsx src/cli.ts context studio",
|
|
|
|
|
"ctx:role": "tsx src/cli.ts context role",
|
|
|
|
|
"ctx:workflow": "tsx src/cli.ts context workflow",
|
|
|
|
|
"ctx:task": "tsx src/cli.ts context task",
|
|
|
|
|
"ctx:changed": "tsx src/cli.ts context changed"
|
2026-05-27 22:43:29 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"commander": "^12.1.0",
|
|
|
|
|
"zod": "^3.25.76"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-06-25 14:52:52 +00:00
|
|
|
"@types/node": "^24.13.2",
|
2026-06-29 12:47:44 +00:00
|
|
|
"expect": "^30.4.1",
|
2026-05-27 22:43:29 +00:00
|
|
|
"tsx": "^4.20.6",
|
2026-06-29 12:47:44 +00:00
|
|
|
"typescript": "^5.9.3"
|
2026-05-27 22:43:29 +00:00
|
|
|
}
|
|
|
|
|
}
|