-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.52 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
{
"name": "dsh-fleet",
"version": "0.1.0",
"description": "⚡ DSH 多机算力组网:把朋友间、局域网、云上 ECS 的闲置算力汇聚成分布式 AI 算力池,一台机调用整个团队任意一台机的算力,任务派发、agent 执行、结果回流与会话保留。一个人掌控多台 Harness,并行推进多个开发与研究项目。",
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"distributed-computing",
"cluster",
"compute-fleet",
"multi-machine",
"agent"
],
"author": {
"name": "SnowDu",
"email": "3292957@qq.com",
"url": "https://github.com/scriptsnet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scriptsnet/dsh-fleet.git"
},
"bugs": {
"url": "https://github.com/scriptsnet/dsh-fleet/issues"
},
"homepage": "https://github.com/scriptsnet/dsh-fleet#readme",
"type": "module",
"main": "./src/plugin.js",
"exports": {
".": "./src/plugin.js",
"./client": "./src/client.js",
"./package.json": "./package.json"
},
"bin": {
"dsh-fleet": "./bin/dsh-fleet.js"
},
"files": [
"src",
"bin",
"installer",
"docs",
"cordis.patch.yml",
"README.md"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"slots"
],
"platform": "web"
}
},
"engines": {
"node": ">=18"
},
"scripts": {
"demo": "node scripts/demo.js",
"test": "node scripts/test-plugin.js"
},
"license": "MIT"
}