-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.44 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
62
63
64
65
66
67
{
"name": "dsh-usage-mini",
"version": "0.2.3",
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"engines": {
"node": "22.23.2"
},
"os": [
"win32"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": []
},
"compatibility": {
"dshReleases": {
"0.1.1-rc.2": "unknown",
"0.1.2-alpha.4": "unknown",
"0.1.2-alpha.5": "unknown",
"0.1.2-rc.1": "compatible"
},
"profiles": [
"web"
]
}
},
"description": "USEAGE WINDOW: a tiny DeepSeek Harness usage dashboard. Currently supports Claude and Codex subscriptions, plus DeepSeek API only.",
"license": "MIT",
"author": "teethyachi",
"repository": {
"type": "git",
"url": "https://github.com/teethyachi/dsh-usage-mini.git"
},
"homepage": "https://github.com/teethyachi/dsh-usage-mini",
"keywords": [
"deepseek-harness",
"dsh-plugin",
"usage-monitor",
"claude",
"codex",
"deepseek-api"
],
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"README.zh-CN.md",
"LICENSE",
"docs/promo.png",
"docs/store-evidence.md",
"docs/blog-zh.md"
],
"scripts": {
"test": "node --test tests/*.test.mjs",
"test:browser": "node scripts/browser-regression.cjs"
}
}