lody 0.57.2 → 0.58.0

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": "lody",
3
- "version": "0.57.2",
3
+ "version": "0.58.0",
4
4
  "description": "Lody Agent CLI tool for managing remote command execution",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,17 +20,18 @@
20
20
  "node": ">=18.0.0"
21
21
  },
22
22
  "optionalDependencies": {
23
- "acp-extension-claude": "0.39.1",
23
+ "acp-extension-claude": "0.44.0",
24
24
  "acp-extension-codex": "0.15.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@agentclientprotocol/sdk": "^0.22.1",
27
+ "@agentclientprotocol/sdk": "^0.25.0",
28
28
  "@better-auth/api-key": "1.5.5",
29
29
  "@convex-dev/better-auth": "0.11.2",
30
30
  "@loro-dev/flock-wasm": "^0.3.4",
31
31
  "@loro-dev/streams-crdt": "0.11.1",
32
32
  "@modelcontextprotocol/sdk": "1.29.0",
33
33
  "@sentry/node": "^10.29.0",
34
+ "@types/better-sqlite3": "^7.6.13",
34
35
  "@types/cross-spawn": "^6.0.6",
35
36
  "@types/iconv-lite": "^0.0.1",
36
37
  "@types/node": "^24.10.1",
@@ -56,15 +57,13 @@
56
57
  "inquirer": "^10.2.2",
57
58
  "isbinaryfile": "^6.0.0",
58
59
  "jiti": "^2.6.1",
59
- "loro-crdt": "^1.12.3",
60
60
  "loro-mirror": "1.2.1",
61
- "loro-repo": "^0.16.10",
61
+ "loro-repo": "^0.17.0",
62
62
  "ora": "^8.2.0",
63
63
  "prettier": "^3.6.2",
64
64
  "proxy-from-env": "^1.1.0",
65
65
  "rimraf": "^6.1.2",
66
66
  "tar": "^7.5.7",
67
- "typescript": "^5.9.3",
68
67
  "uuid": "^13.0.0",
69
68
  "vite": "^6.0.0",
70
69
  "vite-plugin-top-level-await": "^1.6.0",
@@ -75,11 +74,13 @@
75
74
  "winston-transport": "^4.7.1",
76
75
  "ws": "^8.18.3",
77
76
  "zod": "^4.1.5",
77
+ "@lody/code-collab": "0.0.0",
78
78
  "@lody/cli-supervisor": "0.0.1",
79
+ "@lody/code-session": "0.0.0",
80
+ "@lody/convex": "0.0.1",
79
81
  "@lody/loro-streams-rpc": "0.0.1",
80
- "@lody/shared": "0.0.1",
81
- "loro-code": "0.0.1",
82
- "@lody/convex": "0.0.1"
82
+ "@lody/code-collab-testkit": "0.0.0",
83
+ "@lody/shared": "0.0.1"
83
84
  },
84
85
  "files": [
85
86
  "dist",
@@ -88,15 +89,19 @@
88
89
  "LICENSE"
89
90
  ],
90
91
  "dependencies": {
91
- "shell-env": "^4.0.3"
92
+ "better-sqlite3": "^11.10.0",
93
+ "loro-crdt": "1.13.1",
94
+ "shell-env": "^4.0.3",
95
+ "typescript": "^5.9.3"
92
96
  },
93
97
  "scripts": {
94
98
  "dev": "node dev.mjs",
95
99
  "dev:staging": "LODY_AUTH_URL=https://impressive-guineapig-165.convex.cloud LODY_AUTH_SITE_URL=https://impressive-guineapig-165.convex.site LODY_SERVER_URL=https://lody-server.zx-073.workers.dev SITE_URL=https://main.lody.pages.dev/ pnpm run dev",
96
100
  "dev:prod": "LODY_AUTH_URL=https://nautical-curlew-181.convex.cloud LODY_SERVER_URL=https://api.lody.ai pnpm run dev",
97
- "build": "pnpm run clean && pnpm run typecheck && pnpm run build:bundle && pnpm run copy:wasm",
101
+ "build": "pnpm run clean && pnpm run typecheck && pnpm run build:bundle && pnpm run check:published-bundle-imports && pnpm run copy:wasm",
98
102
  "build:watch": "pnpm run build:bundle -- --watch",
99
103
  "build:bundle": "vite build",
104
+ "check:published-bundle-imports": "node scripts/check-published-bundle-imports.js",
100
105
  "copy:wasm": "node scripts/copy-loro-wasm.js",
101
106
  "clean": "rimraf dist",
102
107
  "format": "prettier --write src/**/*.ts",