@lobehub/cli 0.0.28 → 0.0.29
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 +2361 -862
- package/man/man1/lh.1 +1 -1
- package/package.json +20 -19
package/man/man1/lh.1
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.\" Code generated by `npm run man:generate`; DO NOT EDIT.
|
|
2
2
|
.\" Manual command details come from the Commander command tree.
|
|
3
|
-
.TH LH 1 "" "@lobehub/cli 0.0.
|
|
3
|
+
.TH LH 1 "" "@lobehub/cli 0.0.29" "User Commands"
|
|
4
4
|
.SH NAME
|
|
5
5
|
lh \- LobeHub CLI \- manage and connect to LobeHub services
|
|
6
6
|
.SH SYNOPSIS
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.29",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"lh": "./dist/index.js",
|
|
@@ -16,7 +16,24 @@
|
|
|
16
16
|
"dist",
|
|
17
17
|
"man"
|
|
18
18
|
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsdown",
|
|
21
|
+
"cli:link": "bun link",
|
|
22
|
+
"cli:unlink": "bun unlink",
|
|
23
|
+
"dev": "LOBEHUB_CLI_HOME=.lobehub-dev bun src/index.ts",
|
|
24
|
+
"man:generate": "bun src/man/generate.ts",
|
|
25
|
+
"prepublishOnly": "npm run build && npm run man:generate",
|
|
26
|
+
"test": "bunx vitest run --config vitest.config.mts --silent='passed-only'",
|
|
27
|
+
"test:coverage": "bunx vitest run --config vitest.config.mts --coverage",
|
|
28
|
+
"type-check": "tsc --noEmit"
|
|
29
|
+
},
|
|
19
30
|
"devDependencies": {
|
|
31
|
+
"@lobechat/agent-gateway-client": "workspace:*",
|
|
32
|
+
"@lobechat/device-gateway-client": "workspace:*",
|
|
33
|
+
"@lobechat/device-identity": "workspace:*",
|
|
34
|
+
"@lobechat/heterogeneous-agents": "workspace:*",
|
|
35
|
+
"@lobechat/local-file-shell": "workspace:*",
|
|
36
|
+
"@lobechat/tool-runtime": "workspace:*",
|
|
20
37
|
"@trpc/client": "^11.8.1",
|
|
21
38
|
"@types/node": "^22.13.5",
|
|
22
39
|
"@types/ws": "^8.18.1",
|
|
@@ -30,26 +47,10 @@
|
|
|
30
47
|
"superjson": "^2.2.6",
|
|
31
48
|
"tsdown": "^0.21.4",
|
|
32
49
|
"typescript": "^6.0.3",
|
|
33
|
-
"ws": "^8.18.1"
|
|
34
|
-
"@lobechat/device-identity": "1.0.0",
|
|
35
|
-
"@lobechat/agent-gateway-client": "1.0.0",
|
|
36
|
-
"@lobechat/heterogeneous-agents": "1.0.0",
|
|
37
|
-
"@lobechat/tool-runtime": "1.0.0",
|
|
38
|
-
"@lobechat/local-file-shell": "1.0.0",
|
|
39
|
-
"@lobechat/device-gateway-client": "1.0.0"
|
|
50
|
+
"ws": "^8.18.1"
|
|
40
51
|
},
|
|
41
52
|
"publishConfig": {
|
|
42
53
|
"access": "public",
|
|
43
54
|
"registry": "https://registry.npmjs.org"
|
|
44
|
-
},
|
|
45
|
-
"scripts": {
|
|
46
|
-
"build": "tsdown",
|
|
47
|
-
"cli:link": "bun link",
|
|
48
|
-
"cli:unlink": "bun unlink",
|
|
49
|
-
"dev": "LOBEHUB_CLI_HOME=.lobehub-dev bun src/index.ts",
|
|
50
|
-
"man:generate": "bun src/man/generate.ts",
|
|
51
|
-
"test": "bunx vitest run --config vitest.config.mts --silent='passed-only'",
|
|
52
|
-
"test:coverage": "bunx vitest run --config vitest.config.mts --coverage",
|
|
53
|
-
"type-check": "tsc --noEmit"
|
|
54
55
|
}
|
|
55
|
-
}
|
|
56
|
+
}
|