-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 778 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
{
"name": "claude-code-mini",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx --env-file=.env src/cli.ts",
"agent": "tsx --env-file=.env agent.ts",
"proxy": "unset GITHUB_COPILOT_API_KEY; NODE_OPTIONS=\"--dns-result-order=ipv4first\" npx -y copilot-api@latest start --verbose",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@anthropic-ai/sdk": "^0.102.0",
"chalk": "^5.6.2",
"glob": "^13.0.6",
"openai": "^6.42.0"
},
"devDependencies": {
"@types/node": "^25.9.2",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"bin": { "mini-claude": "./dist/cli.js" }
}