-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 808 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 808 Bytes
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
{
"name": "claude-code-api",
"version": "1.0.0",
"description": "OpenAI-compatible API server powered by Claude Code Agent SDK",
"main": "src/index.ts",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [
"claude",
"openai",
"api",
"proxy",
"anthropic",
"aider",
"claude-code",
"llm"
],
"author": "gididaf",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gididaf/claude-code-api.git"
},
"type": "module",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.83",
"@hono/node-server": "^1.19.11",
"hono": "^4.12.9"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}