lody 0.34.0 → 0.35.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.
Files changed (2) hide show
  1. package/dist/index.cjs +186 -184
  2. package/package.json +16 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lody",
3
- "version": "0.34.0",
3
+ "version": "0.35.0",
4
4
  "description": "Lody Agent CLI tool for managing remote command execution",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -23,8 +23,12 @@
23
23
  "acp-extension-claude": "0.19.4",
24
24
  "acp-extension-codex": "0.9.6"
25
25
  },
26
+ "dependencies": {
27
+ "@agentclientprotocol/sdk": "^0.15.0",
28
+ "acp-extension-core": "0.0.5",
29
+ "zod": "^4.1.5"
30
+ },
26
31
  "devDependencies": {
27
- "@agentclientprotocol/sdk": "^0.14.1",
28
32
  "@convex-dev/better-auth": "0.10.10",
29
33
  "@sentry/esbuild-plugin": "^4.6.1",
30
34
  "@sentry/node": "^10.29.0",
@@ -40,7 +44,6 @@
40
44
  "@types/uuid": "^9.0.8",
41
45
  "@types/ws": "^8.18.1",
42
46
  "@vitest/coverage-v8": "^3.2.4",
43
- "acp-extension-core": "0.0.5",
44
47
  "better-auth": "1.5.0-beta.12",
45
48
  "chalk": "^5.6.2",
46
49
  "commander": "^12.1.0",
@@ -54,10 +57,11 @@
54
57
  "https-proxy-agent": "^7.0.6",
55
58
  "iconv-lite": "^0.6.3",
56
59
  "inquirer": "^10.2.2",
60
+ "jiti": "^2.6.1",
57
61
  "isbinaryfile": "^6.0.0",
58
62
  "js-yaml": "^4.1.1",
59
63
  "loro-adaptors": "^0.6.1",
60
- "loro-crdt": "^1.10.5",
64
+ "loro-crdt": "^1.10.6",
61
65
  "loro-mirror": "1.2.1",
62
66
  "loro-repo": "^0.12.0",
63
67
  "loro-websocket": "^0.6.2",
@@ -76,10 +80,9 @@
76
80
  "winston-daily-rotate-file": "^5.0.0",
77
81
  "winston-transport": "^4.7.1",
78
82
  "ws": "^8.18.3",
79
- "zod": "^4.1.5",
80
- "loro-code": "0.0.1",
81
83
  "@lody/convex": "0.0.1",
82
- "@lody/shared": "0.0.1"
84
+ "@lody/shared": "0.0.1",
85
+ "loro-code": "0.0.1"
83
86
  },
84
87
  "files": [
85
88
  "dist",
@@ -88,11 +91,11 @@
88
91
  "LICENSE"
89
92
  ],
90
93
  "scripts": {
91
- "dev": "bun src/index.ts",
94
+ "dev": "node dev.mjs",
92
95
  "dev:staging": "LODY_AUTH_URL=https://impressive-guineapig-165.convex.cloud LODY_SERVER_URL=https://lody-server.lz-9c5.workers.dev pnpm run dev",
93
96
  "dev:prod": "LODY_AUTH_URL=https://nautical-curlew-181.convex.cloud LODY_SERVER_URL=https://api.lody.ai pnpm run dev",
94
- "build": "bun run clean && bun run typecheck && bun run build:bundle && bun run copy:wasm",
95
- "build:watch": "bun run build:bundle -- --watch",
97
+ "build": "pnpm run clean && pnpm run typecheck && pnpm run build:bundle && pnpm run copy:wasm",
98
+ "build:watch": "pnpm run build:bundle -- --watch",
96
99
  "build:bundle": "node esbuild.config.cjs",
97
100
  "copy:wasm": "node scripts/copy-loro-wasm.js",
98
101
  "clean": "rimraf dist",
@@ -103,8 +106,8 @@
103
106
  "test:e2e": "LODY_E2E=1 vitest run",
104
107
  "test:watch": "vitest",
105
108
  "test:coverage": "vitest run --coverage",
106
- "serve:dev": "LODY_ENV=dev NODE_ENV=development npm run dev serve",
107
- "serve:staging": "LODY_ENV=staging NODE_ENV=production npm run dev serve",
108
- "serve:prod": "LODY_ENV=production NODE_ENV=production npm run dev serve"
109
+ "serve:dev": "LODY_ENV=dev NODE_ENV=development pnpm run dev serve",
110
+ "serve:staging": "LODY_ENV=staging NODE_ENV=production pnpm run dev serve",
111
+ "serve:prod": "LODY_ENV=production NODE_ENV=production pnpm run dev serve"
109
112
  }
110
113
  }