-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "claude-code-sdk-container",
"version": "1.0.0",
"description": "Claude Code SDK containerized API server with CLI interface",
"type": "module",
"main": "server.ts",
"scripts": {
"dev": "tsx server.ts",
"start": "node --loader tsx/esm server.ts",
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"docker:build": "docker build -t claude-code-$(basename \"$(pwd)\") .",
"docker:run": "docker run -d -p 8080:8080 --env-file .env --name claude-code-$(basename \"$(pwd)\") claude-code-$(basename \"$(pwd)\")",
"docker:test": "./test.sh"
},
"dependencies": {
"@anthropic-ai/claude-code": "^1.0.120",
"@hono/node-server": "^1.0.0",
"@hono/node-ws": "^1.0.0",
"@hono/oauth-providers": "^0.6.0",
"hono": "^4.0.0",
"jose": "^5.0.0",
"tsx": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^24.5.2",
"@types/supertest": "^6.0.3",
"@types/ws": "^8.18.1",
"eslint": "^9.35.0",
"supertest": "^7.1.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"ws": "^8.18.3"
}
}