xiaozhi-client 1.9.4-beta.4 → 1.9.4-beta.5
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/WebServer.js +12 -12
- package/dist/backend/WebServer.js.map +1 -1
- package/dist/backend/WebServerLauncher.js +11 -11
- package/dist/backend/WebServerLauncher.js.map +1 -1
- package/dist/backend/managers/MCPServiceManagerSingleton.js +5 -5
- package/dist/backend/managers/MCPServiceManagerSingleton.js.map +1 -1
- package/dist/backend/package.json +9 -11
- package/dist/backend/templates/default/xiaozhi.cache.json +0 -0
- package/dist/backend/templates/default/xiaozhi.log +0 -0
- package/dist/backend/templates/hello-world/xiaozhi.cache.json +0 -0
- package/dist/backend/templates/hello-world/xiaozhi.log +0 -0
- package/dist/backend/templates/json5/xiaozhi.cache.json +0 -0
- package/dist/backend/templates/json5/xiaozhi.log +0 -0
- package/dist/backend/templates/jsonc/xiaozhi.cache.json +0 -0
- package/dist/backend/templates/jsonc/xiaozhi.log +0 -0
- package/dist/backend/templates/modelscope/xiaozhi.cache.json +0 -0
- package/dist/backend/templates/modelscope/xiaozhi.log +0 -0
- package/dist/cli/index.js +2 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/config/index.d.ts +580 -0
- package/dist/config/index.js +1784 -0
- package/dist/config/index.js.map +1 -0
- package/dist/frontend/assets/index-88NfCOo9.js.map +1 -1
- package/package.json +9 -11
- package/templates/default/xiaozhi.cache.json +0 -0
- package/templates/default/xiaozhi.log +0 -0
- package/templates/hello-world/xiaozhi.cache.json +0 -0
- package/templates/hello-world/xiaozhi.log +0 -0
- package/templates/json5/xiaozhi.cache.json +0 -0
- package/templates/json5/xiaozhi.log +0 -0
- package/templates/jsonc/xiaozhi.cache.json +0 -0
- package/templates/jsonc/xiaozhi.log +0 -0
- package/templates/modelscope/xiaozhi.cache.json +0 -0
- package/templates/modelscope/xiaozhi.log +0 -0
- package/dist/backend/lib/config/manager.js +0 -3
- package/dist/backend/lib/config/manager.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xiaozhi-client",
|
|
3
|
-
"version": "1.9.4-beta.
|
|
3
|
+
"version": "1.9.4-beta.5",
|
|
4
4
|
"description": "小智 AI 客户端 命令行工具",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,16 +34,18 @@
|
|
|
34
34
|
"build": "nx reset && pnpm run clean:dist && nx run-many -t build --exclude=docs --parallel=false",
|
|
35
35
|
"test": "nx run-many -t test",
|
|
36
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",
|
|
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
40
|
"format": "biome format --write .",
|
|
41
41
|
"check:all": "pnpm run lint && pnpm run type-check && pnpm run check:spell && pnpm run duplicate:check",
|
|
42
42
|
"check:spell": "cspell .",
|
|
43
43
|
"duplicate:check": "jscpd apps/backend/",
|
|
44
44
|
"docker:update-version": "node docker/scripts/update-version.js",
|
|
45
|
-
"release": "
|
|
46
|
-
"release:dry": "
|
|
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",
|
|
47
49
|
"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\"",
|
|
48
50
|
"dev:cli": "nx run cli:dev",
|
|
49
51
|
"dev:docs": "nx run docs:dev",
|
|
@@ -60,8 +62,8 @@
|
|
|
60
62
|
"ajv": "^8.17.1",
|
|
61
63
|
"chalk": "^5.6.0",
|
|
62
64
|
"cli-table3": "^0.6.5",
|
|
63
|
-
"comment-json": "^4.2.5",
|
|
64
65
|
"commander": "^14.0.0",
|
|
66
|
+
"comment-json": "^4.2.5",
|
|
65
67
|
"consola": "^3.4.2",
|
|
66
68
|
"dayjs": "^1.11.13",
|
|
67
69
|
"dotenv": "^17.2.1",
|
|
@@ -81,12 +83,9 @@
|
|
|
81
83
|
"@nx/vite": "^22.3.3",
|
|
82
84
|
"@nx/vitest": "^22.3.3",
|
|
83
85
|
"@nx/workspace": "^22.3.3",
|
|
84
|
-
"@release-it/conventional-changelog": "^10.0.1",
|
|
85
86
|
"@types/semver": "^7.7.1",
|
|
86
87
|
"@vitest/coverage-v8": "^3.2.4",
|
|
87
88
|
"concurrently": "^9.2.1",
|
|
88
|
-
"conventional-changelog-cli": "^5.0.0",
|
|
89
|
-
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
90
89
|
"cross-env": "^10.0.0",
|
|
91
90
|
"cspell": "^9.2.1",
|
|
92
91
|
"esbuild": "^0.25.9",
|
|
@@ -94,7 +93,6 @@
|
|
|
94
93
|
"glob": "^11.0.3",
|
|
95
94
|
"jscpd": "^4.0.5",
|
|
96
95
|
"nx": "^22.3.3",
|
|
97
|
-
"release-it": "^19.0.4",
|
|
98
96
|
"rimraf": "^6.1.2",
|
|
99
97
|
"semver": "^7.7.2",
|
|
100
98
|
"ts-node": "^10.9.2",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/cli/index.js
CHANGED
|
@@ -2868,7 +2868,7 @@ var McpCommandHandler_exports = {};
|
|
|
2868
2868
|
__export(McpCommandHandler_exports, {
|
|
2869
2869
|
McpCommandHandler: () => McpCommandHandler
|
|
2870
2870
|
});
|
|
2871
|
-
import { configManager as configManager2 } from "../
|
|
2871
|
+
import { configManager as configManager2 } from "../config/index.js";
|
|
2872
2872
|
import chalk4 from "chalk";
|
|
2873
2873
|
import Table from "cli-table3";
|
|
2874
2874
|
import consola3 from "consola";
|
|
@@ -3625,7 +3625,7 @@ var init_EndpointCommandHandler = __esm({
|
|
|
3625
3625
|
import { Command } from "commander";
|
|
3626
3626
|
|
|
3627
3627
|
// src/Container.ts
|
|
3628
|
-
import { configManager } from "../
|
|
3628
|
+
import { configManager } from "../config/index.js";
|
|
3629
3629
|
|
|
3630
3630
|
// src/errors/ErrorHandlers.ts
|
|
3631
3631
|
import chalk from "chalk";
|