Files
2026-08-31 20:33:22 +08:00

36 lines
838 B
JSON

{
"name": "codex-with-chatgpt",
"version": "0.1.1",
"description": "ChatGPT thinks. Codex works. Use ChatGPT as the planning brain while keeping the Codex harness.",
"type": "module",
"license": "MIT",
"bin": {
"c2c": "./bin/c2c.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"packageManager": "pnpm@11.24.0",
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"commander": "^14.0.0",
"express": "^5.1.0",
"ignore": "^7.0.5",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^22.15.0",
"tsx": "^4.20.0",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
}
}