mirror of
https://github.com/merlinhu1/codex-game-studio.git
synced 2026-08-25 07:54:34 +02:00
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "codex-game-studio",
|
|
"version": "0.5.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",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"commander": "^12.1.0",
|
|
"zod": "^3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.13.2",
|
|
"expect": "^30.4.1",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|