dsh-modellix 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/CHANGELOG.md +52 -0
- package/LICENSE +201 -0
- package/README.md +266 -0
- package/README.zh-CN.md +266 -0
- package/cordis.patch.yml +16 -0
- package/docs/assets/credential-recovery.webp +0 -0
- package/docs/assets/design-desktop.webp +0 -0
- package/docs/assets/design-mobile-en.webp +0 -0
- package/docs/assets/design-proposal.webp +0 -0
- package/docs/assets/design-results-media.webp +0 -0
- package/docs/assets/llm-model-selector.webp +0 -0
- package/docs/assets/onboarding-defaults.webp +0 -0
- package/docs/assets/settings-ready.webp +0 -0
- package/docs/assets/web-tools.webp +0 -0
- package/docs/en-US/LOCAL_USAGE.md +169 -0
- package/docs/en-US/USER_GUIDE.md +546 -0
- package/docs/zh-CN/LOCAL_USAGE.md +169 -0
- package/docs/zh-CN/USER_GUIDE.md +546 -0
- package/lib/client.d.ts +214 -0
- package/lib/client.js +3653 -0
- package/lib/client.js.map +1 -0
- package/lib/index.d.ts +1399 -0
- package/lib/index.js +8080 -0
- package/lib/index.js.map +1 -0
- package/package.json +167 -0
package/package.json
ADDED
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-modellix",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Modellix Design, LLM, and Web providers for DeepSeek Harness",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"deepseek-harness",
|
|
9
|
+
"dsh-plugin",
|
|
10
|
+
"modellix",
|
|
11
|
+
"llm",
|
|
12
|
+
"image-generation",
|
|
13
|
+
"video-generation"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/Modellix/dsh-modellix#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/Modellix/dsh-modellix/issues"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/Modellix/dsh-modellix.git"
|
|
22
|
+
},
|
|
23
|
+
"type": "module",
|
|
24
|
+
"main": "./lib/index.js",
|
|
25
|
+
"types": "./lib/index.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./lib/index.d.ts",
|
|
29
|
+
"default": "./lib/index.js"
|
|
30
|
+
},
|
|
31
|
+
"./client": {
|
|
32
|
+
"types": "./lib/client.d.ts",
|
|
33
|
+
"default": "./lib/client.js"
|
|
34
|
+
},
|
|
35
|
+
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
36
|
+
"./package.json": "./package.json"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"lib/**",
|
|
40
|
+
"cordis.patch.yml",
|
|
41
|
+
"README.md",
|
|
42
|
+
"README.zh-CN.md",
|
|
43
|
+
"docs/**",
|
|
44
|
+
"CHANGELOG.md",
|
|
45
|
+
"LICENSE"
|
|
46
|
+
],
|
|
47
|
+
"dsh": {
|
|
48
|
+
"bundle": {
|
|
49
|
+
"patch": "./cordis.patch.yml"
|
|
50
|
+
},
|
|
51
|
+
"client": {
|
|
52
|
+
"inject": [
|
|
53
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
54
|
+
"@deepseek-ai/dsh-client-connection",
|
|
55
|
+
"@deepseek-ai/dsh-client-locale",
|
|
56
|
+
"@deepseek-ai/dsh-client-ui-settings",
|
|
57
|
+
"@deepseek-ai/dsh-client-ui-conversation",
|
|
58
|
+
"@deepseek-ai/dsh-client-ui-input-trigger",
|
|
59
|
+
"@deepseek-ai/dsh-client-ui-tool",
|
|
60
|
+
"@deepseek-ai/dsh-client-ui-layout",
|
|
61
|
+
"@deepseek-ai/dsh-api-remotes"
|
|
62
|
+
],
|
|
63
|
+
"platform": "web"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": "^22.19.0 || >=24.0.0",
|
|
68
|
+
"pnpm": "11.24.0"
|
|
69
|
+
},
|
|
70
|
+
"devEngines": {
|
|
71
|
+
"runtime": {
|
|
72
|
+
"name": "node",
|
|
73
|
+
"version": "24.18.1",
|
|
74
|
+
"onFail": "error"
|
|
75
|
+
},
|
|
76
|
+
"packageManager": {
|
|
77
|
+
"name": "pnpm",
|
|
78
|
+
"version": "11.24.0",
|
|
79
|
+
"onFail": "error"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"dependencies": {
|
|
83
|
+
"@deepseek-ai/schemastery": "3.18.1",
|
|
84
|
+
"zod": "4.4.3"
|
|
85
|
+
},
|
|
86
|
+
"peerDependencies": {
|
|
87
|
+
"@deepseek-ai/cordis": "4.0.1",
|
|
88
|
+
"@deepseek-ai/dsh-anonymous-user-id": "0.1.1-rc.2",
|
|
89
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.1-rc.2",
|
|
90
|
+
"@deepseek-ai/dsh-client-connection": "0.1.1-rc.2",
|
|
91
|
+
"@deepseek-ai/dsh-client-locale": "0.1.1-rc.2",
|
|
92
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.1-rc.2",
|
|
93
|
+
"@deepseek-ai/dsh-client-ui-conversation": "0.1.1-rc.2",
|
|
94
|
+
"@deepseek-ai/dsh-client-ui-input-trigger": "0.1.1-rc.2",
|
|
95
|
+
"@deepseek-ai/dsh-client-ui-layout": "0.1.1-rc.2",
|
|
96
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.1-rc.2",
|
|
97
|
+
"@deepseek-ai/dsh-client-ui-tool": "0.1.1-rc.2",
|
|
98
|
+
"@deepseek-ai/dsh-credentials": "0.1.1-rc.2",
|
|
99
|
+
"@deepseek-ai/dsh-host-apiproxy": "0.1.1-rc.2",
|
|
100
|
+
"@deepseek-ai/dsh-invariants": "0.1.1-rc.2",
|
|
101
|
+
"@deepseek-ai/dsh-llm": "0.1.1-rc.2",
|
|
102
|
+
"@deepseek-ai/dsh-llm-pi-ai": "0.1.1-rc.2",
|
|
103
|
+
"@deepseek-ai/dsh-settings": "0.1.1-rc.2",
|
|
104
|
+
"@deepseek-ai/dsh-storage": "0.1.1-rc.2",
|
|
105
|
+
"@deepseek-ai/dsh-storage-domain": "0.1.1-rc.2",
|
|
106
|
+
"@deepseek-ai/dsh-tools": "0.1.1-rc.2",
|
|
107
|
+
"@deepseek-ai/dsh-web": "0.1.1-rc.2"
|
|
108
|
+
},
|
|
109
|
+
"devDependencies": {
|
|
110
|
+
"@deepseek-ai/cordis": "4.0.1",
|
|
111
|
+
"@deepseek-ai/dsh-anonymous-user-id": "0.1.1-rc.2",
|
|
112
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.1-rc.2",
|
|
113
|
+
"@deepseek-ai/dsh-client-connection": "0.1.1-rc.2",
|
|
114
|
+
"@deepseek-ai/dsh-client-locale": "0.1.1-rc.2",
|
|
115
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.1-rc.2",
|
|
116
|
+
"@deepseek-ai/dsh-client-ui-conversation": "0.1.1-rc.2",
|
|
117
|
+
"@deepseek-ai/dsh-client-ui-input-trigger": "0.1.1-rc.2",
|
|
118
|
+
"@deepseek-ai/dsh-client-ui-layout": "0.1.1-rc.2",
|
|
119
|
+
"@deepseek-ai/dsh-client-ui-primitives": "0.1.1-rc.2",
|
|
120
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.1-rc.2",
|
|
121
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.1-rc.2",
|
|
122
|
+
"@deepseek-ai/dsh-client-ui-tool": "0.1.1-rc.2",
|
|
123
|
+
"@deepseek-ai/dsh-credentials": "0.1.1-rc.2",
|
|
124
|
+
"@deepseek-ai/dsh-host-apiproxy": "0.1.1-rc.2",
|
|
125
|
+
"@deepseek-ai/dsh-invariants": "0.1.1-rc.2",
|
|
126
|
+
"@deepseek-ai/dsh-llm": "0.1.1-rc.2",
|
|
127
|
+
"@deepseek-ai/dsh-llm-pi-ai": "0.1.1-rc.2",
|
|
128
|
+
"@deepseek-ai/dsh-settings": "0.1.1-rc.2",
|
|
129
|
+
"@deepseek-ai/dsh-storage": "0.1.1-rc.2",
|
|
130
|
+
"@deepseek-ai/dsh-storage-domain": "0.1.1-rc.2",
|
|
131
|
+
"@deepseek-ai/dsh-tools": "0.1.1-rc.2",
|
|
132
|
+
"@deepseek-ai/dsh-web": "0.1.1-rc.2",
|
|
133
|
+
"@testing-library/dom": "10.4.1",
|
|
134
|
+
"@testing-library/react": "16.3.2",
|
|
135
|
+
"@testing-library/user-event": "14.6.6",
|
|
136
|
+
"@types/node": "22.20.0",
|
|
137
|
+
"@types/react": "18.3.1",
|
|
138
|
+
"@types/react-dom": "18.3.7",
|
|
139
|
+
"@vitest/coverage-v8": "4.1.8",
|
|
140
|
+
"jsdom": "30.0.1",
|
|
141
|
+
"mdast-util-from-markdown": "2.0.3",
|
|
142
|
+
"oxlint": "1.76.0",
|
|
143
|
+
"react": "18.3.1",
|
|
144
|
+
"react-dom": "18.3.1",
|
|
145
|
+
"sharp": "0.35.3",
|
|
146
|
+
"tsdown": "0.22.2",
|
|
147
|
+
"typescript": "6.0.3",
|
|
148
|
+
"vitest": "4.1.8"
|
|
149
|
+
},
|
|
150
|
+
"scripts": {
|
|
151
|
+
"verify:env": "node scripts/verify-env.mjs",
|
|
152
|
+
"typecheck": "tsc -p tsconfig.host.json --noEmit && tsc -p tsconfig.client.json --noEmit",
|
|
153
|
+
"lint": "oxlint .",
|
|
154
|
+
"test": "vitest run",
|
|
155
|
+
"test:real:modellix": "pnpm run build && node scripts/run-real-modellix-e2e.mjs",
|
|
156
|
+
"test:coverage": "vitest run --coverage && node scripts/verify-critical-coverage.mjs",
|
|
157
|
+
"build:host": "tsdown --env.DSH_BUILD_FACE host",
|
|
158
|
+
"build:client": "tsdown --env.DSH_BUILD_FACE client",
|
|
159
|
+
"build": "pnpm run build:host && pnpm run build:client",
|
|
160
|
+
"verify:pack": "pnpm run build && node scripts/verify-pack.mjs",
|
|
161
|
+
"verify:fresh-install": "node scripts/verify-fresh-install.mjs",
|
|
162
|
+
"verify:node22-install": "node scripts/verify-node22-install.mjs",
|
|
163
|
+
"check": "pnpm run verify:env && pnpm run typecheck && pnpm run lint && pnpm run test:coverage",
|
|
164
|
+
"verify:release:static": "pnpm run check && pnpm audit --prod --audit-level=high && pnpm run verify:pack && pnpm run verify:fresh-install && pnpm run verify:node22-install",
|
|
165
|
+
"verify:release": "node scripts/verify-release-evidence.mjs && pnpm run verify:release:static"
|
|
166
|
+
}
|
|
167
|
+
}
|