-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) 路 2.45 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) 路 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "dsh-web-search-multi",
"version": "0.1.0",
"description": "Multi-provider web search plugin for DeepSeek Harness supporting free-tier providers (Bing, Baidu, 360, Tavily, Brave, Serper, Bocha, SearXNG, DuckDuckGo) with auto-fallback and Web Settings UI.",
"type": "module",
"main": "lib/index.js",
"types": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cinob/dsh-web-search-multi.git"
},
"bugs": {
"url": "https://github.com/cinob/dsh-web-search-multi/issues"
},
"homepage": "https://github.com/cinob/dsh-web-search-multi#readme",
"author": "cinob",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "node scripts/build.mjs",
"test": "node --test tests/**/*.spec.ts"
},
"exports": {
".": {
"types": "./src/index.ts",
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"lib",
"src",
"cordis.patch.yml",
"README.md",
"README.zh.md",
"LICENSE"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-locale"
],
"platform": "web"
},
"disclosures": {
"risk": "low",
"network": true,
"filesystem": "workspace-write",
"credentials": [
"TAVILY_API_KEY",
"BRAVE_API_KEY",
"SERPER_API_KEY",
"BOCHA_API_KEY",
"SEARXNG_TOKEN"
]
}
},
"peerDependencies": {
"@deepseek-ai/cordis": "*",
"@deepseek-ai/dsh-credentials": "*",
"@deepseek-ai/dsh-settings": "*",
"@deepseek-ai/dsh-web": "*",
"@deepseek-ai/schemastery": "*"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": {
"optional": true
},
"@deepseek-ai/dsh-credentials": {
"optional": true
},
"@deepseek-ai/dsh-settings": {
"optional": true
},
"@deepseek-ai/dsh-web": {
"optional": true
},
"@deepseek-ai/schemastery": {
"optional": true
}
},
"keywords": [
"dsh-plugin",
"dsh-external",
"deepseek-harness",
"awesome-dsh",
"web-search",
"so360",
"bing",
"baidu",
"tavily",
"brave",
"serper",
"bocha",
"searxng",
"duckduckgo"
]
}