@anthropic-ai/claude-code 2.1.113 → 2.1.116
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.
- package/install.cjs +5 -2
- package/package.json +9 -9
- package/sdk-tools.d.ts +4 -0
package/install.cjs
CHANGED
|
@@ -105,10 +105,13 @@ function placeBinary(src, dest) {
|
|
|
105
105
|
try {
|
|
106
106
|
copyFileSync(src, dest)
|
|
107
107
|
} catch (copyErr) {
|
|
108
|
-
if (stub)
|
|
108
|
+
if (stub) {
|
|
109
109
|
try {
|
|
110
110
|
writeFileSync(dest, stub, { mode: 0o755 })
|
|
111
|
-
} catch {
|
|
111
|
+
} catch {
|
|
112
|
+
// Do nothing
|
|
113
|
+
}
|
|
114
|
+
}
|
|
112
115
|
throw copyErr
|
|
113
116
|
}
|
|
114
117
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anthropic-ai/claude-code",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.116",
|
|
4
4
|
"bin": {
|
|
5
5
|
"claude": "bin/claude.exe"
|
|
6
6
|
},
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {},
|
|
23
23
|
"optionalDependencies": {
|
|
24
|
-
"@anthropic-ai/claude-code-darwin-arm64": "2.1.
|
|
25
|
-
"@anthropic-ai/claude-code-darwin-x64": "2.1.
|
|
26
|
-
"@anthropic-ai/claude-code-linux-x64": "2.1.
|
|
27
|
-
"@anthropic-ai/claude-code-linux-arm64": "2.1.
|
|
28
|
-
"@anthropic-ai/claude-code-linux-x64-musl": "2.1.
|
|
29
|
-
"@anthropic-ai/claude-code-linux-arm64-musl": "2.1.
|
|
30
|
-
"@anthropic-ai/claude-code-win32-x64": "2.1.
|
|
31
|
-
"@anthropic-ai/claude-code-win32-arm64": "2.1.
|
|
24
|
+
"@anthropic-ai/claude-code-darwin-arm64": "2.1.116",
|
|
25
|
+
"@anthropic-ai/claude-code-darwin-x64": "2.1.116",
|
|
26
|
+
"@anthropic-ai/claude-code-linux-x64": "2.1.116",
|
|
27
|
+
"@anthropic-ai/claude-code-linux-arm64": "2.1.116",
|
|
28
|
+
"@anthropic-ai/claude-code-linux-x64-musl": "2.1.116",
|
|
29
|
+
"@anthropic-ai/claude-code-linux-arm64-musl": "2.1.116",
|
|
30
|
+
"@anthropic-ai/claude-code-win32-x64": "2.1.116",
|
|
31
|
+
"@anthropic-ai/claude-code-win32-arm64": "2.1.116"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"bin/claude.exe",
|
package/sdk-tools.d.ts
CHANGED
|
@@ -2231,6 +2231,10 @@ export interface BashOutput {
|
|
|
2231
2231
|
* Model-facing note listing readFileState entries whose mtime bumped during this command (set when WRITE_COMMAND_MARKERS matches)
|
|
2232
2232
|
*/
|
|
2233
2233
|
staleReadFileStateHint?: string;
|
|
2234
|
+
/**
|
|
2235
|
+
* Model-facing system-reminder appended when a gh command reports a GitHub API rate-limit error
|
|
2236
|
+
*/
|
|
2237
|
+
ghRateLimitHint?: string;
|
|
2234
2238
|
}
|
|
2235
2239
|
export interface ExitPlanModeOutput {
|
|
2236
2240
|
/**
|