Files
EJClaw/runners/codex-runner/package.json
Eyejoker 879d16235f feat: feature-flag Codex SDK runner (#218)
Add optional @openai/codex-sdk exec-backed runner mode behind CODEX_RUNTIME=sdk, with CODEX_RUNTIME_SDK_ROLES canary limiting and app-server fallback for unsupported flows.
2026-06-03 15:31:06 +08:00

22 lines
489 B
JSON

{
"name": "ejclaw-codex-runner",
"version": "1.0.0",
"type": "module",
"description": "Codex app-server runner for EJClaw",
"packageManager": "bun@1.3.11",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "bun dist/index.js"
},
"dependencies": {
"@openai/codex": "0.136.0",
"@openai/codex-sdk": "0.136.0",
"ejclaw-runners-shared": "workspace:*"
},
"devDependencies": {
"@types/node": "^22.10.7",
"typescript": "^5.7.3"
}
}