forked from dwmkerr/claude-code-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.04 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.04 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@dwmkerr/claude-code-agent",
"version": "0.1.3",
"type": "module",
"description": "Run Claude Code as a containerized A2A agent",
"main": "dist/main.js",
"bin": {
"claude-code-agent": "./dist/main.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"start": "node dist/main.js",
"dev": "INIT_SESSION=./init-session.dev.sh tsx watch src/main.ts",
"dev:otel-unsafe": "INIT_SESSION=./init-session.dev.sh OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:6006 tsx watch src/main.ts -c claude-code-agent.otel-unsafe.yaml -- --dangerously-skip-permissions",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwmkerr/claude-code-agent.git"
},
"bugs": {
"url": "https://github.com/dwmkerr/claude-code-agent/issues"
},
"homepage": "https://github.com/dwmkerr/claude-code-agent#readme",
"keywords": [
"claude",
"a2a",
"agent",
"ai",
"kubernetes"
],
"author": "Dave Kerr",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@a2a-js/sdk": "^0.3.4",
"@anthropic-ai/sdk": "^0.32.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.57.0",
"@opentelemetry/resources": "^1.30.0",
"@opentelemetry/sdk-node": "^0.57.0",
"@opentelemetry/semantic-conventions": "^1.28.0",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"debug": "^4.4.3",
"dotenv": "^16.4.5",
"execa": "^9.6.0",
"express": "^5.1.0",
"uuid": "^9.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.19",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.48.0"
}
}