@oadank/dsh-input-tools 0.2.0 → 0.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.
Files changed (2) hide show
  1. package/cordis.patch.yml +7 -2
  2. package/package.json +6 -2
package/cordis.patch.yml CHANGED
@@ -1,5 +1,10 @@
1
- # 分享用:追加到 ~/.dsh/profiles/web/cordis.patch.yml(insert 列表内),重启生效
2
- # 单插件双入口:host(语音工具/TTS/ASR/克隆/自动回复)+ client(输入框工具条/语音设置页/复制按钮)
1
+ # dsh-input-tools bundle patch(dsh.bundle.patch 引用此文件)
2
+ # 单插件双入口:host(语音工具/TTS六引擎/ASR/克隆/自动回复)+ client(输入框工具条/语音设置页/复制按钮)
3
+ #
4
+ # 安装注册(二选一):
5
+ # 1. 一键:dsh plugin --profile web add @oadank/dsh-input-tools
6
+ # (包声明 dsh.bundle,dsh 自动把本 patch 加入 profile bundles,无需手改)
7
+ # 2. 手动:把下方 insert 追加到 ~/.dsh/profiles/web/cordis.patch.yml 并重启
3
8
  - insert:
4
9
  - id: dsh-input-tools
5
10
  name: '@oadank/dsh-input-tools'
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@oadank/dsh-input-tools",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
7
7
  "exports": {
8
8
  ".": { "default": "./lib/index.js" },
9
9
  "./client": { "default": "./lib/client.js" },
10
+ "./cordis.patch.yml": "./cordis.patch.yml",
10
11
  "./package.json": "./package.json"
11
12
  },
12
13
  "files": [
@@ -15,6 +16,9 @@
15
16
  "cordis.patch.yml"
16
17
  ],
17
18
  "dsh": {
19
+ "bundle": {
20
+ "patch": "./cordis.patch.yml"
21
+ },
18
22
  "client": {
19
23
  "inject": [
20
24
  "@deepseek-ai/dsh-client-runtime"
@@ -29,5 +33,5 @@
29
33
  "publishConfig": {
30
34
  "access": "public"
31
35
  },
32
- "description": "DSH 语音能力一体化插件(单包双入口):host=语音工具/TTS六引擎/ASR/克隆/自动回复;client=输入框工具条/语音设置页/复制按钮。npm 安装后 cordis.patch.yml 注册 @oadank/dsh-input-tools 即可"
36
+ "description": "DSH 语音能力一体化插件(bundle 单包双入口):host=语音工具/TTS六引擎/ASR/克隆/自动回复;client=输入框工具条/语音设置页/复制按钮。dsh plugin --profile web add @oadank/dsh-input-tools 一键安装注册"
33
37
  }