dsh-qqbot 1.0.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/README.md +98 -0
- package/lib/client.js +556 -0
- package/lib/index.js +811 -0
- package/lib/invariant.js +23 -0
- package/lib/types/client/QqbotSettingsSection.d.ts +12 -0
- package/lib/types/client/QqbotToggle.d.ts +10 -0
- package/lib/types/client/index.d.ts +60 -0
- package/lib/types/client/locales.d.ts +63 -0
- package/lib/types/client/settings-controller.d.ts +75 -0
- package/lib/types/gateway.d.ts +96 -0
- package/lib/types/index.d.ts +64 -0
- package/lib/types/invariant.d.ts +15 -0
- package/lib/types/protocol.d.ts +110 -0
- package/lib/types/types.d.ts +62 -0
- package/package.json +100 -0
package/package.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-qqbot",
|
|
3
|
+
"description": "QQ official bot bridge for DeepSeek Harness: /qqbot command, bound-session routing, QQ-side approvals, the composer connection toggle, and the QQ Bot settings page",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"types": "lib/types/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./lib/types/index.d.ts",
|
|
11
|
+
"default": "./lib/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./invariant": {
|
|
14
|
+
"types": "./lib/types/invariant.d.ts",
|
|
15
|
+
"default": "./lib/invariant.js"
|
|
16
|
+
},
|
|
17
|
+
"./client": {
|
|
18
|
+
"types": "./lib/types/client/index.d.ts",
|
|
19
|
+
"default": "./lib/client.js"
|
|
20
|
+
},
|
|
21
|
+
"./src/*": "./src/*",
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
24
|
+
"dsh": {
|
|
25
|
+
"client": {
|
|
26
|
+
"inject": [
|
|
27
|
+
"@deepseek-ai/dsh-api-remotes",
|
|
28
|
+
"@deepseek-ai/dsh-client-connection",
|
|
29
|
+
"@deepseek-ai/dsh-client-locale",
|
|
30
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
31
|
+
"@deepseek-ai/dsh-client-ui-conversation",
|
|
32
|
+
"@deepseek-ai/dsh-client-ui-settings"
|
|
33
|
+
],
|
|
34
|
+
"platform": "web"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"lib/index.js",
|
|
39
|
+
"lib/invariant.js",
|
|
40
|
+
"lib/client.js",
|
|
41
|
+
"lib/types/**/*.d.ts"
|
|
42
|
+
],
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsc -p tsconfig.json && tsdown",
|
|
46
|
+
"test": "vitest run"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@deepseek-ai/dsh-settings": "^0.1.0-rc.5",
|
|
50
|
+
"@deepseek-ai/schemastery": "^3.18.1"
|
|
51
|
+
},
|
|
52
|
+
"peerDependencies": {
|
|
53
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
54
|
+
"@deepseek-ai/dsh-agent": "^0.1.0-rc.5",
|
|
55
|
+
"@deepseek-ai/dsh-api-remotes": "^0.1.0-rc.5",
|
|
56
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.0-rc.5",
|
|
57
|
+
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.5",
|
|
58
|
+
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.0-rc.5",
|
|
59
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.0-rc.5",
|
|
60
|
+
"@deepseek-ai/dsh-commands": "^0.1.0-rc.5",
|
|
61
|
+
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.5",
|
|
62
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.5",
|
|
63
|
+
"@deepseek-ai/dsh-session": "^0.1.0-rc.5",
|
|
64
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.0-rc.5",
|
|
65
|
+
"@deepseek-ai/dsh-user-approval": "^0.1.0-rc.5",
|
|
66
|
+
"react": "^18.2.0"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
70
|
+
"@deepseek-ai/dsh-agent": "^0.1.0-rc.5",
|
|
71
|
+
"@deepseek-ai/dsh-agent-loop": "^0.1.0-rc.5",
|
|
72
|
+
"@deepseek-ai/dsh-agent-loop-testkit": "^0.1.0-rc.5",
|
|
73
|
+
"@deepseek-ai/dsh-api-remotes": "^0.1.0-rc.5",
|
|
74
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.0-rc.5",
|
|
75
|
+
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.5",
|
|
76
|
+
"@deepseek-ai/dsh-client-test-runtime": "^0.1.0-rc.5",
|
|
77
|
+
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.0-rc.5",
|
|
78
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.0-rc.5",
|
|
79
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.0-rc.5",
|
|
80
|
+
"@deepseek-ai/dsh-client-web-react": "^0.1.0-rc.5",
|
|
81
|
+
"@deepseek-ai/dsh-commands": "^0.1.0-rc.5",
|
|
82
|
+
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.5",
|
|
83
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.5",
|
|
84
|
+
"@deepseek-ai/dsh-session": "^0.1.0-rc.5",
|
|
85
|
+
"@deepseek-ai/dsh-settings": "^0.1.0-rc.5",
|
|
86
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.0-rc.5",
|
|
87
|
+
"@deepseek-ai/dsh-tools": "^0.1.0-rc.5",
|
|
88
|
+
"@deepseek-ai/dsh-user-approval": "^0.1.0-rc.5",
|
|
89
|
+
"@testing-library/react": "^16.3.2",
|
|
90
|
+
"@types/node": "^22.20.0",
|
|
91
|
+
"@types/react": "~18.3.1",
|
|
92
|
+
"jsdom": "^29.1.1",
|
|
93
|
+
"lightningcss": "^1.32.0",
|
|
94
|
+
"react": "^18.2.0",
|
|
95
|
+
"react-dom": "^18.2.0",
|
|
96
|
+
"tsdown": "^0.22.0",
|
|
97
|
+
"typescript": "^5.9.0",
|
|
98
|
+
"vitest": "^4.0.0"
|
|
99
|
+
}
|
|
100
|
+
}
|