-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.61 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
{
"name": "commandcode-dash",
"version": "0.1.5",
"description": "Unofficial DeepSeek Harness settings panel for Command Code: credits, usage windows, and model-catalog sync.",
"type": "module",
"license": "MIT",
"keywords": [
"dsh",
"deepseek-harness",
"deepseek",
"command-code",
"plugin",
"settings",
"credits",
"usage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Momonaka/commandcode-dash.git"
},
"bugs": {
"url": "https://github.com/Momonaka/commandcode-dash/issues"
},
"homepage": "https://github.com/Momonaka/commandcode-dash#readme",
"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-ui-settings"
]
}
},
"scripts": {
"test": "node test/manifest.mjs && node test/sync-logic.mjs && node test/render.mjs && SCENARIO=fresh node test/render.mjs && SCENARIO=write-fails node test/render.mjs && SCENARIO=migrate node test/render.mjs && SCENARIO=no-key node test/render.mjs && SCENARIO=auth node test/render.mjs && node test/signout.mjs && SCENARIO=fresh node test/signout.mjs && SCENARIO=refused node test/signout.mjs && node test/remount.mjs && SCENARIO=error node test/remount.mjs",
"test:live": "node test/host-routes.mjs"
},
"files": [
"lib/index.js",
"lib/client.js",
"cordis.patch.yml",
"README.md",
"README.zh.md",
"LICENSE"
],
"engines": {
"node": ">=20"
}
}