@linzumi/cli 0.0.19-beta → 0.0.22-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linzumi/cli",
3
- "version": "0.0.19-beta",
3
+ "version": "0.0.22-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": {
@@ -9,10 +9,12 @@
9
9
  "files": [
10
10
  "README.md",
11
11
  "bin",
12
- "src"
12
+ "dist"
13
13
  ],
14
14
  "scripts": {
15
+ "build": "rm -rf dist && bun build src/index.ts --target=node --format=esm --outfile=dist/index.js --external ws --external undici && mkdir -p dist/assets && cp src/assets/linzumi-logo.svg dist/assets/linzumi-logo.svg",
15
16
  "test": "bun test",
17
+ "prepack": "bun run build",
16
18
  "pack:dry-run": "npm pack --dry-run"
17
19
  },
18
20
  "keywords": [
@@ -25,9 +27,12 @@
25
27
  "publishConfig": {
26
28
  "access": "public"
27
29
  },
30
+ "dependencies": {
31
+ "undici": "^6.25.0",
32
+ "ws": "^8.18.0"
33
+ },
28
34
  "engines": {
29
- "node": ">=20",
30
- "bun": ">=1.2.0"
35
+ "node": ">=20"
31
36
  },
32
37
  "readmeFilename": "README.md"
33
38
  }