dsh-free-search 0.4.2 → 0.4.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 +4 -0
- package/README.md +4 -0
- package/package.json +9 -3
package/README.en.md
CHANGED
|
@@ -69,6 +69,10 @@ Then restart:
|
|
|
69
69
|
dsh web
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
+
### Dependency note
|
|
73
|
+
|
|
74
|
+
`@deepseek-ai/dsh-settings` and `@deepseek-ai/dsh-tools` are intentional `peerDependencies`: the DSH runtime must use one installation-tree instance. Install this plugin through `dsh plugin --profile <profile> add ...`; do not copy DSH core packages into a profile-local `node_modules`, because duplicate copies can split the tool scheduler and break every tool call.
|
|
75
|
+
|
|
72
76
|
## Usage
|
|
73
77
|
|
|
74
78
|
### Web settings (recommended)
|
package/README.md
CHANGED
|
@@ -68,6 +68,10 @@ dsh plugin --profile web add /path/to/dsh-free-search
|
|
|
68
68
|
dsh web
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
+
### 依赖说明
|
|
72
|
+
|
|
73
|
+
插件对 `@deepseek-ai/dsh-settings` 和 `@deepseek-ai/dsh-tools` 使用 `peerDependencies`,这是刻意的:DSH 运行时必须使用安装树中的唯一实例。请通过 `dsh plugin --profile <profile> add ...` 安装插件,不要把 DSH 核心包复制进 profile 的本地 `node_modules`;重复副本会导致工具调度器失效。
|
|
74
|
+
|
|
71
75
|
## 使用
|
|
72
76
|
|
|
73
77
|
### 网页设置(推荐)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-free-search",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "Free web search for DeepSeek Harness: 8 engines (Bing/DuckDuckGo/AnySearch/SearXNG/Exa keyless) + platform search + web_fetch, with web settings UI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -38,10 +38,16 @@
|
|
|
38
38
|
"node": ">=20"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@deepseek-ai/dsh-settings": "0.1.0-rc.6",
|
|
42
|
-
"@deepseek-ai/dsh-tools": "0.1.0-rc.6",
|
|
43
41
|
"@deepseek-ai/schemastery": "^3.18.1"
|
|
44
42
|
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"@deepseek-ai/dsh-settings": "^0.1.0-rc.6",
|
|
45
|
+
"@deepseek-ai/dsh-tools": "^0.1.0-rc.6"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@deepseek-ai/dsh-settings": "0.1.0-rc.6",
|
|
49
|
+
"@deepseek-ai/dsh-tools": "0.1.0-rc.6"
|
|
50
|
+
},
|
|
45
51
|
"dsh": {
|
|
46
52
|
"bundle": {
|
|
47
53
|
"patch": "cordis.patch.yml"
|