xiaozhi-client 1.2.0-beta.0 → 1.3.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.
- package/dist/mcpPipe.js +0 -0
- package/dist/mcpServerProxy.js +0 -0
- package/dist/package.json +1 -1
- package/package.json +19 -19
package/dist/mcpPipe.js
CHANGED
|
File without changes
|
package/dist/mcpServerProxy.js
CHANGED
|
File without changes
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xiaozhi-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "小智 AI 客户端 命令行工具",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|
|
@@ -19,6 +19,23 @@
|
|
|
19
19
|
"xiaozhi": "./dist/cli.js",
|
|
20
20
|
"xiaozhi-client": "./dist/cli.js"
|
|
21
21
|
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsup",
|
|
24
|
+
"dev": "tsup --watch",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"test:watch": "vitest",
|
|
27
|
+
"test:coverage": "vitest run --coverage",
|
|
28
|
+
"test:ui": "vitest --ui",
|
|
29
|
+
"format": "biome format --write .",
|
|
30
|
+
"lint": "biome lint --write .",
|
|
31
|
+
"type:check": "tsc --noEmit",
|
|
32
|
+
"check": "biome check .",
|
|
33
|
+
"check:write": "biome check --write .",
|
|
34
|
+
"check:all": "pnpm check && pnpm type:check && pnpm spell:check && pnpm duplicate:check",
|
|
35
|
+
"spell:check": "cspell \"src/**/*.ts\" \"*.md\" \"*.json\"",
|
|
36
|
+
"duplicate:check": "jscpd src/",
|
|
37
|
+
"release": "semantic-release"
|
|
38
|
+
},
|
|
22
39
|
"keywords": [
|
|
23
40
|
"xiaozhi",
|
|
24
41
|
"mcp",
|
|
@@ -64,22 +81,5 @@
|
|
|
64
81
|
"tsup": "^8.5.0",
|
|
65
82
|
"typescript": "^5.8.3",
|
|
66
83
|
"vitest": "^3.2.3"
|
|
67
|
-
},
|
|
68
|
-
"scripts": {
|
|
69
|
-
"build": "tsup",
|
|
70
|
-
"dev": "tsup --watch",
|
|
71
|
-
"test": "vitest run",
|
|
72
|
-
"test:watch": "vitest",
|
|
73
|
-
"test:coverage": "vitest run --coverage",
|
|
74
|
-
"test:ui": "vitest --ui",
|
|
75
|
-
"format": "biome format --write .",
|
|
76
|
-
"lint": "biome lint --write .",
|
|
77
|
-
"type:check": "tsc --noEmit",
|
|
78
|
-
"check": "biome check .",
|
|
79
|
-
"check:write": "biome check --write .",
|
|
80
|
-
"check:all": "pnpm check && pnpm type:check && pnpm spell:check && pnpm duplicate:check",
|
|
81
|
-
"spell:check": "cspell \"src/**/*.ts\" \"*.md\" \"*.json\"",
|
|
82
|
-
"duplicate:check": "jscpd src/",
|
|
83
|
-
"release": "semantic-release"
|
|
84
84
|
}
|
|
85
|
-
}
|
|
85
|
+
}
|