-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.33 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
{
"name": "@zenmux/dsh-plugins",
"description": "Use ZenMux models in DeepSeek Harness with OAuth login, model search, and protocol-aware routing",
"version": "0.1.15",
"private": false,
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@11.19.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZenMux/dsh-plugins.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./invariant": {
"types": "./lib/invariant.d.ts",
"default": "./lib/invariant.js"
},
"./client": {
"types": "./lib/client.d.ts",
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"files": [
"cordis.patch.yml",
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('lib', { recursive: true, force: true })\"",
"build": "tsc -p tsconfig.json && tsdown",
"sync:models": "node scripts/sync-zenmux-models.mjs",
"check:models": "node scripts/sync-zenmux-models.mjs --check",
"test": "pnpm run build && vitest run",
"prepack": "pnpm run clean && pnpm run build"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-model-selection",
"@deepseek-ai/dsh-client-ui-commands",
"@deepseek-ai/dsh-client-ui-conversation"
],
"platform": "web"
}
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-commands": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-model-selection": "^0.1.0-rc.6",
"@deepseek-ai/dsh-commands": "^0.1.0-rc.6",
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.6",
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
"@deepseek-ai/dsh-timeout": "^0.1.0-rc.6",
"react": "^18.2.0"
},
"dependencies": {
"@deepseek-ai/schemastery": "^3.18.1",
"https-proxy-agent": "^9.1.0",
"socks-proxy-agent": "^10.1.0"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/cordis-plugin-include": "^1.0.6",
"@deepseek-ai/cordis-plugin-loader": "^1.0.2",
"@deepseek-ai/dsh-agent": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-commands": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-model-selection": "^0.1.0-rc.6",
"@deepseek-ai/dsh-commands": "^0.1.0-rc.6",
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.6",
"@deepseek-ai/dsh-credentials-local": "^0.1.0-rc.6",
"@deepseek-ai/dsh-host-webserver": "^0.1.0-rc.6",
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
"@deepseek-ai/dsh-session": "^0.1.0-rc.6",
"@deepseek-ai/dsh-timeout": "^0.1.0-rc.6",
"@types/node": "^24.10.0",
"@types/react": "~18.3.1",
"publint": "^0.3.23",
"react": "^18.2.0",
"tsdown": "^0.15.4",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
}
}