Files
openclaw/extensions/codex/package.json
Peter Steinberger 85f3e9e988 refactor: extract shared llm runtime
Move provider model registries, stream wrappers, OAuth helpers, and LLM utilities into src/llm with plugin-sdk barrels instead of depending on the old embedded runtime layout.
2026-05-27 10:40:15 +01:00

41 lines
870 B
JSON

{
"name": "@openclaw/codex",
"version": "2026.5.26",
"description": "OpenClaw Codex harness and model provider plugin",
"repository": {
"type": "git",
"url": "https://github.com/openclaw/openclaw"
},
"type": "module",
"dependencies": {
"@openai/codex": "0.134.0",
"typebox": "1.1.38",
"ws": "8.21.0",
"zod": "4.4.3"
},
"devDependencies": {
"@openclaw/plugin-sdk": "workspace:*"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"install": {
"npmSpec": "@openclaw/codex",
"defaultChoice": "npm",
"minHostVersion": ">=2026.5.1-beta.1"
},
"compat": {
"pluginApi": ">=2026.5.26"
},
"build": {
"openclawVersion": "2026.5.26"
},
"release": {
"publishToClawHub": true,
"publishToNpm": true,
"bundleRuntimeDependencies": false
}
}
}