-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.55 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "dsh-llm-fallbacks",
"description": "Automatic provider/model fallback chains for DeepSeek Harness agents when LLM requests keep failing (retry exhausted, auth, quota, rate limit)",
"keywords": [
"dsh",
"dsh-plugin"
],
"version": "0.4.1",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./bundle/cordis.patch.yml": "./bundle/cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"dist",
"bundle",
"scripts"
],
"dsh": {
"bundle": {
"patch": "./bundle/cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-ui-settings-plugins",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-ui-conversation",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-connection",
"@deepseek-ai/dsh-api-remotes"
],
"platform": "web"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json && tsdown && pnpm run build-client && tsc && node scripts/verify-dist.mjs",
"build-client": "tsx scripts/build-client.ts",
"release:prepare": "tsx scripts/prepare-release.ts",
"release:validate": "tsx scripts/validate-release-version.ts",
"repair:fallbacks-switch-logs": "tsx scripts/repair-fallbacks-switch-logs.ts",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.build.json --noEmit && tsc --noEmit",
"prepare": "pnpm run build"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"use-sync-external-store": "^1.6.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.2",
"@deepseek-ai/dsh-agent": "^0.1.2-rc.1",
"@deepseek-ai/dsh-api-gateway": "^0.1.2-rc.1",
"@deepseek-ai/dsh-api-remotes": "^0.1.2-rc.1",
"@deepseek-ai/dsh-api-session-controller": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-connection": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-locale": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-store": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-chat": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-settings": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-slots": "^0.1.2-rc.1",
"@deepseek-ai/dsh-commands": "^0.1.2-rc.1",
"@deepseek-ai/dsh-llm": "^0.1.2-rc.1",
"@deepseek-ai/dsh-llm-retry": "^0.1.2-rc.1",
"@deepseek-ai/dsh-session": "^0.1.2-rc.1",
"@deepseek-ai/dsh-settings": "^0.1.2-rc.1",
"@deepseek-ai/dsh-tool-subagent": "^0.1.2-rc.1",
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-rc.1",
"@deepseek-ai/dsh-typert-registry": "^0.1.2-rc.1",
"@deepseek-ai/schemastery": "^3.18.2",
"react": "^18.2.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.20.0",
"@types/react": "~18.3.31",
"@types/react-dom": "~18.3.7",
"@types/use-sync-external-store": "^1.5.0",
"jsdom": "29.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsdown": "^0.22.2",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"repository": {
"type": "git",
"url": "https://github.com/omdsh-dev/dsh-llm-fallbacks.git"
}
}