mirror of
https://github.com/qwibitai/nanoclaw.git
synced 2026-06-04 10:14:47 +08:00
81d99e1dc9
claude-code CLI 2.1.128 -> 2.1.154 (Dockerfile build-arg). agent-runner SDK 0.2.128 -> 0.3.154: the 0.3 major moved @anthropic-ai/sdk and @modelcontextprotocol/sdk from regular deps to peer deps, so add @anthropic-ai/sdk ^0.100.0 as a direct dep and raise @modelcontextprotocol/sdk to ^1.29.0. Regenerate bun.lock. Typecheck + agent-runner tests pass. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
24 lines
569 B
JSON
24 lines
569 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.3.154",
|
|
"@anthropic-ai/sdk": "^0.100.0",
|
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
"cron-parser": "^5.0.0",
|
|
"zod": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.1.0",
|
|
"@types/node": "^22.10.7",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|