dsh-plugin-session-console-sleepcat 0.17.4
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 +76 -0
- package/lib/client.js +1344 -0
- package/lib/index.js +11 -0
- package/package.json +47 -0
package/lib/index.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** Host half of dsh-plugin-session-console.
|
|
2
|
+
*
|
|
3
|
+
* This plugin is client-only: the row exists so the loader enables the web
|
|
4
|
+
* client bundle (exports["./client"]) and scans it into the boot graph.
|
|
5
|
+
* No host capabilities are contributed.
|
|
6
|
+
*
|
|
7
|
+
* @param {import('@deepseek-ai/cordis').Context} _ctx - host root context.
|
|
8
|
+
*/
|
|
9
|
+
export function apply(_ctx) {
|
|
10
|
+
// no host capabilities
|
|
11
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-plugin-session-console-sleepcat",
|
|
3
|
+
"version": "0.17.4",
|
|
4
|
+
"description": "DSH client UI plugin: a questions console for the current session (full history with jump-to-locate, per-question AI Q&A detail), and per-question collapse/expand of the model's working process.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./lib/index.js",
|
|
9
|
+
"./client": "./lib/client.js",
|
|
10
|
+
"./package.json": "./package.json"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"lib"
|
|
14
|
+
],
|
|
15
|
+
"dsh": {
|
|
16
|
+
"client": {
|
|
17
|
+
"inject": [
|
|
18
|
+
"@deepseek-ai/dsh-client-runtime"
|
|
19
|
+
],
|
|
20
|
+
"platform": "web",
|
|
21
|
+
"external": [
|
|
22
|
+
"@deepseek-ai/dsh-client-runtime/client"
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
28
|
+
"@deepseek-ai/dsh-client-runtime": "^0.1.1-rc.2"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"dsh",
|
|
32
|
+
"cordis",
|
|
33
|
+
"plugin",
|
|
34
|
+
"client",
|
|
35
|
+
"session",
|
|
36
|
+
"conversation"
|
|
37
|
+
],
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/luckycaoj/dsh-plugin-session-console-sleepcat.git"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/luckycaoj/dsh-plugin-session-console-sleepcat",
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
46
|
+
}
|
|
47
|
+
}
|