@lijian-ui/dsh-im-gateway 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/LICENSE +21 -0
- package/README.md +183 -0
- package/README.zh-CN.md +207 -0
- package/cordis.patch.yml +24 -0
- package/lib/client.js +1233 -0
- package/lib/index-2mMnMMFx.d.ts +304 -0
- package/lib/index.js +3623 -0
- package/package.json +103 -0
package/package.json
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lijian-ui/dsh-im-gateway",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Multi-channel IM gateway plugin for DeepSeek Harness (dsh): DingTalk / QQ / WeChat(iLink) with QR-scan binding, streaming replies, and a unified ctx.imGateway service. 为 DeepSeek Harness 提供钉钉/QQ/个人微信多 IM 通道接入。",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "lib/index.js",
|
|
8
|
+
"types": "lib/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./lib/index.d.ts",
|
|
12
|
+
"default": "./lib/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./client": {
|
|
15
|
+
"default": "./lib/client.js"
|
|
16
|
+
},
|
|
17
|
+
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"lib/**/*.js",
|
|
22
|
+
"lib/**/*.d.ts",
|
|
23
|
+
"cordis.patch.yml",
|
|
24
|
+
"README.md",
|
|
25
|
+
"README.zh-CN.md",
|
|
26
|
+
"LICENSE"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsdown",
|
|
30
|
+
"watch": "tsdown --watch",
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"prepare": "npm run build"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"deepseek-harness",
|
|
36
|
+
"dsh",
|
|
37
|
+
"dsh-plugin",
|
|
38
|
+
"im-gateway",
|
|
39
|
+
"dingtalk",
|
|
40
|
+
"qq",
|
|
41
|
+
"wechat",
|
|
42
|
+
"weixin",
|
|
43
|
+
"cordis"
|
|
44
|
+
],
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/lijian-ui/dsh-im-gateway.git"
|
|
48
|
+
},
|
|
49
|
+
"dsh": {
|
|
50
|
+
"bundle": {
|
|
51
|
+
"patch": "./cordis.patch.yml"
|
|
52
|
+
},
|
|
53
|
+
"client": {
|
|
54
|
+
"inject": [
|
|
55
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
56
|
+
"@deepseek-ai/dsh-client-locale",
|
|
57
|
+
"@deepseek-ai/dsh-api-gateway"
|
|
58
|
+
],
|
|
59
|
+
"platform": "web",
|
|
60
|
+
"immediately": true
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"@deepseek-ai/cordis": "*",
|
|
65
|
+
"@deepseek-ai/schemastery": "*",
|
|
66
|
+
"@deepseek-ai/dsh-agent": "0.1.0-rc.6",
|
|
67
|
+
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
|
|
68
|
+
"@deepseek-ai/dsh-session": "0.1.0-rc.6",
|
|
69
|
+
"@deepseek-ai/dsh-settings": "*",
|
|
70
|
+
"@deepseek-ai/dsh-typert-protocol": "*"
|
|
71
|
+
},
|
|
72
|
+
"dependencies": {
|
|
73
|
+
"@tencent-connect/qqbot-connector": "^1.2.0",
|
|
74
|
+
"@tencent-connect/qqbot-nodejs": "^1.0.4",
|
|
75
|
+
"dingtalk-stream": "^2.1.5",
|
|
76
|
+
"qrcode": "^1.5.4",
|
|
77
|
+
"ws": "^8.18.0"
|
|
78
|
+
},
|
|
79
|
+
"devDependencies": {
|
|
80
|
+
"@deepseek-ai/cordis": "4.0.1",
|
|
81
|
+
"@deepseek-ai/schemastery": "3.18.1",
|
|
82
|
+
"@deepseek-ai/dsh-agent": "0.1.0-rc.6",
|
|
83
|
+
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
|
|
84
|
+
"@deepseek-ai/dsh-session": "0.1.0-rc.6",
|
|
85
|
+
"@deepseek-ai/dsh-settings": "0.1.0-rc.6",
|
|
86
|
+
"@deepseek-ai/dsh-typert-protocol": "0.1.0-rc.6",
|
|
87
|
+
"@deepseek-ai/dsh-client-connection": "0.1.0-rc.6",
|
|
88
|
+
"@deepseek-ai/dsh-client-locale": "0.1.0-rc.6",
|
|
89
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
|
|
90
|
+
"@deepseek-ai/dsh-client-schema-form": "0.1.0-rc.6",
|
|
91
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6",
|
|
92
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.0-rc.6",
|
|
93
|
+
"@deepseek-ai/dsh-client-ui-settings-plugins": "0.1.0-rc.6",
|
|
94
|
+
"@deepseek-ai/dsh-api-gateway": "0.1.0-rc.6",
|
|
95
|
+
"@types/node": "^22.0.0",
|
|
96
|
+
"@types/qrcode": "^1.5.5",
|
|
97
|
+
"@types/react": "^18.3.0",
|
|
98
|
+
"@types/ws": "^8.5.0",
|
|
99
|
+
"react": "^18.2.0",
|
|
100
|
+
"tsdown": "^0.12.0",
|
|
101
|
+
"typescript": "^5.6.0"
|
|
102
|
+
}
|
|
103
|
+
}
|