xiaozhi-client 1.9.4-beta.10 → 1.9.4-beta.11
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/backend/package.json +14 -19
- package/dist/cli/index.js +5 -5
- package/dist/cli/index.js.map +1 -1
- package/package.json +14 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xiaozhi-client",
|
|
3
|
-
"version": "1.9.4-beta.
|
|
3
|
+
"version": "1.9.4-beta.11",
|
|
4
4
|
"description": "小智 AI 客户端 命令行工具",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,33 +32,28 @@
|
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "nx reset && pnpm run clean:dist && nx run-many -t build --exclude=docs --parallel=false",
|
|
35
|
-
"test": "nx run-many -t test",
|
|
36
|
-
"test:coverage": "nx run-many -t test:coverage --parallel=false",
|
|
37
|
-
"lint": "nx run-many -t lint",
|
|
38
|
-
"lint:fix": "nx run-many -t lint:fix",
|
|
39
|
-
"type-check": "nx run-many -t type-check --exclude=docs",
|
|
40
|
-
"format": "biome format --write .",
|
|
41
|
-
"check:all": "pnpm run lint && pnpm run type-check && pnpm run check:spell && pnpm run duplicate:check",
|
|
42
|
-
"check:spell": "cspell .",
|
|
43
|
-
"duplicate:check": "jscpd apps/backend/",
|
|
44
|
-
"docker:update-version": "node docker/scripts/update-version.js",
|
|
45
|
-
"release": "nx release version && pnpm build && nx release publish",
|
|
46
|
-
"release:dry": "nx release version --dry-run",
|
|
47
|
-
"release:version": "nx release version",
|
|
48
|
-
"release:publish": "nx release publish",
|
|
49
|
-
"release:multi": "tsx scripts/publish.ts",
|
|
50
|
-
"release:multi:dry": "tsx scripts/publish.ts --dry-run",
|
|
51
35
|
"dev": "nx run-many -t build --exclude=docs --parallel=false && concurrently \"nx run backend:dev\" \"nx run cli:dev\" \"nx run frontend:dev\" --prefix \"[{name}]\" --names \"BACKEND,CLI,FRONTEND\"",
|
|
52
36
|
"dev:cli": "nx run cli:dev",
|
|
53
37
|
"dev:docs": "nx run docs:dev",
|
|
54
38
|
"dev:backend": "nx run backend:dev",
|
|
55
39
|
"dev:frontend": "nx run frontend:dev",
|
|
40
|
+
"test": "nx run-many -t test",
|
|
41
|
+
"test:coverage": "nx run-many -t test:coverage --parallel=false",
|
|
42
|
+
"lint": "nx run-many -t lint",
|
|
43
|
+
"lint:fix": "nx run-many -t lint:fix",
|
|
44
|
+
"check:type": "nx run-many -t type-check --exclude=docs",
|
|
45
|
+
"check:all": "pnpm run lint && pnpm run check:type && pnpm run check:spell && pnpm run check:cpd",
|
|
46
|
+
"check:spell": "cspell .",
|
|
47
|
+
"check:cpd": "jscpd apps/ packages/",
|
|
48
|
+
"release": "tsx scripts/publish.ts",
|
|
49
|
+
"release:dry": "tsx scripts/publish.ts --dry-run",
|
|
56
50
|
"clean:dist": "rimraf dist || rm -rf dist",
|
|
57
51
|
"link": "pnpm link --global",
|
|
58
|
-
"unlink": "pnpm unlink --global"
|
|
52
|
+
"unlink": "pnpm unlink --global",
|
|
53
|
+
"docker:update-version": "node docker/scripts/update-version.js"
|
|
59
54
|
},
|
|
60
55
|
"dependencies": {
|
|
61
|
-
"@xiaozhi-client/config": "1.9.4-beta.
|
|
56
|
+
"@xiaozhi-client/config": "1.9.4-beta.11",
|
|
62
57
|
"@coze/api": "^1.3.9",
|
|
63
58
|
"@hono/node-server": "^1.17.1",
|
|
64
59
|
"@modelcontextprotocol/sdk": "^1.24.0",
|