forked from prassamin/claw-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "claude-code",
"version": "1.0.0",
"description": "Claude Code CLI",
"main": "dist/entrypoints/cli.js",
"type": "module",
"scripts": {
"build": "bun build ./src/entrypoints/cli.tsx --outdir ./dist --target node",
"start": "bun run src/entrypoints/cli.tsx",
"dev": "bun run --watch src/entrypoints/cli.tsx",
"lint": "eslint src/"
},
"dependencies": {
"@anthropic-ai/sandbox-runtime": "^0.0.44",
"@anthropic-ai/sdk": "^0.36.0",
"@commander-js/extra-typings": "^12.0.1",
"@growthbook/growthbook": "^1.6.5",
"@modelcontextprotocol/sdk": "^1.29.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/resources": "^2.6.1",
"@opentelemetry/sdk-logs": "^0.214.0",
"axios": "^1.14.0",
"bidi-js": "^1.0.3",
"chalk": "^5.3.0",
"chokidar": "^5.0.0",
"color-diff-napi": "^0.0.1",
"commander": "^12.0.0",
"diff": "^8.0.4",
"env-paths": "^4.0.0",
"execa": "^9.6.1",
"get-east-asian-width": "^1.5.0",
"https-proxy-agent": "^8.0.0",
"ink": "^4.4.1",
"jsonc-parser": "^3.3.1",
"lodash-es": "^4.17.21",
"lru-cache": "^11.2.7",
"marked": "^17.0.5",
"p-map": "^7.0.4",
"picomatch": "^4.0.4",
"react": "^19.2.4",
"semver": "^7.7.4",
"supports-hyperlinks": "^4.4.0",
"tree-kill": "^1.2.2",
"usehooks-ts": "^3.1.1",
"xss": "^1.0.15",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.0",
"eslint": "^9.0.0",
"typescript": "^5.4.0"
}
}