@go-hare/claude-code 2.6.12 → 2.6.14

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 (3) hide show
  1. package/cli-wrapper.cjs +103 -103
  2. package/install.cjs +187 -187
  3. package/package.json +9 -9
package/cli-wrapper.cjs CHANGED
@@ -1,103 +1,103 @@
1
- #!/usr/bin/env node
2
- // Fallback launcher for the claude wrapper package.
3
- //
4
- // Normally the postinstall script copies the native binary over bin/claude.exe,
5
- // so this file is never invoked. It exists for environments where postinstall
6
- // doesn't run (--ignore-scripts).
7
-
8
- const { spawnSync } = require('child_process')
9
- const { arch, constants } = require('os')
10
- const path = require('path')
11
-
12
- const PACKAGE_PREFIX = '@go-hare/claude-code'
13
- const BINARY_NAME = 'claude'
14
- const WRAPPER_NAME = require('./package.json').name
15
-
16
- const PLATFORMS = {
17
- 'darwin-arm64': { pkg: PACKAGE_PREFIX + '-darwin-arm64', bin: BINARY_NAME },
18
- 'darwin-x64': { pkg: PACKAGE_PREFIX + '-darwin-x64', bin: BINARY_NAME },
19
- 'linux-x64': { pkg: PACKAGE_PREFIX + '-linux-x64', bin: BINARY_NAME },
20
- 'linux-arm64': { pkg: PACKAGE_PREFIX + '-linux-arm64', bin: BINARY_NAME },
21
- 'linux-x64-musl': {
22
- pkg: PACKAGE_PREFIX + '-linux-x64-musl',
23
- bin: BINARY_NAME,
24
- },
25
- 'linux-arm64-musl': {
26
- pkg: PACKAGE_PREFIX + '-linux-arm64-musl',
27
- bin: BINARY_NAME,
28
- },
29
- 'win32-x64': {
30
- pkg: PACKAGE_PREFIX + '-win32-x64',
31
- bin: BINARY_NAME + '.exe',
32
- },
33
- 'win32-arm64': {
34
- pkg: PACKAGE_PREFIX + '-win32-arm64',
35
- bin: BINARY_NAME + '.exe',
36
- },
37
- }
38
-
39
- function detectMusl() {
40
- if (process.platform !== 'linux') return false
41
- const report =
42
- typeof process.report?.getReport === 'function'
43
- ? process.report.getReport()
44
- : null
45
- return report != null && report.header?.glibcVersionRuntime === undefined
46
- }
47
- function getPlatformKey() {
48
- const platform = process.platform
49
- let cpu = arch()
50
- if (platform === 'linux')
51
- return 'linux-' + cpu + (detectMusl() ? '-musl' : '')
52
- if (platform === 'darwin' && cpu === 'x64') {
53
- const r = spawnSync('sysctl', ['-n', 'sysctl.proc_translated'], {
54
- encoding: 'utf8',
55
- })
56
- if (r.stdout?.trim() === '1') cpu = 'arm64'
57
- }
58
- return platform + '-' + cpu
59
- }
60
-
61
- function getBinaryPath() {
62
- const platformKey = getPlatformKey()
63
- const info = PLATFORMS[platformKey]
64
- if (!info) {
65
- console.error(
66
- `[${WRAPPER_NAME}] Unsupported platform: ${process.platform} ${arch()}`,
67
- )
68
- process.exit(1)
69
- }
70
- try {
71
- const pkgDir = path.dirname(require.resolve(info.pkg + '/package.json'))
72
- return path.join(pkgDir, info.bin)
73
- } catch {
74
- console.error(
75
- `[${WRAPPER_NAME}] Could not find native binary package "${info.pkg}".`,
76
- )
77
- console.error(' Try reinstalling with: npm install')
78
- process.exit(1)
79
- }
80
- }
81
-
82
- function main() {
83
- const binaryPath = getBinaryPath()
84
- const result = spawnSync(binaryPath, process.argv.slice(2), {
85
- stdio: 'inherit',
86
- env: { ...process.env, CLAUDE_CODE_INSTALLED_VIA_NPM_WRAPPER: '1' },
87
- })
88
- if (result.error) {
89
- console.error(
90
- `[${WRAPPER_NAME}] Failed to execute native binary at ` + binaryPath,
91
- )
92
- console.error(' ' + result.error.message)
93
- process.exit(1)
94
- }
95
- if (result.signal) {
96
- const signum = constants.signals[result.signal] ?? 0
97
- process.exit(128 + signum)
98
- } else {
99
- process.exit(result.status ?? 1)
100
- }
101
- }
102
-
103
- main()
1
+ #!/usr/bin/env node
2
+ // Fallback launcher for the claude wrapper package.
3
+ //
4
+ // Normally the postinstall script copies the native binary over bin/claude.exe,
5
+ // so this file is never invoked. It exists for environments where postinstall
6
+ // doesn't run (--ignore-scripts).
7
+
8
+ const { spawnSync } = require('child_process')
9
+ const { arch, constants } = require('os')
10
+ const path = require('path')
11
+
12
+ const PACKAGE_PREFIX = '@go-hare/claude-code'
13
+ const BINARY_NAME = 'claude'
14
+ const WRAPPER_NAME = require('./package.json').name
15
+
16
+ const PLATFORMS = {
17
+ 'darwin-arm64': { pkg: PACKAGE_PREFIX + '-darwin-arm64', bin: BINARY_NAME },
18
+ 'darwin-x64': { pkg: PACKAGE_PREFIX + '-darwin-x64', bin: BINARY_NAME },
19
+ 'linux-x64': { pkg: PACKAGE_PREFIX + '-linux-x64', bin: BINARY_NAME },
20
+ 'linux-arm64': { pkg: PACKAGE_PREFIX + '-linux-arm64', bin: BINARY_NAME },
21
+ 'linux-x64-musl': {
22
+ pkg: PACKAGE_PREFIX + '-linux-x64-musl',
23
+ bin: BINARY_NAME,
24
+ },
25
+ 'linux-arm64-musl': {
26
+ pkg: PACKAGE_PREFIX + '-linux-arm64-musl',
27
+ bin: BINARY_NAME,
28
+ },
29
+ 'win32-x64': {
30
+ pkg: PACKAGE_PREFIX + '-win32-x64',
31
+ bin: BINARY_NAME + '.exe',
32
+ },
33
+ 'win32-arm64': {
34
+ pkg: PACKAGE_PREFIX + '-win32-arm64',
35
+ bin: BINARY_NAME + '.exe',
36
+ },
37
+ }
38
+
39
+ function detectMusl() {
40
+ if (process.platform !== 'linux') return false
41
+ const report =
42
+ typeof process.report?.getReport === 'function'
43
+ ? process.report.getReport()
44
+ : null
45
+ return report != null && report.header?.glibcVersionRuntime === undefined
46
+ }
47
+ function getPlatformKey() {
48
+ const platform = process.platform
49
+ let cpu = arch()
50
+ if (platform === 'linux')
51
+ return 'linux-' + cpu + (detectMusl() ? '-musl' : '')
52
+ if (platform === 'darwin' && cpu === 'x64') {
53
+ const r = spawnSync('sysctl', ['-n', 'sysctl.proc_translated'], {
54
+ encoding: 'utf8',
55
+ })
56
+ if (r.stdout?.trim() === '1') cpu = 'arm64'
57
+ }
58
+ return platform + '-' + cpu
59
+ }
60
+
61
+ function getBinaryPath() {
62
+ const platformKey = getPlatformKey()
63
+ const info = PLATFORMS[platformKey]
64
+ if (!info) {
65
+ console.error(
66
+ `[${WRAPPER_NAME}] Unsupported platform: ${process.platform} ${arch()}`,
67
+ )
68
+ process.exit(1)
69
+ }
70
+ try {
71
+ const pkgDir = path.dirname(require.resolve(info.pkg + '/package.json'))
72
+ return path.join(pkgDir, info.bin)
73
+ } catch {
74
+ console.error(
75
+ `[${WRAPPER_NAME}] Could not find native binary package "${info.pkg}".`,
76
+ )
77
+ console.error(' Try reinstalling with: npm install')
78
+ process.exit(1)
79
+ }
80
+ }
81
+
82
+ function main() {
83
+ const binaryPath = getBinaryPath()
84
+ const result = spawnSync(binaryPath, process.argv.slice(2), {
85
+ stdio: 'inherit',
86
+ env: { ...process.env, CLAUDE_CODE_INSTALLED_VIA_NPM_WRAPPER: '1' },
87
+ })
88
+ if (result.error) {
89
+ console.error(
90
+ `[${WRAPPER_NAME}] Failed to execute native binary at ` + binaryPath,
91
+ )
92
+ console.error(' ' + result.error.message)
93
+ process.exit(1)
94
+ }
95
+ if (result.signal) {
96
+ const signum = constants.signals[result.signal] ?? 0
97
+ process.exit(128 + signum)
98
+ } else {
99
+ process.exit(result.status ?? 1)
100
+ }
101
+ }
102
+
103
+ main()
package/install.cjs CHANGED
@@ -1,187 +1,187 @@
1
- #!/usr/bin/env node
2
- // Postinstall for the claude wrapper package.
3
- //
4
- // In development (monorepo with .git), delegates to the dev postinstall scripts.
5
- // In production (npm install from registry), copies the native binary from the
6
- // platform-specific optionalDependency into bin/claude.exe.
7
- //
8
- // Platform detection + PLATFORMS map is duplicated in cli-wrapper.cjs — keep in sync.
9
-
10
- const { spawnSync } = require('child_process')
11
- const {
12
- copyFileSync,
13
- existsSync,
14
- linkSync,
15
- unlinkSync,
16
- chmodSync,
17
- readFileSync,
18
- writeFileSync,
19
- statSync,
20
- } = require('fs')
21
- const { arch } = require('os')
22
- const path = require('path')
23
-
24
- // Dev environment detection: if .git exists at package root, we're in the monorepo
25
- if (existsSync(path.join(__dirname, '.git'))) {
26
- const r = spawnSync(
27
- 'node',
28
- [
29
- 'scripts/run-parallel.mjs',
30
- 'scripts/postinstall.cjs',
31
- 'scripts/setup-chrome-mcp.mjs',
32
- ],
33
- { cwd: __dirname, stdio: 'inherit' },
34
- )
35
- process.exit(r.status ?? 0)
36
- }
37
-
38
- const PACKAGE_PREFIX = '@go-hare/claude-code'
39
- const BINARY_NAME = 'claude'
40
- const WRAPPER_NAME = require('./package.json').name
41
-
42
- const PLATFORMS = {
43
- 'darwin-arm64': { pkg: PACKAGE_PREFIX + '-darwin-arm64', bin: BINARY_NAME },
44
- 'darwin-x64': { pkg: PACKAGE_PREFIX + '-darwin-x64', bin: BINARY_NAME },
45
- 'linux-x64': { pkg: PACKAGE_PREFIX + '-linux-x64', bin: BINARY_NAME },
46
- 'linux-arm64': { pkg: PACKAGE_PREFIX + '-linux-arm64', bin: BINARY_NAME },
47
- 'linux-x64-musl': {
48
- pkg: PACKAGE_PREFIX + '-linux-x64-musl',
49
- bin: BINARY_NAME,
50
- },
51
- 'linux-arm64-musl': {
52
- pkg: PACKAGE_PREFIX + '-linux-arm64-musl',
53
- bin: BINARY_NAME,
54
- },
55
- 'linux-arm64-android': {
56
- pkg: PACKAGE_PREFIX + '-linux-arm64-android',
57
- bin: BINARY_NAME,
58
- },
59
- 'linux-x64-android': {
60
- pkg: PACKAGE_PREFIX + '-linux-x64-android',
61
- bin: BINARY_NAME,
62
- },
63
- 'freebsd-x64': { pkg: PACKAGE_PREFIX + '-freebsd-x64', bin: BINARY_NAME },
64
- 'freebsd-arm64': {
65
- pkg: PACKAGE_PREFIX + '-freebsd-arm64',
66
- bin: BINARY_NAME,
67
- },
68
- 'win32-x64': {
69
- pkg: PACKAGE_PREFIX + '-win32-x64',
70
- bin: BINARY_NAME + '.exe',
71
- },
72
- 'win32-arm64': {
73
- pkg: PACKAGE_PREFIX + '-win32-arm64',
74
- bin: BINARY_NAME + '.exe',
75
- },
76
- }
77
-
78
- function detectMusl() {
79
- if (process.platform !== 'linux') return false
80
- const report =
81
- typeof process.report?.getReport === 'function'
82
- ? process.report.getReport()
83
- : null
84
- return report != null && report.header?.glibcVersionRuntime === undefined
85
- }
86
-
87
- function getPlatformKey() {
88
- const platform = process.platform
89
- let cpu = arch()
90
- if (platform === 'android') return 'linux-' + cpu + '-android'
91
- if (platform === 'linux')
92
- return 'linux-' + cpu + (detectMusl() ? '-musl' : '')
93
- if (platform === 'darwin' && cpu === 'x64') {
94
- const r = spawnSync('sysctl', ['-n', 'sysctl.proc_translated'], {
95
- encoding: 'utf8',
96
- })
97
- if (r.stdout?.trim() === '1') cpu = 'arm64'
98
- }
99
- return platform + '-' + cpu
100
- }
101
-
102
- function placeBinary(src, dest) {
103
- try {
104
- linkSync(src, dest)
105
- } catch (err) {
106
- if (err.code === 'EEXIST') {
107
- const stub = statSync(dest).size < 4096 ? readFileSync(dest) : null
108
- unlinkSync(dest)
109
- try {
110
- linkSync(src, dest)
111
- } catch {
112
- try {
113
- copyFileSync(src, dest)
114
- } catch (copyErr) {
115
- if (stub) {
116
- try {
117
- writeFileSync(dest, stub, { mode: 0o755 })
118
- } catch {}
119
- }
120
- throw copyErr
121
- }
122
- }
123
- } else if (err.code === 'EXDEV' || err.code === 'EPERM') {
124
- copyFileSync(src, dest)
125
- } else {
126
- throw err
127
- }
128
- }
129
- if (process.platform !== 'win32') chmodSync(dest, 0o755)
130
- }
131
- function main() {
132
- const platformKey = getPlatformKey()
133
- const info = PLATFORMS[platformKey]
134
-
135
- if (!info) {
136
- console.error(
137
- `[${WRAPPER_NAME} postinstall] Unsupported platform: ${process.platform} ${arch()}`,
138
- )
139
- console.error(` Supported: ${Object.keys(PLATFORMS).join(', ')}`)
140
- return
141
- }
142
-
143
- const optionalDeps = require('./package.json').optionalDependencies || {}
144
- if (!optionalDeps[info.pkg]) {
145
- console.error(
146
- `[${WRAPPER_NAME} postinstall] Native binaries for ${platformKey} are not available on this release channel.`,
147
- )
148
- console.error(
149
- ` Available: ${Object.keys(optionalDeps)
150
- .map(p => p.replace(PACKAGE_PREFIX + '-', ''))
151
- .join(', ')}`,
152
- )
153
- return
154
- }
155
-
156
- let src
157
- try {
158
- const pkgDir = path.dirname(require.resolve(info.pkg + '/package.json'))
159
- src = path.join(pkgDir, info.bin)
160
- } catch {
161
- console.error(
162
- `[${WRAPPER_NAME} postinstall] Native package "${info.pkg}" not found.`,
163
- )
164
- console.error(
165
- ' This happens with --omit=optional or when the download failed.',
166
- )
167
- console.error(
168
- ' The `claude` command will print instructions when invoked.',
169
- )
170
- console.error(' Fallback: node ' + path.join(__dirname, 'cli-wrapper.cjs'))
171
- return
172
- }
173
-
174
- const dest = path.join(__dirname, 'bin', 'claude.exe')
175
-
176
- try {
177
- placeBinary(src, dest)
178
- } catch (err) {
179
- console.error(
180
- `[${WRAPPER_NAME} postinstall] Failed to place binary: ${err.message}`,
181
- )
182
- console.error(' Fallback: node ' + path.join(__dirname, 'cli-wrapper.cjs'))
183
- process.exitCode = 1
184
- }
185
- }
186
-
187
- main()
1
+ #!/usr/bin/env node
2
+ // Postinstall for the claude wrapper package.
3
+ //
4
+ // In development (monorepo with .git), delegates to the dev postinstall scripts.
5
+ // In production (npm install from registry), copies the native binary from the
6
+ // platform-specific optionalDependency into bin/claude.exe.
7
+ //
8
+ // Platform detection + PLATFORMS map is duplicated in cli-wrapper.cjs — keep in sync.
9
+
10
+ const { spawnSync } = require('child_process')
11
+ const {
12
+ copyFileSync,
13
+ existsSync,
14
+ linkSync,
15
+ unlinkSync,
16
+ chmodSync,
17
+ readFileSync,
18
+ writeFileSync,
19
+ statSync,
20
+ } = require('fs')
21
+ const { arch } = require('os')
22
+ const path = require('path')
23
+
24
+ // Dev environment detection: if .git exists at package root, we're in the monorepo
25
+ if (existsSync(path.join(__dirname, '.git'))) {
26
+ const r = spawnSync(
27
+ 'node',
28
+ [
29
+ 'scripts/run-parallel.mjs',
30
+ 'scripts/postinstall.cjs',
31
+ 'scripts/setup-chrome-mcp.mjs',
32
+ ],
33
+ { cwd: __dirname, stdio: 'inherit' },
34
+ )
35
+ process.exit(r.status ?? 0)
36
+ }
37
+
38
+ const PACKAGE_PREFIX = '@go-hare/claude-code'
39
+ const BINARY_NAME = 'claude'
40
+ const WRAPPER_NAME = require('./package.json').name
41
+
42
+ const PLATFORMS = {
43
+ 'darwin-arm64': { pkg: PACKAGE_PREFIX + '-darwin-arm64', bin: BINARY_NAME },
44
+ 'darwin-x64': { pkg: PACKAGE_PREFIX + '-darwin-x64', bin: BINARY_NAME },
45
+ 'linux-x64': { pkg: PACKAGE_PREFIX + '-linux-x64', bin: BINARY_NAME },
46
+ 'linux-arm64': { pkg: PACKAGE_PREFIX + '-linux-arm64', bin: BINARY_NAME },
47
+ 'linux-x64-musl': {
48
+ pkg: PACKAGE_PREFIX + '-linux-x64-musl',
49
+ bin: BINARY_NAME,
50
+ },
51
+ 'linux-arm64-musl': {
52
+ pkg: PACKAGE_PREFIX + '-linux-arm64-musl',
53
+ bin: BINARY_NAME,
54
+ },
55
+ 'linux-arm64-android': {
56
+ pkg: PACKAGE_PREFIX + '-linux-arm64-android',
57
+ bin: BINARY_NAME,
58
+ },
59
+ 'linux-x64-android': {
60
+ pkg: PACKAGE_PREFIX + '-linux-x64-android',
61
+ bin: BINARY_NAME,
62
+ },
63
+ 'freebsd-x64': { pkg: PACKAGE_PREFIX + '-freebsd-x64', bin: BINARY_NAME },
64
+ 'freebsd-arm64': {
65
+ pkg: PACKAGE_PREFIX + '-freebsd-arm64',
66
+ bin: BINARY_NAME,
67
+ },
68
+ 'win32-x64': {
69
+ pkg: PACKAGE_PREFIX + '-win32-x64',
70
+ bin: BINARY_NAME + '.exe',
71
+ },
72
+ 'win32-arm64': {
73
+ pkg: PACKAGE_PREFIX + '-win32-arm64',
74
+ bin: BINARY_NAME + '.exe',
75
+ },
76
+ }
77
+
78
+ function detectMusl() {
79
+ if (process.platform !== 'linux') return false
80
+ const report =
81
+ typeof process.report?.getReport === 'function'
82
+ ? process.report.getReport()
83
+ : null
84
+ return report != null && report.header?.glibcVersionRuntime === undefined
85
+ }
86
+
87
+ function getPlatformKey() {
88
+ const platform = process.platform
89
+ let cpu = arch()
90
+ if (platform === 'android') return 'linux-' + cpu + '-android'
91
+ if (platform === 'linux')
92
+ return 'linux-' + cpu + (detectMusl() ? '-musl' : '')
93
+ if (platform === 'darwin' && cpu === 'x64') {
94
+ const r = spawnSync('sysctl', ['-n', 'sysctl.proc_translated'], {
95
+ encoding: 'utf8',
96
+ })
97
+ if (r.stdout?.trim() === '1') cpu = 'arm64'
98
+ }
99
+ return platform + '-' + cpu
100
+ }
101
+
102
+ function placeBinary(src, dest) {
103
+ try {
104
+ linkSync(src, dest)
105
+ } catch (err) {
106
+ if (err.code === 'EEXIST') {
107
+ const stub = statSync(dest).size < 4096 ? readFileSync(dest) : null
108
+ unlinkSync(dest)
109
+ try {
110
+ linkSync(src, dest)
111
+ } catch {
112
+ try {
113
+ copyFileSync(src, dest)
114
+ } catch (copyErr) {
115
+ if (stub) {
116
+ try {
117
+ writeFileSync(dest, stub, { mode: 0o755 })
118
+ } catch {}
119
+ }
120
+ throw copyErr
121
+ }
122
+ }
123
+ } else if (err.code === 'EXDEV' || err.code === 'EPERM') {
124
+ copyFileSync(src, dest)
125
+ } else {
126
+ throw err
127
+ }
128
+ }
129
+ if (process.platform !== 'win32') chmodSync(dest, 0o755)
130
+ }
131
+ function main() {
132
+ const platformKey = getPlatformKey()
133
+ const info = PLATFORMS[platformKey]
134
+
135
+ if (!info) {
136
+ console.error(
137
+ `[${WRAPPER_NAME} postinstall] Unsupported platform: ${process.platform} ${arch()}`,
138
+ )
139
+ console.error(` Supported: ${Object.keys(PLATFORMS).join(', ')}`)
140
+ return
141
+ }
142
+
143
+ const optionalDeps = require('./package.json').optionalDependencies || {}
144
+ if (!optionalDeps[info.pkg]) {
145
+ console.error(
146
+ `[${WRAPPER_NAME} postinstall] Native binaries for ${platformKey} are not available on this release channel.`,
147
+ )
148
+ console.error(
149
+ ` Available: ${Object.keys(optionalDeps)
150
+ .map(p => p.replace(PACKAGE_PREFIX + '-', ''))
151
+ .join(', ')}`,
152
+ )
153
+ return
154
+ }
155
+
156
+ let src
157
+ try {
158
+ const pkgDir = path.dirname(require.resolve(info.pkg + '/package.json'))
159
+ src = path.join(pkgDir, info.bin)
160
+ } catch {
161
+ console.error(
162
+ `[${WRAPPER_NAME} postinstall] Native package "${info.pkg}" not found.`,
163
+ )
164
+ console.error(
165
+ ' This happens with --omit=optional or when the download failed.',
166
+ )
167
+ console.error(
168
+ ' The `claude` command will print instructions when invoked.',
169
+ )
170
+ console.error(' Fallback: node ' + path.join(__dirname, 'cli-wrapper.cjs'))
171
+ return
172
+ }
173
+
174
+ const dest = path.join(__dirname, 'bin', 'claude.exe')
175
+
176
+ try {
177
+ placeBinary(src, dest)
178
+ } catch (err) {
179
+ console.error(
180
+ `[${WRAPPER_NAME} postinstall] Failed to place binary: ${err.message}`,
181
+ )
182
+ console.error(' Fallback: node ' + path.join(__dirname, 'cli-wrapper.cjs'))
183
+ process.exitCode = 1
184
+ }
185
+ }
186
+
187
+ main()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@go-hare/claude-code",
3
- "version": "2.6.12",
3
+ "version": "2.6.14",
4
4
  "description": "Reverse-engineered Anthropic Claude Code CLI — interactive AI coding assistant in the terminal",
5
5
  "type": "module",
6
6
  "author": "DeQiang",
@@ -39,14 +39,14 @@
39
39
  "cli-wrapper.cjs"
40
40
  ],
41
41
  "optionalDependencies": {
42
- "@go-hare/claude-code-darwin-arm64": "2.6.12",
43
- "@go-hare/claude-code-darwin-x64": "2.6.12",
44
- "@go-hare/claude-code-linux-x64": "2.6.12",
45
- "@go-hare/claude-code-linux-arm64": "2.6.12",
46
- "@go-hare/claude-code-linux-x64-musl": "2.6.12",
47
- "@go-hare/claude-code-linux-arm64-musl": "2.6.12",
48
- "@go-hare/claude-code-win32-x64": "2.6.12",
49
- "@go-hare/claude-code-win32-arm64": "2.6.12",
42
+ "@go-hare/claude-code-darwin-arm64": ">=2.6.12",
43
+ "@go-hare/claude-code-darwin-x64": ">=2.6.12",
44
+ "@go-hare/claude-code-linux-x64": ">=2.6.12",
45
+ "@go-hare/claude-code-linux-arm64": ">=2.6.12",
46
+ "@go-hare/claude-code-linux-x64-musl": ">=2.6.12",
47
+ "@go-hare/claude-code-linux-arm64-musl": ">=2.6.12",
48
+ "@go-hare/claude-code-win32-x64": ">=2.6.12",
49
+ "@go-hare/claude-code-win32-arm64": ">=2.6.12",
50
50
  "doubaoime-asr": "^0.1.0"
51
51
  },
52
52
  "scripts": {