-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.37 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
61
{
"name": "dsh-scope",
"description": "Codex-style context visibility for DeepSeek Harness: live context-window occupancy, composition breakdown, KV-cache hit rate, and a GitHub-style 53-week usage heatmap",
"version": "0.1.0",
"type": "module",
"main": "lib/index.js",
"files": [
"lib",
"cordis.patch.yml",
"scripts",
"docs",
"README.md",
"README.zh.md",
"LICENSE"
],
"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-locale",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-conversation"
]
}
},
"scripts": {
"build": "tsdown",
"check": "tsdown"
},
"devDependencies": {
"tsdown": "^0.22.14"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-session": "^0.1.0-rc.6",
"react": "^18.2.0"
},
"keywords": [
"deepseek",
"deepseek-harness",
"dsh",
"dsh-plugin",
"context-window",
"token-usage",
"usage-heatmap"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/helloxkk/dsh-scope.git"
},
"author": "Ken Xiao <helloxkk@users.noreply.github.com>"
}