-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.19 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
{
"name": "@xzwtlb/mini-claude-code",
"version": "0.1.7",
"description": "Claude Code core architecture reproduction. Supports DashScope (Kimi/Qwen/GLM/MiniMax) via Anthropic-compatible API.",
"type": "module",
"bin": {
"mini-claude-code": "dist/index.js"
},
"files": [
"dist",
".env.example",
"README.md"
],
"scripts": {
"start": "node dist/index.js",
"dev": "tsx src/index.tsx",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"claude-code",
"ai",
"agent",
"coding-agent",
"cli",
"anthropic",
"agentic"
],
"author": "Bestbbb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bestbbb/mini-claude-code.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"chalk": "^5.4.0",
"commander": "^13.0.0",
"dotenv": "^17.3.1",
"ink": "^5.1.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.24.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^18.3.28",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}