aico-cli 2.0.35 → 2.0.37
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/README.md +3 -1
- package/bin/cli/bun.lock +20 -0
- package/bin/cli/cli.js +3295 -3194
- package/bin/cli/package.json +2 -2
- package/bin/cli/resvg.wasm +0 -0
- package/bin/cli/sdk-tools.d.ts +14 -25
- package/dist/chunks/simple-config.mjs +302 -69
- package/dist/cli.mjs +16 -15
- package/dist/index.d.mts +90 -41
- package/dist/index.d.ts +90 -41
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -93,4 +93,6 @@ For open source projects, say how it is licensed.
|
|
|
93
93
|
If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
|
|
94
94
|
|
|
95
95
|
215,119,87
|
|
96
|
-
118,193,255
|
|
96
|
+
118,193,255
|
|
97
|
+
|
|
98
|
+
Shift+Tab切换成plan mode模式
|
package/bin/cli/bun.lock
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lockfileVersion": 1,
|
|
3
|
+
"configVersion": 1,
|
|
4
|
+
"workspaces": {
|
|
5
|
+
"": {
|
|
6
|
+
"name": "@anthropic-ai/claude-code",
|
|
7
|
+
"optionalDependencies": {
|
|
8
|
+
"@img/sharp-darwin-arm64": "^0.33.5",
|
|
9
|
+
"@img/sharp-darwin-x64": "^0.33.5",
|
|
10
|
+
"@img/sharp-linux-arm": "^0.33.5",
|
|
11
|
+
"@img/sharp-linux-arm64": "^0.33.5",
|
|
12
|
+
"@img/sharp-linux-x64": "^0.33.5",
|
|
13
|
+
"@img/sharp-linuxmusl-arm64": "^0.33.5",
|
|
14
|
+
"@img/sharp-linuxmusl-x64": "^0.33.5",
|
|
15
|
+
"@img/sharp-win32-x64": "^0.33.5",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
"packages": {}
|
|
20
|
+
}
|