@linzumi/cli 0.0.57-beta → 0.0.58-beta
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 +20 -1
- package/dist/index.js +49830 -18041
- package/package.json +5 -2
- package/scripts/build.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linzumi/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.58-beta",
|
|
4
4
|
"description": "Linzumi CLI — point a Codex agent at the real code on your laptop, with your team watching and steering from shared threads.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -31,9 +31,12 @@
|
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.141",
|
|
35
|
+
"@modelcontextprotocol/sdk": "^1.18.2",
|
|
34
36
|
"@inquirer/prompts": "^7.8.6",
|
|
35
37
|
"undici": "^6.25.0",
|
|
36
|
-
"ws": "^8.18.0"
|
|
38
|
+
"ws": "^8.18.0",
|
|
39
|
+
"zod": "^4.4.3"
|
|
37
40
|
},
|
|
38
41
|
"engines": {
|
|
39
42
|
"node": ">=20"
|
package/scripts/build.mjs
CHANGED
|
@@ -16,7 +16,7 @@ await build({
|
|
|
16
16
|
target: 'node20',
|
|
17
17
|
format: 'esm',
|
|
18
18
|
outfile: join(packageRoot, 'dist/index.js'),
|
|
19
|
-
external: ['ws', 'undici'],
|
|
19
|
+
external: ['ws', 'undici', '@anthropic-ai/claude-agent-sdk'],
|
|
20
20
|
banner: {
|
|
21
21
|
js: "import { createRequire } from 'node:module';\nconst require = createRequire(import.meta.url);",
|
|
22
22
|
},
|