lody 0.1.17 → 0.1.19

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.
Binary file
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "lody",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "Lody Agent CLI tool for managing remote command execution",
5
+ "type": "module",
5
6
  "main": "dist/index.js",
6
7
  "bin": {
7
8
  "lody": "dist/index.js"
@@ -20,44 +21,46 @@
20
21
  },
21
22
  "devDependencies": {
22
23
  "@agentclientprotocol/sdk": "^0.5.1",
23
- "@modelcontextprotocol/sdk": "^1.17.0",
24
- "@types/dockerode": "^3.3.42",
25
- "@types/express": "^5.0.0",
24
+ "@modelcontextprotocol/sdk": "^1.22.0",
25
+ "@types/dockerode": "^3.3.47",
26
+ "@types/express": "^5.0.5",
26
27
  "@types/fs-extra": "^11.0.4",
27
- "@types/inquirer": "^9.0.7",
28
+ "@types/inquirer": "^9.0.9",
28
29
  "@types/jest": "^29.5.14",
29
30
  "@types/js-yaml": "^4.0.9",
30
- "@types/node": "^24.0.3",
31
+ "@types/node": "^24.10.1",
31
32
  "@types/throttle-debounce": "^5.0.2",
32
33
  "@types/uuid": "^9.0.8",
33
34
  "@types/ws": "^8.18.1",
34
- "chalk": "^5.3.0",
35
+ "chalk": "^5.6.2",
35
36
  "commander": "^12.1.0",
36
37
  "convex": "1.25.4",
37
- "dockerode": "^4.0.7",
38
+ "dockerode": "^4.0.9",
38
39
  "dotenv": "^16.6.1",
39
- "esbuild": "^0.24.0",
40
+ "esbuild": "^0.24.2",
40
41
  "eventemitter3": "^5.0.1",
41
42
  "express": "^4.21.2",
42
- "fs-extra": "^11.2.0",
43
43
  "inquirer": "^10.2.2",
44
44
  "jest": "^29.7.0",
45
- "js-yaml": "^4.1.0",
46
- "loro-crdt": "^1.9.0",
45
+ "js-yaml": "^4.1.1",
46
+ "loro-adaptors": "^0.4.2",
47
+ "loro-crdt": "^1.10.1",
47
48
  "loro-mirror": "1.1.1",
48
- "ora": "^8.1.1",
49
- "prettier": "^3.4.2",
50
- "rimraf": "^6.0.1",
51
- "ts-jest": "^29.2.5",
49
+ "loro-repo": "^0.5.3",
50
+ "loro-websocket": "^0.4.2",
51
+ "ora": "^8.2.0",
52
+ "prettier": "^3.6.2",
53
+ "rimraf": "^6.1.2",
54
+ "ts-jest": "^29.4.5",
52
55
  "ts-node": "^10.9.2",
53
- "tsx": "^4.20.5",
54
- "typescript": "^5.7.3",
56
+ "tsx": "^4.20.6",
57
+ "typescript": "^5.9.3",
55
58
  "uuid": "^13.0.0",
56
- "winston": "^3.11.0",
59
+ "winston": "^3.18.3",
57
60
  "winston-daily-rotate-file": "^5.0.0",
58
61
  "ws": "^8.18.3",
59
- "@lody/types": "0.0.1",
60
- "loro-websocket": "0.3.0"
62
+ "@lody/shared": "0.0.1",
63
+ "@lody/convex": "0.0.1"
61
64
  },
62
65
  "files": [
63
66
  "dist",
@@ -71,7 +74,7 @@
71
74
  "dev": "tsx src/index.ts",
72
75
  "build": "pnpm run clean && pnpm run typecheck && pnpm run build:bundle && pnpm run copy:wasm",
73
76
  "build:watch": "pnpm run build:bundle -- --watch",
74
- "build:bundle": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=cjs --outfile=dist/index.js --minify --legal-comments=none --external:cpu-features --external:*.node",
77
+ "build:bundle": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/index.js --minify --legal-comments=none --external:cpu-features --external:*.node",
75
78
  "copy:wasm": "node scripts/copy-loro-wasm.js",
76
79
  "clean": "rimraf dist",
77
80
  "format": "prettier --write src/**/*.ts",