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/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
+ }