dsh-connect-qoder 0.1.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.
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "dsh-connect-qoder",
3
+ "displayName": "DSH Connect Qoder",
4
+ "description": "将本机已登录的 Qoder(国内版 Qoder CN / 国际版 Qoder)模型接入 DeepSeek Harness —— bring locally signed-in Qoder models into DeepSeek Harness with zero configuration.",
5
+ "version": "0.1.0",
6
+ "author": "hdhgsysh",
7
+ "homepage": "https://github.com/hdhgsysh/dsh-connect-qoder",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/hdhgsysh/dsh-connect-qoder.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/hdhgsysh/dsh-connect-qoder/issues"
14
+ },
15
+ "keywords": [
16
+ "dsh-plugin",
17
+ "deepseek-harness",
18
+ "deepseek",
19
+ "qoder",
20
+ "model-provider"
21
+ ],
22
+ "type": "module",
23
+ "engines": {
24
+ "node": "^22.19.0 || >=24.0.0"
25
+ },
26
+ "main": "lib/index.js",
27
+ "exports": {
28
+ ".": {
29
+ "default": "./lib/index.js"
30
+ },
31
+ "./client": "./lib/client.js",
32
+ "./cordis.patch.yml": "./cordis.patch.yml",
33
+ "./package.json": "./package.json"
34
+ },
35
+ "files": [
36
+ "lib",
37
+ "cordis.patch.yml",
38
+ "README.md"
39
+ ],
40
+ "license": "MIT",
41
+ "dsh": {
42
+ "bundle": {
43
+ "patch": "./cordis.patch.yml"
44
+ },
45
+ "client": {
46
+ "inject": [
47
+ "@deepseek-ai/dsh-client-ui-settings",
48
+ "@deepseek-ai/dsh-client-ui-slots",
49
+ "@deepseek-ai/dsh-client-ui-settings-plugins",
50
+ "@deepseek-ai/dsh-client-locale"
51
+ ],
52
+ "platform": "web"
53
+ }
54
+ },
55
+ "peerDependencies": {
56
+ "@deepseek-ai/cordis": ">=4.0.2 <5.0.0",
57
+ "@deepseek-ai/dsh-llm": ">=0.1.5-0 <0.2.0-0",
58
+ "@deepseek-ai/dsh-llm-pi-ai": ">=0.1.5-0 <0.2.0-0",
59
+ "@deepseek-ai/dsh-settings": ">=0.1.5-0 <0.2.0-0",
60
+ "@deepseek-ai/dsh-home-paths": ">=0.1.5-0 <0.2.0-0",
61
+ "@deepseek-ai/dsh-host-webserver": ">=0.1.5-0 <0.2.0-0",
62
+ "@deepseek-ai/dsh-client-locale": ">=0.1.5-0 <0.2.0-0",
63
+ "@deepseek-ai/dsh-client-ui-settings": ">=0.1.5-0 <0.2.0-0",
64
+ "@deepseek-ai/dsh-client-ui-slots": ">=0.1.5-0 <0.2.0-0",
65
+ "@deepseek-ai/schemastery": "^3.18.2",
66
+ "@earendil-works/pi-ai": "^0.85.1"
67
+ },
68
+ "peerDependenciesMeta": {
69
+ "@deepseek-ai/cordis": { "optional": true }
70
+ }
71
+ }