Files
codex-game-studio/package.json
T

49 lines
1.3 KiB
JSON
Raw Normal View History

2026-05-27 22:43:29 +00:00
{
"name": "codex-game-studio",
2026-07-10 15:20:25 +00:00
"version": "0.5.0",
"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/",
"templates/",
"AGENTS.md",
".codex/agents/",
".codex/workflows/",
".agents/skills/"
2026-05-27 22:43:29 +00:00
],
"bin": {
"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",
"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
}
}