- Copy opencode provider files from upstream/providers - Add self-registration imports to host and container barrels - Install @opencode-ai/sdk@1.4.17 in agent-runner - Add opencode-ai@1.4.17 to container Dockerfile - Configure .env template for DeepSeek
24 lines
566 B
JSON
24 lines
566 B
JSON
{
|
|
"name": "nanoclaw-agent-runner",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Container-side agent runner for NanoClaw",
|
|
"scripts": {
|
|
"start": "bun src/index.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/claude-agent-sdk": "^0.2.128",
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"@opencode-ai/sdk": "1.4.17",
|
|
"cron-parser": "^5.0.0",
|
|
"zod": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.1.0",
|
|
"@types/node": "^22.10.7",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|