-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.94 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.94 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
109
110
{
"name": "ashishcode",
"version": "0.1.1",
"private": false,
"description": "Source-run Bun CLI for Claude Code workflows with multi-provider support.",
"type": "module",
"bin": {
"ashishcode": "scripts/ashishcode.mjs",
"claude-local": "scripts/claude-local.mjs"
},
"files": [
"README.md",
"scripts/ashishcode.mjs",
"scripts/claude-local.mjs",
"src",
"!src/**/*.test.ts",
"!src/**/*.test.tsx",
"package.json",
"bun.lock"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ashish200729/claude-code.git"
},
"homepage": "https://github.com/ashish200729/claude-code",
"bugs": {
"url": "https://github.com/ashish200729/claude-code/issues"
},
"engines": {
"bun": ">=1.3.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"cli": "bun src/entrypoints/cli.tsx",
"test:release": "bun test src/components/modelPickerHelpers.test.ts src/services/providerCatalog.test.ts",
"pack:dry-run": "npm pack --dry-run",
"collect-deps": "node scripts/collect-npm-deps.mjs",
"generate-sdk-core-types": "node scripts/emit-core-types.mjs",
"generate-sdk-control-types": "node scripts/emit-control-types.mjs"
},
"dependencies": {
"@alcalzone/ansi-tokenize": "^0.1.3",
"@anthropic-ai/claude-agent-sdk": "*",
"@anthropic-ai/mcpb": "*",
"@anthropic-ai/sandbox-runtime": "*",
"@anthropic-ai/sdk": "*",
"@aws-sdk/client-bedrock-runtime": "*",
"@commander-js/extra-typings": "*",
"@growthbook/growthbook": "*",
"@modelcontextprotocol/sdk": "*",
"@opentelemetry/api": "*",
"@opentelemetry/api-logs": "*",
"@opentelemetry/core": "*",
"@opentelemetry/resources": "*",
"@opentelemetry/sdk-logs": "*",
"@opentelemetry/sdk-metrics": "*",
"@opentelemetry/sdk-trace-base": "*",
"@opentelemetry/semantic-conventions": "*",
"ajv": "*",
"asciichart": "*",
"auto-bind": "*",
"axios": "*",
"bidi-js": "*",
"chalk": "*",
"chokidar": "*",
"cli-boxes": "*",
"code-excerpt": "*",
"diff": "*",
"emoji-regex": "*",
"env-paths": "*",
"execa": "*",
"figures": "*",
"fuse.js": "*",
"get-east-asian-width": "*",
"google-auth-library": "*",
"highlight.js": "*",
"https-proxy-agent": "*",
"ignore": "*",
"indent-string": "*",
"jsonc-parser": "*",
"lodash-es": "*",
"lru-cache": "*",
"marked": "*",
"p-map": "*",
"picomatch": "*",
"proper-lockfile": "*",
"qrcode": "*",
"react": "*",
"react-reconciler": "*",
"semver": "*",
"shell-quote": "*",
"signal-exit": "*",
"stack-utils": "*",
"strip-ansi": "*",
"supports-hyperlinks": "*",
"tree-kill": "*",
"type-fest": "*",
"undici": "*",
"usehooks-ts": "*",
"vscode-jsonrpc": "*",
"vscode-languageserver-protocol": "*",
"vscode-languageserver-types": "*",
"wrap-ansi": "*",
"ws": "*",
"xss": "*",
"zod": "*"
}
}