lody 0.1.12 → 0.1.13
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/dist/index.js +121 -121
- package/package.json +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lody",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Lody Agent CLI tool for managing remote command execution",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"@types/jest": "^29.5.14",
|
|
29
29
|
"@types/js-yaml": "^4.0.9",
|
|
30
30
|
"@types/node": "^24.0.3",
|
|
31
|
+
"@types/throttle-debounce": "^5.0.2",
|
|
31
32
|
"@types/uuid": "^9.0.8",
|
|
32
33
|
"@types/ws": "^8.18.1",
|
|
33
34
|
"chalk": "^5.3.0",
|
|
@@ -63,6 +64,9 @@
|
|
|
63
64
|
"README.md",
|
|
64
65
|
"LICENSE"
|
|
65
66
|
],
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"throttle-debounce": "^5.0.2"
|
|
69
|
+
},
|
|
66
70
|
"scripts": {
|
|
67
71
|
"dev": "tsx src/index.ts",
|
|
68
72
|
"build": "pnpm run clean && pnpm run typecheck && pnpm run build:bundle && pnpm run copy:wasm",
|