dsh-usage-mini 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js ADDED
@@ -0,0 +1,4 @@
1
+ /** Host loader entry for the browser-only usage mini-window plugin. */
2
+ /** Provides no host-side behavior. */
3
+ function apply() {}
4
+ export { apply };
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "dsh-usage-mini",
3
+ "version": "0.2.2",
4
+ "type": "module",
5
+ "main": "lib/index.js",
6
+ "exports": {
7
+ ".": "./lib/index.js",
8
+ "./client": "./lib/client.js",
9
+ "./package.json": "./package.json"
10
+ },
11
+ "engines": {
12
+ "node": "22.23.2"
13
+ },
14
+ "os": [
15
+ "win32"
16
+ ],
17
+ "dsh": {
18
+ "bundle": {
19
+ "patch": "./cordis.patch.yml"
20
+ },
21
+ "client": {
22
+ "platform": "web",
23
+ "inject": []
24
+ },
25
+ "compatibility": {
26
+ "dshReleases": {
27
+ "0.1.1-rc.2": "unknown",
28
+ "0.1.2-alpha.4": "unknown",
29
+ "0.1.2-alpha.5": "unknown",
30
+ "0.1.2-rc.1": "compatible"
31
+ },
32
+ "profiles": [
33
+ "web"
34
+ ]
35
+ }
36
+ },
37
+ "description": "USEAGE WINDOW: a tiny DeepSeek Harness usage dashboard. Currently supports Claude and Codex subscriptions, plus DeepSeek API only.",
38
+ "license": "MIT",
39
+ "author": "teethyachi",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/teethyachi/dsh-usage-mini.git"
43
+ },
44
+ "homepage": "https://github.com/teethyachi/dsh-usage-mini",
45
+ "keywords": [
46
+ "deepseek-harness",
47
+ "dsh-plugin",
48
+ "usage-monitor",
49
+ "claude",
50
+ "codex",
51
+ "deepseek-api"
52
+ ],
53
+ "files": [
54
+ "lib",
55
+ "cordis.patch.yml",
56
+ "README.md",
57
+ "README.zh-CN.md",
58
+ "LICENSE"
59
+ ],
60
+ "scripts": {
61
+ "test": "node --test tests/*.test.mjs"
62
+ }
63
+ }