-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@agent-controller/runtime-claude",
"version": "0.7.0",
"description": "Claude Agent SDK runtime adapter for agent-controller — runs an ADL CompiledSpec via @anthropic-ai/claude-agent-sdk and emits the NDJSON wire-event stream.",
"keywords": [
"agent-controller",
"adl",
"claude",
"claude-code",
"agent",
"ai-agents",
"llm",
"anthropic",
"runtime-adapter"
],
"homepage": "https://github.com/CCDevelopForFun/agent-controller#readme",
"bugs": "https://github.com/CCDevelopForFun/agent-controller/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/CCDevelopForFun/agent-controller.git",
"directory": "runtime-claude"
},
"license": "MIT",
"author": "CCDevelopForFun",
"type": "module",
"main": "dist/index.js",
"files": ["dist", "README.md", "LICENSE"],
"publishConfig": { "access": "public" },
"engines": { "node": ">=22" },
"scripts": {
"build": "tsc -p .",
"test": "npm run build && vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.220"
},
"devDependencies": {
"@types/node": "latest",
"typescript": "latest",
"vitest": "latest"
}
}