dsh-voice 0.3.2 → 0.3.3
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/README.en.md +1 -1
- package/README.md +1 -1
- package/package.json +66 -66
package/README.en.md
CHANGED
|
@@ -14,7 +14,7 @@ DSH (DeepSeek Harness) voice plugin pair: let the agent **speak and listen**.
|
|
|
14
14
|
|
|
15
15
|
## Compatibility
|
|
16
16
|
|
|
17
|
-
Verified
|
|
17
|
+
Verified with official `@deepseek-ai/dsh@0.1.5-rc.1` and Node `24.16.0` on 2026-09-11: all 18 components load alongside Modlens, with passing tool-schema, skill-registration and offline read-only invocation checks. Uses the `cordis.patch.yml` + `dsh.bundle.patch` bundle model. Node requirements match this Harness release: 22.19 or later within 22.x, or 24 or later. Live external-service workflows require separate configuration and validation.
|
|
18
18
|
|
|
19
19
|
## Installation
|
|
20
20
|
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ DSH(DeepSeek Harness)语音双件套插件:让 agent **会说话、能听
|
|
|
17
17
|
|
|
18
18
|
## 兼容性
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
已在官方 `@deepseek-ai/dsh@0.1.5-rc.1`、Node `24.16.0` 上验证(2026-09-11):18 个组件与 Modlens 同载,工具 schema、技能注册及离线只读调用检查通过。采用 `cordis.patch.yml` + `dsh.bundle.patch` 组合包模型。Node 要求与该版本 Harness 一致:22.19 及以上的 22.x,或 24 及以上。外部服务的实际业务操作需按各组件配置单独验证。
|
|
21
21
|
|
|
22
22
|
## 安装
|
|
23
23
|
|
package/package.json
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dsh-voice",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "DSH 语音双件套插件:voice_tts(edge-tts 协议零成本微软神经语音合成)/ voice_stt(OpenAI 兼容 ASR 语音转文字)/ voice_list(音色列表),原生 WebSocket + 插件级代理。",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "lib/index.js",
|
|
7
|
-
"types": "lib/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./lib/index.d.ts",
|
|
11
|
-
"default": "./lib/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
14
|
-
"./package.json": "./package.json"
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"lib",
|
|
18
|
-
"cordis.patch.yml",
|
|
19
|
-
"README.md",
|
|
20
|
-
"README.en.md"
|
|
21
|
-
],
|
|
22
|
-
"scripts": {
|
|
23
|
-
"build": "tsc -p tsconfig.json",
|
|
24
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-voice",
|
|
3
|
+
"version": "0.3.3",
|
|
4
|
+
"description": "DSH 语音双件套插件:voice_tts(edge-tts 协议零成本微软神经语音合成)/ voice_stt(OpenAI 兼容 ASR 语音转文字)/ voice_list(音色列表),原生 WebSocket + 插件级代理。",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"types": "lib/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./lib/index.d.ts",
|
|
11
|
+
"default": "./lib/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"lib",
|
|
18
|
+
"cordis.patch.yml",
|
|
19
|
+
"README.md",
|
|
20
|
+
"README.en.md"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsc -p tsconfig.json",
|
|
24
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
25
25
|
"test": "pnpm run build && node --test \"test/*.test.mjs\"",
|
|
26
26
|
"test:integration": "pnpm run build && node --test \"integration/*.test.mjs\"",
|
|
27
|
-
"prepublishOnly": "pnpm run build"
|
|
28
|
-
},
|
|
29
|
-
"dsh": {
|
|
30
|
-
"bundle": {
|
|
31
|
-
"patch": "./cordis.patch.yml"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"keywords": [
|
|
35
|
-
"dsh",
|
|
36
|
-
"deepseek-harness",
|
|
37
|
-
"plugin",
|
|
38
|
-
"tts",
|
|
39
|
-
"stt",
|
|
40
|
-
"whisper",
|
|
41
|
-
"voice",
|
|
42
|
-
"dsh-plugin"
|
|
43
|
-
],
|
|
44
|
-
"license": "MIT",
|
|
45
|
-
"engines": {
|
|
46
|
-
"node": "
|
|
47
|
-
},
|
|
48
|
-
"dependencies": {
|
|
49
|
-
"https-proxy-agent": "^9.1.0",
|
|
50
|
-
"undici": "^8.10.0",
|
|
51
|
-
"ws": "^8.21.3"
|
|
52
|
-
},
|
|
53
|
-
"devDependencies": {
|
|
54
|
-
"@types/node": "^24.0.0",
|
|
55
|
-
"@types/ws": "^8.18.1",
|
|
56
|
-
"typescript": "^5.6.0"
|
|
57
|
-
},
|
|
58
|
-
"repository": {
|
|
59
|
-
"type": "git",
|
|
60
|
-
"url": "git+https://github.com/STARDUSTLC666/dsh-voice.git"
|
|
61
|
-
},
|
|
62
|
-
"bugs": {
|
|
63
|
-
"url": "https://github.com/STARDUSTLC666/dsh-voice/issues"
|
|
64
|
-
},
|
|
65
|
-
"homepage": "https://github.com/STARDUSTLC666/dsh-voice#readme",
|
|
66
|
-
"author": "stardustlc",
|
|
67
|
-
"packageManager": "pnpm@11.7.0"
|
|
68
|
-
}
|
|
27
|
+
"prepublishOnly": "pnpm run build"
|
|
28
|
+
},
|
|
29
|
+
"dsh": {
|
|
30
|
+
"bundle": {
|
|
31
|
+
"patch": "./cordis.patch.yml"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"dsh",
|
|
36
|
+
"deepseek-harness",
|
|
37
|
+
"plugin",
|
|
38
|
+
"tts",
|
|
39
|
+
"stt",
|
|
40
|
+
"whisper",
|
|
41
|
+
"voice",
|
|
42
|
+
"dsh-plugin"
|
|
43
|
+
],
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": "^22.19.0 || >=24.0.0"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"https-proxy-agent": "^9.1.0",
|
|
50
|
+
"undici": "^8.10.0",
|
|
51
|
+
"ws": "^8.21.3"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/node": "^24.0.0",
|
|
55
|
+
"@types/ws": "^8.18.1",
|
|
56
|
+
"typescript": "^5.6.0"
|
|
57
|
+
},
|
|
58
|
+
"repository": {
|
|
59
|
+
"type": "git",
|
|
60
|
+
"url": "git+https://github.com/STARDUSTLC666/dsh-voice.git"
|
|
61
|
+
},
|
|
62
|
+
"bugs": {
|
|
63
|
+
"url": "https://github.com/STARDUSTLC666/dsh-voice/issues"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://github.com/STARDUSTLC666/dsh-voice#readme",
|
|
66
|
+
"author": "stardustlc",
|
|
67
|
+
"packageManager": "pnpm@11.7.0"
|
|
68
|
+
}
|