-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.17 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
{
"name": "@samecorner/dsh-client-ui-token-usage",
"description": "Token usage analytics tab for the dsh web GUI: whole-log projections plus a per-turn/per-step breakdown",
"version": "0.1.3",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"exports": {
".": {
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./bundle.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-conversation"
],
"platform": "web"
}
},
"files": [
"lib/index.js",
"lib/client.js",
"bundle.patch.yml",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samecorner/dsh-token-usage.git"
},
"homepage": "https://github.com/samecorner/dsh-token-usage",
"bugs": {
"url": "https://github.com/samecorner/dsh-token-usage/issues"
},
"keywords": [
"dsh",
"deepseek-harness",
"plugin",
"token-usage",
"web-ui"
],
"scripts": {
"build": "node build.mjs",
"typecheck": "tsc --noEmit",
"prepack": "npm run build",
"test": "node scripts/smoke-loader.mjs && node scripts/render-test.mjs && node scripts/.tmp/render-test.bundle.mjs"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-client-locale": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-conversation": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6",
"@deepseek-ai/dsh-client-web-react": "0.1.0-rc.6",
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
"@deepseek-ai/dsh-session-projection": "0.1.0-rc.6",
"@deepseek-ai/dsh-session-stats": "0.1.0-rc.6",
"@deepseek-ai/dsh-token-meter": "0.1.0-rc.6",
"@types/react": "~18.3.1",
"@types/react-dom": "~18.3.0",
"esbuild": "^0.25.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.5.0"
}
}