Files
EJClaw/runners/codex-runner/package.json
ejclaw 3eee842164 fix: restore bundled agent CLI resolution
- Upgrade EJClaw bundled Codex CLI to 0.124.0 for gpt-5.5 access
- Resolve Claude Agent SDK native binary packages via package.json
- Prefer glibc Claude binary before musl on Linux and align platform binary names
- Add regression coverage for optional package resolution
2026-04-24 13:13:11 +09:00

21 lines
457 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": {
"ejclaw-runners-shared": "file:../shared",
"@openai/codex": "^0.124.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"typescript": "^5.7.3"
}
}