dsh-daruma 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/LICENSE +21 -0
- package/README.md +56 -0
- package/cordis.patch.yml +24 -0
- package/lib/client/BackupPanel.d.ts +16 -0
- package/lib/client/BackupPanel.js +132 -0
- package/lib/client/BackupPanel.js.map +1 -0
- package/lib/client/StatusDock.d.ts +12 -0
- package/lib/client/StatusDock.js +67 -0
- package/lib/client/StatusDock.js.map +1 -0
- package/lib/client/api.d.ts +47 -0
- package/lib/client/api.js +24 -0
- package/lib/client/api.js.map +1 -0
- package/lib/client/index.d.ts +27 -0
- package/lib/client/index.js +43 -0
- package/lib/client/index.js.map +1 -0
- package/lib/client/locales.d.ts +53 -0
- package/lib/client/locales.js +54 -0
- package/lib/client/locales.js.map +1 -0
- package/lib/client.js +497 -0
- package/lib/client.js.map +1 -0
- package/lib/config.d.ts +20 -0
- package/lib/config.js +25 -0
- package/lib/config.js.map +1 -0
- package/lib/engine.d.ts +40 -0
- package/lib/engine.js +80 -0
- package/lib/engine.js.map +1 -0
- package/lib/index.d.ts +35 -0
- package/lib/index.js +76 -0
- package/lib/index.js.map +1 -0
- package/lib/mapping.d.ts +17 -0
- package/lib/mapping.js +43 -0
- package/lib/mapping.js.map +1 -0
- package/lib/rpc.d.ts +29 -0
- package/lib/rpc.js +122 -0
- package/lib/rpc.js.map +1 -0
- package/lib/status.d.ts +46 -0
- package/lib/status.js +49 -0
- package/lib/status.js.map +1 -0
- package/lib/store.d.ts +17 -0
- package/lib/store.js +54 -0
- package/lib/store.js.map +1 -0
- package/package.json +92 -0
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-daruma",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Daruma resilience plugin for DeepSeek Harness — detects model-request failures and fails over to another channel to keep long tasks alive.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "SISCHOI",
|
|
8
|
+
"main": "lib/index.js",
|
|
9
|
+
"types": "lib/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./lib/index.d.ts",
|
|
13
|
+
"default": "./lib/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./client": "./lib/client.js",
|
|
16
|
+
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
17
|
+
"./package.json": "./package.json"
|
|
18
|
+
},
|
|
19
|
+
"dsh": {
|
|
20
|
+
"bundle": {
|
|
21
|
+
"patch": "./cordis.patch.yml"
|
|
22
|
+
},
|
|
23
|
+
"client": {
|
|
24
|
+
"inject": [
|
|
25
|
+
"@deepseek-ai/dsh-client-connection",
|
|
26
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
27
|
+
"@deepseek-ai/dsh-client-ui-conversation",
|
|
28
|
+
"@deepseek-ai/dsh-client-ui-primitives"
|
|
29
|
+
],
|
|
30
|
+
"platform": "web"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"lib",
|
|
35
|
+
"cordis.patch.yml"
|
|
36
|
+
],
|
|
37
|
+
"sideEffects": false,
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=22.0.0"
|
|
40
|
+
},
|
|
41
|
+
"keywords": [
|
|
42
|
+
"deepseek-harness",
|
|
43
|
+
"dsh",
|
|
44
|
+
"dsh-plugin",
|
|
45
|
+
"daruma",
|
|
46
|
+
"failover",
|
|
47
|
+
"resilience"
|
|
48
|
+
],
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "git+https://github.com/SISCHOI/daruma.git",
|
|
52
|
+
"directory": "packages/dsh-daruma"
|
|
53
|
+
},
|
|
54
|
+
"homepage": "https://github.com/SISCHOI/daruma#readme",
|
|
55
|
+
"bugs": {
|
|
56
|
+
"url": "https://github.com/SISCHOI/daruma/issues"
|
|
57
|
+
},
|
|
58
|
+
"peerDependencies": {
|
|
59
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
60
|
+
"@deepseek-ai/dsh-agent": "^0.1.0-rc.7",
|
|
61
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.7",
|
|
62
|
+
"@deepseek-ai/dsh-session": "^0.1.0-rc.7",
|
|
63
|
+
"@deepseek-ai/dsh-settings": "^0.1.0-rc.7",
|
|
64
|
+
"@deepseek-ai/schemastery": "^3.18.1"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"daruma-core": "^0.1.0"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
71
|
+
"@deepseek-ai/dsh-agent": "^0.1.0-rc.7",
|
|
72
|
+
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.0-rc.6",
|
|
73
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.7",
|
|
74
|
+
"@deepseek-ai/dsh-session": "^0.1.0-rc.7",
|
|
75
|
+
"@deepseek-ai/dsh-settings": "^0.1.0-rc.7",
|
|
76
|
+
"@deepseek-ai/schemastery": "^3.18.1",
|
|
77
|
+
"@types/node": "^24.0.0",
|
|
78
|
+
"@types/react": "^18.3.1",
|
|
79
|
+
"@types/react-dom": "^18.3.1",
|
|
80
|
+
"lightningcss": "^1.32.0",
|
|
81
|
+
"react": "^18.3.1",
|
|
82
|
+
"react-dom": "^18.3.1",
|
|
83
|
+
"tsdown": "^0.22.0",
|
|
84
|
+
"typescript": "^5.7.0",
|
|
85
|
+
"vitest": "^3.0.0"
|
|
86
|
+
},
|
|
87
|
+
"scripts": {
|
|
88
|
+
"build": "tsc -p tsconfig.build.json && tsdown",
|
|
89
|
+
"typecheck": "tsc --noEmit",
|
|
90
|
+
"test": "vitest run --passWithNoTests"
|
|
91
|
+
}
|
|
92
|
+
}
|