-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "dsh-tier-router",
"version": "0.5.0",
"type": "module",
"description": "Tiered model routing for DeepSeek Harness (+ fallback chains + task-intensity effort): a strong tier for planning/architecture/review, a cheap tier for implementation, with plan-mode-aware auto routing, per-tier model fallback chains, task-intensity reasoning effort selection, advisor/review consultations, a high-impact escalation guard, failure auto-escalation, durable tier configuration, and subagent tiering.",
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"model-routing",
"tiered-routing",
"advisor"
],
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./client/client.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"client",
"cordis.patch.yml",
"agent-presets",
"CHANGELOG.md"
],
"scripts": {
"test": "node --test \"tests/**/*.test.mjs\"",
"check": "node --check lib/index.js && node --check lib/pure.js && node --check lib/preset-sync.js"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-connection",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-settings"
],
"platform": "web"
}
},
"engines": {
"node": "^22.19 || >=24"
},
"license": "MIT",
"devDependencies": {
"@deepseek-ai/dsh-tools": "0.1.0-rc.8",
"@deepseek-ai/schemastery": "3.18.1"
}
}