forked from lanlandeli/dsh-usage-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.16 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "dsh-usage-stats",
"version": "0.1.12",
"description": "Lightweight usage analytics for DeepSeek Harness — token trends, activity heatmaps, model breakdowns, and exports.",
"author": "lanlandeli",
"repository": {
"type": "git",
"url": "git+https://github.com/lanlandeli/dsh-usage-stats.git"
},
"homepage": "https://github.com/lanlandeli/dsh-usage-stats#readme",
"bugs": {
"url": "https://github.com/lanlandeli/dsh-usage-stats/issues"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"files": [
"lib/**",
"cordis.patch.yml",
"README.md",
"README.en.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"PRIVACY.md",
"SECURITY.md",
"docs/COMPATIBILITY.md",
"assets/*.png",
"assets/*.gif",
"LICENSE"
],
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "npm run typecheck && npm run test && npm run build",
"pack:check": "node scripts/check-package.mjs",
"smoke:clean-profile": "node scripts/smoke-clean-profile.mjs",
"release:check": "npm run check && npm run pack:check",
"prepublishOnly": "npm run release:check"
},
"keywords": [
"deepseek",
"deepseek-harness",
"dsh",
"dsh-plugin",
"token-usage",
"data-visualization",
"analytics",
"usage-statistics"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": ">=4.0.1 <5",
"@deepseek-ai/dsh-client-runtime": ">=0.1.0-rc.6 <0.2.0",
"@deepseek-ai/dsh-client-ui-slots": ">=0.1.0-rc.6 <0.2.0",
"@deepseek-ai/dsh-host-webserver": ">=0.1.0-rc.6 <0.2.0",
"@deepseek-ai/dsh-session": ">=0.1.0-rc.6 <0.2.0",
"@deepseek-ai/dsh-session-query": ">=0.1.0-rc.6 <0.2.0",
"react": "^18.2.0"
},
"dependencies": {
"@deepseek-ai/dsh-home-paths": "^0.1.0-rc.6",
"@deepseek-ai/schemastery": "^3.18.1"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-layout": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-sidebar": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-slots": "^0.1.0-rc.6",
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.6",
"@deepseek-ai/dsh-host-webserver": "^0.1.0-rc.6",
"@deepseek-ai/dsh-session": "^0.1.0-rc.6",
"@deepseek-ai/dsh-session-query": "^0.1.0-rc.6",
"@types/node": "^22.20.0",
"@types/react": "~18.3.1",
"@types/react-dom": "~18.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-layout",
"@deepseek-ai/dsh-client-ui-sidebar"
],
"platform": "web"
}
}
}