-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.77 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
{
"name": "dsh-balance-tide",
"version": "0.4.0",
"description": "DeepSeek 余额 + 峰谷计价潮汐提示插件: 在 dsh Web UI 输入框下方显示账户余额、本会话估算消耗,并在余额前提示当前峰/谷价格档位、距下一次切换的倒计时与使用建议",
"repository": {
"type": "git",
"url": "git+https://github.com/huanyuLv/dsh-balance-tide.git"
},
"license": "MIT",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./client": "./client/client.js",
"./package.json": "./package.json"
},
"files": [
"src",
"client",
"cordis.patch.yml",
"README.md",
"README.zh.md"
],
"scripts": {
"test": "node --test"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-ui-conversation"
]
}
},
"dependencies": {
"@deepseek-ai/schemastery": "^3.18.1",
"zod": "^4.4.3"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.6"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": {
"optional": true
},
"@deepseek-ai/dsh-credentials": {
"optional": true
}
},
"author": "Lv Huan Yu",
"homepage": "https://github.com/huanyuLv/dsh-balance-tide#readme",
"bugs": {
"url": "https://github.com/huanyuLv/dsh-balance-tide/issues"
},
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"deepseek",
"balance",
"pricing",
"peak-off-peak",
"cost"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}