-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "dsh-plugin-response-window",
"version": "0.1.0",
"description": "DeepSeek Harness (DSH) web plugin: per-turn response window. Each turn's tool calls collapse into ONE always-expanded bounded slide (configurable N-line window, inner scroll, nothing hidden), and long assistant markdown gets a bounded scroll window too — Grok-build style, keeps every intermediate response visible inside a finite window.",
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-conversation",
"@deepseek-ai/dsh-client-ui-slots"
]
}
},
"files": [
"lib/index.js",
"lib/client.js",
"cordis.patch.yml",
"dsh.plugin.json",
"README.md",
"LICENSE"
],
"scripts": {
"check": "node --check lib/index.js && node --check lib/client.js"
},
"dependencies": {
"@deepseek-ai/schemastery": "^3.0.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/heiheiha798/dsh-plugin-response-window.git"
},
"homepage": "https://github.com/heiheiha798/dsh-plugin-response-window#readme",
"bugs": {
"url": "https://github.com/heiheiha798/dsh-plugin-response-window/issues"
},
"keywords": [
"dsh-plugin",
"deepseek-harness",
"dsh",
"response-window",
"tool-call",
"slide",
"web-ui"
]
}