-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.22 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
{
"name": "dsh-token-cost",
"version": "0.1.0",
"description": "DSH plugin: per-project LLM token usage and RMB cost (input / cache-hit / output) based on model standard prices.",
"type": "module",
"main": "lib/index.js",
"exports": {
".": {
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"dsh.plugin.json",
"README.md",
"README.zh.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gdy01/dsh-token-cost.git"
},
"bugs": {
"url": "https://github.com/gdy01/dsh-token-cost/issues"
},
"homepage": "https://github.com/gdy01/dsh-token-cost#readme",
"author": "gdy01",
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [],
"immediately": false
}
},
"scripts": {
"test": "node tests/smoke.mjs && node tests/client-syntax.mjs"
},
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"token",
"cost",
"usage",
"billing",
"人民币"
],
"license": "MIT"
}