-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "ui-dashboard",
"version": "0.10.0",
"description": "DSH 右侧仪表盘 UI 插件:上下文占用(三色圆环)、Token 用量与人民币费用估算、会话统计、目标、待办、后台任务、工作区;支持右侧栏(details 槽位)与会话标签页(conversation.view)两种形态。",
"keywords": [
"deepseek-harness",
"dsh",
"plugin",
"ui",
"dashboard"
],
"private": true,
"type": "module",
"main": "lib/index.js",
"exports": {
".": {
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./bundle.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-layout",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-connection",
"@deepseek-ai/dsh-client-ui-conversation"
]
}
},
"files": [
"lib",
"src",
"scripts",
"README.md"
],
"scripts": {
"build": "node build-client.js",
"prepare": "node build-client.js",
"install:dsh": "node scripts/install.mjs"
},
"license": "MIT",
"engines": {
"node": ">=18"
}
}