-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.25 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.25 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "claude-code-learn",
"version": "0.0.1-learn",
"description": "Claude Code source code learning project - NOT for production use",
"type": "module",
"main": "src/main.tsx",
"workspaces": [
"packages/*",
"packages/@ant/*",
"packages/@anthropic-ai/*"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "bun build src/entrypoints/cli.tsx --outdir dist --target bun",
"dev": "bun run src/entrypoints/cli.tsx",
"lint": "eslint src/"
},
"dependencies": {
"@alcalzone/ansi-tokenize": "^0.3.0",
"@ant/claude-for-chrome-mcp": "workspace:*",
"@ant/computer-use-input": "workspace:*",
"@ant/computer-use-mcp": "workspace:*",
"@ant/computer-use-swift": "workspace:*",
"@anthropic-ai/sandbox-runtime": "workspace:*",
"@anthropic-ai/sdk": "^0.39.0",
"@aws-sdk/client-bedrock-runtime": "^3.0.0",
"@commander-js/extra-typings": "^12.1.0",
"@growthbook/growthbook": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.57.0",
"@opentelemetry/core": "^1.29.0",
"@opentelemetry/resources": "^1.29.0",
"@opentelemetry/sdk-logs": "^0.57.0",
"@opentelemetry/sdk-metrics": "^1.29.0",
"@opentelemetry/sdk-trace-base": "^1.29.0",
"ajv": "^8.17.0",
"asciichart": "^1.5.0",
"audio-capture-napi": "workspace:*",
"auto-bind": "^5.0.0",
"axios": "^1.7.0",
"bidi-js": "^1.0.0",
"chalk": "^5.3.0",
"chokidar": "^4.0.0",
"cli-boxes": "^3.0.0",
"code-excerpt": "^4.0.0",
"color-diff-napi": "workspace:*",
"diff": "^7.0.0",
"emoji-regex": "^10.4.0",
"env-paths": "^3.0.0",
"execa": "^9.5.0",
"figures": "^6.1.0",
"fuse.js": "^7.0.0",
"get-east-asian-width": "^1.3.0",
"google-auth-library": "^9.15.0",
"highlight.js": "^11.11.0",
"https-proxy-agent": "^7.0.0",
"ignore": "^7.0.0",
"image-processor-napi": "workspace:*",
"indent-string": "^5.0.0",
"jsonc-parser": "^3.3.1",
"lodash-es": "^4.17.21",
"lru-cache": "^11.0.0",
"marked": "^15.0.0",
"modifiers-napi": "workspace:*",
"p-map": "^7.0.0",
"picomatch": "^4.0.0",
"proper-lockfile": "^4.1.0",
"qrcode": "^1.5.0",
"react": "^19.0.0",
"react-reconciler": "^0.31.0",
"semver": "^7.7.4",
"shell-quote": "^1.8.0",
"signal-exit": "^4.1.0",
"stack-utils": "^2.0.0",
"string-width": "^8.2.0",
"strip-ansi": "^7.1.0",
"supports-hyperlinks": "^3.1.0",
"tree-kill": "^1.2.0",
"type-fest": "^4.33.0",
"undici": "^7.4.0",
"url-handler-napi": "workspace:*",
"usehooks-ts": "^3.1.0",
"vscode-languageserver-protocol": "^3.17.0",
"which": "^6.0.1",
"wrap-ansi": "^9.0.2",
"ws": "^8.18.0",
"xss": "^1.0.0",
"yaml": "^2.8.3",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/diff": "^6.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.0.0",
"@types/qrcode": "^1.5.0",
"@types/react": "^19.0.0",
"@types/semver": "^7.5.0",
"@types/ws": "^8.5.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20.0.0"
},
"private": true,
"notes": "This package.json is reconstructed for learning purposes. Original project uses Bun runtime."
}