@lobehub/cli 0.0.1-canary.3 → 0.0.1-canary.4

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.js +2214 -6
  2. package/package.json +13 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/cli",
3
- "version": "0.0.1-canary.3",
3
+ "version": "0.0.1-canary.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "lh": "./dist/index.js"
@@ -8,31 +8,32 @@
8
8
  "files": [
9
9
  "dist"
10
10
  ],
11
- "scripts": {
12
- "build": "npx tsup",
13
- "dev": "bun src/index.ts",
14
- "prepublishOnly": "npm run build",
15
- "test": "bunx vitest run --config vitest.config.mts --silent='passed-only'",
16
- "test:coverage": "bunx vitest run --config vitest.config.mts --coverage",
17
- "type-check": "tsc --noEmit"
18
- },
19
11
  "dependencies": {
12
+ "@trpc/client": "^11.8.1",
20
13
  "commander": "^13.1.0",
21
14
  "diff": "^7.0.0",
22
15
  "fast-glob": "^3.3.3",
23
16
  "picocolors": "^1.1.1",
17
+ "superjson": "^2.2.6",
24
18
  "ws": "^8.18.1"
25
19
  },
26
20
  "devDependencies": {
27
- "@lobechat/device-gateway-client": "workspace:*",
28
21
  "@types/diff": "^6.0.0",
29
22
  "@types/node": "^22.13.5",
30
23
  "@types/ws": "^8.18.1",
31
24
  "tsup": "^8.4.0",
32
- "typescript": "^5.9.3"
25
+ "typescript": "^5.9.3",
26
+ "@lobechat/device-gateway-client": "1.0.0"
33
27
  },
34
28
  "publishConfig": {
35
29
  "access": "public",
36
30
  "registry": "https://registry.npmjs.org"
31
+ },
32
+ "scripts": {
33
+ "build": "npx tsup",
34
+ "dev": "bun src/index.ts",
35
+ "test": "bunx vitest run --config vitest.config.mts --silent='passed-only'",
36
+ "test:coverage": "bunx vitest run --config vitest.config.mts --coverage",
37
+ "type-check": "tsc --noEmit"
37
38
  }
38
- }
39
+ }