dsh-server-dashboard 0.1.0

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/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "dsh-server-dashboard",
3
+ "version": "0.1.0",
4
+ "description": "DSH 远程服务器看板:SSH 展示 GPU/CPU/内存/磁盘状态、占用进程与训练日志曲线",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "exports": {
9
+ ".": "./dist/index.js",
10
+ "./client": "./dist/client.js",
11
+ "./package.json": "./package.json"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "cordis.patch.yml"
16
+ ],
17
+ "dsh": {
18
+ "bundle": {
19
+ "patch": "./cordis.patch.yml"
20
+ },
21
+ "client": {
22
+ "platform": "web",
23
+ "inject": [
24
+ "@deepseek-ai/dsh-cordis-client-runner",
25
+ "@deepseek-ai/dsh-client-ui-sidebar-right",
26
+ "@deepseek-ai/dsh-client-locale",
27
+ "@deepseek-ai/dsh-client-ui-slots"
28
+ ]
29
+ }
30
+ },
31
+ "scripts": {
32
+ "build": "tsc -p tsconfig.json && tsdown && node scripts/wrap-client.mjs",
33
+ "typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.client.json --noEmit",
34
+ "typecheck:client": "tsc -p tsconfig.client.json --noEmit"
35
+ },
36
+ "dependencies": {
37
+ "ssh2": "^1.17.0"
38
+ },
39
+ "peerDependencies": {
40
+ "@deepseek-ai/cordis": "^4.0.2",
41
+ "@deepseek-ai/dsh-credentials": "^0.1.5-rc.2",
42
+ "@deepseek-ai/dsh-host-webserver": "^0.1.5-rc.2",
43
+ "@deepseek-ai/dsh-settings": "^0.1.5-rc.2",
44
+ "schemastery": "^3.18.0"
45
+ },
46
+ "devDependencies": {
47
+ "@deepseek-ai/cordis": "4.0.2",
48
+ "@deepseek-ai/dsh-credentials": "0.1.5-rc.2",
49
+ "@deepseek-ai/dsh-host-webserver": "0.1.5-rc.2",
50
+ "@deepseek-ai/dsh-settings": "0.1.5-rc.2",
51
+ "@types/node": "^22.10.0",
52
+ "@types/react": "^18.3.0",
53
+ "@types/react-dom": "^18.3.0",
54
+ "@types/ssh2": "^1.15.5",
55
+ "puppeteer-core": "^25.7.0",
56
+ "schemastery": "^3.18.0",
57
+ "tsdown": "^0.22.14",
58
+ "typescript": "^5.6.0"
59
+ },
60
+ "engines": {
61
+ "node": ">=20"
62
+ },
63
+ "keywords": [
64
+ "dsh",
65
+ "deepseek-harness",
66
+ "dsh-plugin",
67
+ "gpu-monitoring",
68
+ "ssh",
69
+ "nvidia-smi",
70
+ "training-monitor",
71
+ "dashboard"
72
+ ],
73
+ "author": "smileliu <65989975+smilewhenever777@users.noreply.github.com>",
74
+ "repository": {
75
+ "type": "git",
76
+ "url": "git+https://github.com/smilewhenever777/dsh-server-dashboard.git"
77
+ }
78
+ }