@go-hare/claude-code 2.6.9 → 2.6.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. package/README.md +317 -317
  2. package/bin/claude.exe +11 -11
  3. package/cli-wrapper.cjs +103 -103
  4. package/install.cjs +187 -187
  5. package/package.json +240 -240
package/package.json CHANGED
@@ -1,240 +1,240 @@
1
- {
2
- "name": "@go-hare/claude-code",
3
- "version": "2.6.9",
4
- "description": "Reverse-engineered Anthropic Claude Code CLI — interactive AI coding assistant in the terminal",
5
- "type": "module",
6
- "author": "DeQiang",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/go-hare/claude-code-1.git"
10
- },
11
- "homepage": "https://github.com/go-hare/claude-code-1#readme",
12
- "bugs": {
13
- "url": "https://github.com/go-hare/claude-code-1/issues"
14
- },
15
- "keywords": [
16
- "claude",
17
- "anthropic",
18
- "cli",
19
- "ai",
20
- "coding-assistant",
21
- "terminal",
22
- "repl"
23
- ],
24
- "engines": {
25
- "node": ">=18.0.0"
26
- },
27
- "bin": {
28
- "claude": "bin/claude.exe"
29
- },
30
- "workspaces": [
31
- "packages/*",
32
- "packages/@ant/*",
33
- "packages/@anthropic-ai/*",
34
- "packages/@go-hare/*"
35
- ],
36
- "files": [
37
- "bin/claude.exe",
38
- "install.cjs",
39
- "cli-wrapper.cjs"
40
- ],
41
- "optionalDependencies": {
42
- "@go-hare/claude-code-darwin-arm64": "2.6.9",
43
- "@go-hare/claude-code-darwin-x64": "2.6.9",
44
- "@go-hare/claude-code-linux-x64": "2.6.9",
45
- "@go-hare/claude-code-linux-arm64": "2.6.9",
46
- "@go-hare/claude-code-linux-x64-musl": "2.6.9",
47
- "@go-hare/claude-code-linux-arm64-musl": "2.6.9",
48
- "@go-hare/claude-code-win32-x64": "2.6.9",
49
- "@go-hare/claude-code-win32-arm64": "2.6.9",
50
- "doubaoime-asr": "^0.1.0"
51
- },
52
- "scripts": {
53
- "build": "bun run build.ts",
54
- "build:vite": "vite build && bun run scripts/post-build.ts",
55
- "build:vite:only": "vite build",
56
- "build:bun": "bun run build.ts",
57
- "build:compile": "bun run scripts/publish.ts --build-only",
58
- "dev": "bun run scripts/dev.ts",
59
- "dev:inspect": "bun run scripts/dev-debug.ts",
60
- "prepublishOnly": "echo 'Use: bun run scripts/publish.ts'",
61
- "lint": "biome lint .",
62
- "lint:fix": "biome lint --fix .",
63
- "format": "biome format --write .",
64
- "check": "biome check .",
65
- "check:fix": "biome check --fix .",
66
- "prepare": "husky",
67
- "test": "bun test",
68
- "test:production": "bun run scripts/production-test.ts",
69
- "test:production:offline": "bun run scripts/production-test.ts --offline",
70
- "test:production:verbose": "bun run scripts/production-test.ts --verbose",
71
- "test:production:bun": "bun run scripts/production-test.ts --bun",
72
- "check:bundle": "bun run scripts/check-bundle-integrity.ts",
73
- "check:unused": "knip-bun",
74
- "health": "bun run scripts/health-check.ts",
75
- "postinstall": "node install.cjs",
76
- "docs:dev": "npx mintlify dev",
77
- "typecheck": "tsc --noEmit",
78
- "precheck": "bun run typecheck && bun run check:fix && bun test",
79
- "rcs": "bun run scripts/rcs.ts"
80
- },
81
- "dependencies": {
82
- "@agentclientprotocol/sdk": "^0.19.0",
83
- "@claude-code-best/mcp-chrome-bridge": "^3.0.1",
84
- "highlight.js": "^11.11.1",
85
- "ws": "^8.20.0"
86
- },
87
- "devDependencies": {
88
- "@alcalzone/ansi-tokenize": "^0.3.0",
89
- "@ant/claude-for-chrome-mcp": "workspace:*",
90
- "@ant/computer-use-input": "workspace:*",
91
- "@ant/computer-use-mcp": "workspace:*",
92
- "@ant/computer-use-swift": "workspace:*",
93
- "@ant/model-provider": "workspace:*",
94
- "@anthropic-ai/bedrock-sdk": "^0.29.0",
95
- "@anthropic-ai/claude-agent-sdk": "^0.2.114",
96
- "@anthropic-ai/foundry-sdk": "^0.2.3",
97
- "@anthropic-ai/mcpb": "^2.1.2",
98
- "@anthropic-ai/sandbox-runtime": "^0.0.44",
99
- "@anthropic-ai/sdk": "^0.81.0",
100
- "@anthropic-ai/vertex-sdk": "^0.16.0",
101
- "@anthropic/ink": "workspace:*",
102
- "@aws-sdk/client-bedrock": "^3.1037.0",
103
- "@aws-sdk/client-bedrock-runtime": "^3.1037.0",
104
- "@aws-sdk/client-sts": "^3.1037.0",
105
- "@aws-sdk/credential-provider-node": "^3.972.36",
106
- "@aws-sdk/credential-providers": "^3.1037.0",
107
- "@azure/identity": "^4.13.1",
108
- "@biomejs/biome": "^2.4.12",
109
- "@claude-code/agent-tools": "workspace:*",
110
- "@claude-code/builtin-tools": "workspace:*",
111
- "@claude-code/mcp-client": "workspace:*",
112
- "@claude-code/weixin": "workspace:*",
113
- "@commander-js/extra-typings": "^14.0.0",
114
- "@growthbook/growthbook": "^1.6.5",
115
- "@langfuse/otel": "^5.1.0",
116
- "@langfuse/tracing": "^5.1.0",
117
- "@modelcontextprotocol/sdk": "^1.29.0",
118
- "@opentelemetry/api": "^1.9.1",
119
- "@opentelemetry/api-logs": "^0.215.0",
120
- "@opentelemetry/core": "^2.7.0",
121
- "@opentelemetry/exporter-logs-otlp-grpc": "^0.215.0",
122
- "@opentelemetry/exporter-logs-otlp-http": "^0.215.0",
123
- "@opentelemetry/exporter-logs-otlp-proto": "^0.215.0",
124
- "@opentelemetry/exporter-metrics-otlp-grpc": "^0.215.0",
125
- "@opentelemetry/exporter-metrics-otlp-http": "^0.215.0",
126
- "@opentelemetry/exporter-metrics-otlp-proto": "^0.215.0",
127
- "@opentelemetry/exporter-prometheus": "^0.215.0",
128
- "@opentelemetry/exporter-trace-otlp-grpc": "^0.215.0",
129
- "@opentelemetry/exporter-trace-otlp-http": "^0.215.0",
130
- "@opentelemetry/exporter-trace-otlp-proto": "^0.215.0",
131
- "@opentelemetry/resources": "^2.7.0",
132
- "@opentelemetry/sdk-logs": "^0.215.0",
133
- "@opentelemetry/sdk-metrics": "^2.7.0",
134
- "@opentelemetry/sdk-trace-base": "^2.7.0",
135
- "@opentelemetry/semantic-conventions": "^1.40.0",
136
- "@sentry/node": "^10.49.0",
137
- "@smithy/core": "^3.23.15",
138
- "@smithy/node-http-handler": "^4.5.3",
139
- "@types/bun": "^1.3.12",
140
- "@types/cacache": "^20.0.1",
141
- "@types/he": "^1.2.3",
142
- "@types/lodash-es": "^4.17.12",
143
- "@types/node": "^25.6.0",
144
- "@types/picomatch": "^4.0.3",
145
- "@types/plist": "^3.0.5",
146
- "@types/proper-lockfile": "^4.1.4",
147
- "@types/qrcode": "^1.5.6",
148
- "@types/react": "^19.2.14",
149
- "@types/react-reconciler": "^0.33.0",
150
- "@types/semver": "^7.7.1",
151
- "@types/sharp": "^0.32.0",
152
- "@types/shell-quote": "^1.7.5",
153
- "@types/stack-utils": "^2.0.3",
154
- "@types/turndown": "^5.0.6",
155
- "@types/ws": "^8.18.1",
156
- "ajv": "^8.18.0",
157
- "asciichart": "^1.5.25",
158
- "audio-capture-napi": "workspace:*",
159
- "auto-bind": "^5.0.1",
160
- "axios": "^1.15.2",
161
- "bidi-js": "^1.0.3",
162
- "cacache": "^20.0.4",
163
- "chalk": "^5.6.2",
164
- "chokidar": "^5.0.0",
165
- "cli-boxes": "^4.0.1",
166
- "cli-highlight": "^2.1.11",
167
- "code-excerpt": "^4.0.0",
168
- "color-diff-napi": "workspace:*",
169
- "diff": "^8.0.4",
170
- "emoji-regex": "^10.6.0",
171
- "env-paths": "^4.0.0",
172
- "execa": "^9.6.1",
173
- "fflate": "^0.8.2",
174
- "figures": "^6.1.0",
175
- "fuse.js": "^7.3.0",
176
- "get-east-asian-width": "^1.5.0",
177
- "google-auth-library": "^10.6.2",
178
- "he": "^1.2.0",
179
- "https-proxy-agent": "^8.0.0",
180
- "husky": "^9.1.7",
181
- "ignore": "^7.0.5",
182
- "image-processor-napi": "workspace:*",
183
- "indent-string": "^5.0.0",
184
- "jsonc-parser": "^3.3.1",
185
- "knip": "^6.4.1",
186
- "lint-staged": "^16.4.0",
187
- "lodash-es": "^4.18.1",
188
- "lru-cache": "^11.3.5",
189
- "marked": "^17.0.6",
190
- "modifiers-napi": "workspace:*",
191
- "openai": "^6.34.0",
192
- "p-map": "^7.0.4",
193
- "picomatch": "^4.0.4",
194
- "plist": "^3.1.0",
195
- "proper-lockfile": "^4.1.2",
196
- "qrcode": "^1.5.4",
197
- "react": "^19.2.5",
198
- "react-compiler-runtime": "^1.0.0",
199
- "react-reconciler": "^0.33.0",
200
- "rollup": "^4.60.2",
201
- "semver": "^7.7.4",
202
- "sharp": "^0.34.5",
203
- "shell-quote": "^1.8.3",
204
- "signal-exit": "^4.1.0",
205
- "stack-utils": "^2.0.6",
206
- "strip-ansi": "^7.2.0",
207
- "supports-hyperlinks": "^4.4.0",
208
- "tree-kill": "^1.2.2",
209
- "turndown": "^7.2.4",
210
- "type-fest": "^5.6.0",
211
- "typescript": "^6.0.3",
212
- "undici": "^7.25.0",
213
- "url-handler-napi": "workspace:*",
214
- "usehooks-ts": "^3.1.1",
215
- "vite": "^8.0.8",
216
- "vscode-jsonrpc": "^8.2.1",
217
- "vscode-languageserver-protocol": "^3.17.5",
218
- "vscode-languageserver-types": "^3.17.5",
219
- "wrap-ansi": "^10.0.0",
220
- "xss": "^1.0.15",
221
- "yaml": "^2.8.3",
222
- "zod": "^4.3.6"
223
- },
224
- "overrides": {
225
- "@inquirer/prompts": "8.4.2",
226
- "@xmldom/xmldom": "0.8.13",
227
- "follow-redirects": "1.16.0",
228
- "hono": "4.12.15",
229
- "postcss": "8.5.10",
230
- "uuid": "14.0.0"
231
- },
232
- "lint-staged": {
233
- "*.{ts,tsx,js,mjs,jsx}": [
234
- "biome check --fix --no-errors-on-unmatched"
235
- ],
236
- "*.{json,jsonc}": [
237
- "biome format --write --no-errors-on-unmatched"
238
- ]
239
- }
240
- }
1
+ {
2
+ "name": "@go-hare/claude-code",
3
+ "version": "2.6.10",
4
+ "description": "Reverse-engineered Anthropic Claude Code CLI — interactive AI coding assistant in the terminal",
5
+ "type": "module",
6
+ "author": "DeQiang",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/go-hare/claude-code-1.git"
10
+ },
11
+ "homepage": "https://github.com/go-hare/claude-code-1#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/go-hare/claude-code-1/issues"
14
+ },
15
+ "keywords": [
16
+ "claude",
17
+ "anthropic",
18
+ "cli",
19
+ "ai",
20
+ "coding-assistant",
21
+ "terminal",
22
+ "repl"
23
+ ],
24
+ "engines": {
25
+ "node": ">=18.0.0"
26
+ },
27
+ "bin": {
28
+ "claude": "bin/claude.exe"
29
+ },
30
+ "workspaces": [
31
+ "packages/*",
32
+ "packages/@ant/*",
33
+ "packages/@anthropic-ai/*",
34
+ "packages/@go-hare/*"
35
+ ],
36
+ "files": [
37
+ "bin/claude.exe",
38
+ "install.cjs",
39
+ "cli-wrapper.cjs"
40
+ ],
41
+ "optionalDependencies": {
42
+ "@go-hare/claude-code-darwin-arm64": "2.6.9",
43
+ "@go-hare/claude-code-darwin-x64": "2.6.9",
44
+ "@go-hare/claude-code-linux-x64": "2.6.9",
45
+ "@go-hare/claude-code-linux-arm64": "2.6.9",
46
+ "@go-hare/claude-code-linux-x64-musl": "2.6.9",
47
+ "@go-hare/claude-code-linux-arm64-musl": "2.6.9",
48
+ "@go-hare/claude-code-win32-x64": "2.6.9",
49
+ "@go-hare/claude-code-win32-arm64": "2.6.9",
50
+ "doubaoime-asr": "^0.1.0"
51
+ },
52
+ "scripts": {
53
+ "build": "bun run build.ts",
54
+ "build:vite": "vite build && bun run scripts/post-build.ts",
55
+ "build:vite:only": "vite build",
56
+ "build:bun": "bun run build.ts",
57
+ "build:compile": "bun run scripts/publish.ts --build-only",
58
+ "dev": "bun run scripts/dev.ts",
59
+ "dev:inspect": "bun run scripts/dev-debug.ts",
60
+ "prepublishOnly": "echo 'Use: bun run scripts/publish.ts'",
61
+ "lint": "biome lint .",
62
+ "lint:fix": "biome lint --fix .",
63
+ "format": "biome format --write .",
64
+ "check": "biome check .",
65
+ "check:fix": "biome check --fix .",
66
+ "prepare": "husky",
67
+ "test": "bun test",
68
+ "test:production": "bun run scripts/production-test.ts",
69
+ "test:production:offline": "bun run scripts/production-test.ts --offline",
70
+ "test:production:verbose": "bun run scripts/production-test.ts --verbose",
71
+ "test:production:bun": "bun run scripts/production-test.ts --bun",
72
+ "check:bundle": "bun run scripts/check-bundle-integrity.ts",
73
+ "check:unused": "knip-bun",
74
+ "health": "bun run scripts/health-check.ts",
75
+ "postinstall": "node install.cjs",
76
+ "docs:dev": "npx mintlify dev",
77
+ "typecheck": "tsc --noEmit",
78
+ "precheck": "bun run typecheck && bun run check:fix && bun test",
79
+ "rcs": "bun run scripts/rcs.ts"
80
+ },
81
+ "dependencies": {
82
+ "@agentclientprotocol/sdk": "^0.19.0",
83
+ "@claude-code-best/mcp-chrome-bridge": "^3.0.1",
84
+ "highlight.js": "^11.11.1",
85
+ "ws": "^8.20.0"
86
+ },
87
+ "devDependencies": {
88
+ "@alcalzone/ansi-tokenize": "^0.3.0",
89
+ "@ant/claude-for-chrome-mcp": "workspace:*",
90
+ "@ant/computer-use-input": "workspace:*",
91
+ "@ant/computer-use-mcp": "workspace:*",
92
+ "@ant/computer-use-swift": "workspace:*",
93
+ "@ant/model-provider": "workspace:*",
94
+ "@anthropic-ai/bedrock-sdk": "^0.29.0",
95
+ "@anthropic-ai/claude-agent-sdk": "^0.2.114",
96
+ "@anthropic-ai/foundry-sdk": "^0.2.3",
97
+ "@anthropic-ai/mcpb": "^2.1.2",
98
+ "@anthropic-ai/sandbox-runtime": "^0.0.44",
99
+ "@anthropic-ai/sdk": "^0.81.0",
100
+ "@anthropic-ai/vertex-sdk": "^0.16.0",
101
+ "@anthropic/ink": "workspace:*",
102
+ "@aws-sdk/client-bedrock": "^3.1037.0",
103
+ "@aws-sdk/client-bedrock-runtime": "^3.1037.0",
104
+ "@aws-sdk/client-sts": "^3.1037.0",
105
+ "@aws-sdk/credential-provider-node": "^3.972.36",
106
+ "@aws-sdk/credential-providers": "^3.1037.0",
107
+ "@azure/identity": "^4.13.1",
108
+ "@biomejs/biome": "^2.4.12",
109
+ "@claude-code/agent-tools": "workspace:*",
110
+ "@claude-code/builtin-tools": "workspace:*",
111
+ "@claude-code/mcp-client": "workspace:*",
112
+ "@claude-code/weixin": "workspace:*",
113
+ "@commander-js/extra-typings": "^14.0.0",
114
+ "@growthbook/growthbook": "^1.6.5",
115
+ "@langfuse/otel": "^5.1.0",
116
+ "@langfuse/tracing": "^5.1.0",
117
+ "@modelcontextprotocol/sdk": "^1.29.0",
118
+ "@opentelemetry/api": "^1.9.1",
119
+ "@opentelemetry/api-logs": "^0.215.0",
120
+ "@opentelemetry/core": "^2.7.0",
121
+ "@opentelemetry/exporter-logs-otlp-grpc": "^0.215.0",
122
+ "@opentelemetry/exporter-logs-otlp-http": "^0.215.0",
123
+ "@opentelemetry/exporter-logs-otlp-proto": "^0.215.0",
124
+ "@opentelemetry/exporter-metrics-otlp-grpc": "^0.215.0",
125
+ "@opentelemetry/exporter-metrics-otlp-http": "^0.215.0",
126
+ "@opentelemetry/exporter-metrics-otlp-proto": "^0.215.0",
127
+ "@opentelemetry/exporter-prometheus": "^0.215.0",
128
+ "@opentelemetry/exporter-trace-otlp-grpc": "^0.215.0",
129
+ "@opentelemetry/exporter-trace-otlp-http": "^0.215.0",
130
+ "@opentelemetry/exporter-trace-otlp-proto": "^0.215.0",
131
+ "@opentelemetry/resources": "^2.7.0",
132
+ "@opentelemetry/sdk-logs": "^0.215.0",
133
+ "@opentelemetry/sdk-metrics": "^2.7.0",
134
+ "@opentelemetry/sdk-trace-base": "^2.7.0",
135
+ "@opentelemetry/semantic-conventions": "^1.40.0",
136
+ "@sentry/node": "^10.49.0",
137
+ "@smithy/core": "^3.23.15",
138
+ "@smithy/node-http-handler": "^4.5.3",
139
+ "@types/bun": "^1.3.12",
140
+ "@types/cacache": "^20.0.1",
141
+ "@types/he": "^1.2.3",
142
+ "@types/lodash-es": "^4.17.12",
143
+ "@types/node": "^25.6.0",
144
+ "@types/picomatch": "^4.0.3",
145
+ "@types/plist": "^3.0.5",
146
+ "@types/proper-lockfile": "^4.1.4",
147
+ "@types/qrcode": "^1.5.6",
148
+ "@types/react": "^19.2.14",
149
+ "@types/react-reconciler": "^0.33.0",
150
+ "@types/semver": "^7.7.1",
151
+ "@types/sharp": "^0.32.0",
152
+ "@types/shell-quote": "^1.7.5",
153
+ "@types/stack-utils": "^2.0.3",
154
+ "@types/turndown": "^5.0.6",
155
+ "@types/ws": "^8.18.1",
156
+ "ajv": "^8.18.0",
157
+ "asciichart": "^1.5.25",
158
+ "audio-capture-napi": "workspace:*",
159
+ "auto-bind": "^5.0.1",
160
+ "axios": "^1.15.2",
161
+ "bidi-js": "^1.0.3",
162
+ "cacache": "^20.0.4",
163
+ "chalk": "^5.6.2",
164
+ "chokidar": "^5.0.0",
165
+ "cli-boxes": "^4.0.1",
166
+ "cli-highlight": "^2.1.11",
167
+ "code-excerpt": "^4.0.0",
168
+ "color-diff-napi": "workspace:*",
169
+ "diff": "^8.0.4",
170
+ "emoji-regex": "^10.6.0",
171
+ "env-paths": "^4.0.0",
172
+ "execa": "^9.6.1",
173
+ "fflate": "^0.8.2",
174
+ "figures": "^6.1.0",
175
+ "fuse.js": "^7.3.0",
176
+ "get-east-asian-width": "^1.5.0",
177
+ "google-auth-library": "^10.6.2",
178
+ "he": "^1.2.0",
179
+ "https-proxy-agent": "^8.0.0",
180
+ "husky": "^9.1.7",
181
+ "ignore": "^7.0.5",
182
+ "image-processor-napi": "workspace:*",
183
+ "indent-string": "^5.0.0",
184
+ "jsonc-parser": "^3.3.1",
185
+ "knip": "^6.4.1",
186
+ "lint-staged": "^16.4.0",
187
+ "lodash-es": "^4.18.1",
188
+ "lru-cache": "^11.3.5",
189
+ "marked": "^17.0.6",
190
+ "modifiers-napi": "workspace:*",
191
+ "openai": "^6.34.0",
192
+ "p-map": "^7.0.4",
193
+ "picomatch": "^4.0.4",
194
+ "plist": "^3.1.0",
195
+ "proper-lockfile": "^4.1.2",
196
+ "qrcode": "^1.5.4",
197
+ "react": "^19.2.5",
198
+ "react-compiler-runtime": "^1.0.0",
199
+ "react-reconciler": "^0.33.0",
200
+ "rollup": "^4.60.2",
201
+ "semver": "^7.7.4",
202
+ "sharp": "^0.34.5",
203
+ "shell-quote": "^1.8.3",
204
+ "signal-exit": "^4.1.0",
205
+ "stack-utils": "^2.0.6",
206
+ "strip-ansi": "^7.2.0",
207
+ "supports-hyperlinks": "^4.4.0",
208
+ "tree-kill": "^1.2.2",
209
+ "turndown": "^7.2.4",
210
+ "type-fest": "^5.6.0",
211
+ "typescript": "^6.0.3",
212
+ "undici": "^7.25.0",
213
+ "url-handler-napi": "workspace:*",
214
+ "usehooks-ts": "^3.1.1",
215
+ "vite": "^8.0.8",
216
+ "vscode-jsonrpc": "^8.2.1",
217
+ "vscode-languageserver-protocol": "^3.17.5",
218
+ "vscode-languageserver-types": "^3.17.5",
219
+ "wrap-ansi": "^10.0.0",
220
+ "xss": "^1.0.15",
221
+ "yaml": "^2.8.3",
222
+ "zod": "^4.3.6"
223
+ },
224
+ "overrides": {
225
+ "@inquirer/prompts": "8.4.2",
226
+ "@xmldom/xmldom": "0.8.13",
227
+ "follow-redirects": "1.16.0",
228
+ "hono": "4.12.15",
229
+ "postcss": "8.5.10",
230
+ "uuid": "14.0.0"
231
+ },
232
+ "lint-staged": {
233
+ "*.{ts,tsx,js,mjs,jsx}": [
234
+ "biome check --fix --no-errors-on-unmatched"
235
+ ],
236
+ "*.{json,jsonc}": [
237
+ "biome format --write --no-errors-on-unmatched"
238
+ ]
239
+ }
240
+ }