dsh-codex-subscription 1.1.4 → 1.1.5
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/AGENTS.md +7 -7
- package/README.en.md +11 -11
- package/README.md +11 -11
- package/compatibility.json +9 -0
- package/lib/index.js +16 -7
- package/package.json +40 -40
package/AGENTS.md
CHANGED
|
@@ -6,7 +6,7 @@ Use this guide when a user asks an Agent to install, update, verify, or remove
|
|
|
6
6
|
## Safety
|
|
7
7
|
|
|
8
8
|
- Confirm the target DSH installation and profile. Use `web` only when it is the user's target.
|
|
9
|
-
- Use the exact `1.1.
|
|
9
|
+
- Use the exact `1.1.5` package below; do not install a moving branch.
|
|
10
10
|
- Never print OAuth credentials, account IDs, authorization callbacks, or credential-store contents.
|
|
11
11
|
- Preserve the DSH profile, unrelated plugins, sessions, and saved sign-in.
|
|
12
12
|
- Do not start, stop, or restart DSH without explicit permission.
|
|
@@ -38,19 +38,19 @@ For an official DSH installation run through npm, keep the complete `npx` prefix
|
|
|
38
38
|
run command does not create a global `dsh` command:
|
|
39
39
|
|
|
40
40
|
```sh
|
|
41
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
41
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web add dsh-codex-subscription@1.1.5
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
With an existing global `dsh` command:
|
|
45
45
|
|
|
46
46
|
```sh
|
|
47
|
-
dsh plugin --profile web add dsh-codex-subscription@1.1.
|
|
47
|
+
dsh plugin --profile web add dsh-codex-subscription@1.1.5
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
From a DSH-Portable folder:
|
|
51
51
|
|
|
52
52
|
```powershell
|
|
53
|
-
.\dsh.exe plugin --profile web add dsh-codex-subscription@1.1.
|
|
53
|
+
.\dsh.exe plugin --profile web add dsh-codex-subscription@1.1.5
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
Use the same `add` command to update or repair. This is the complete package-changing operation.
|
|
@@ -68,9 +68,9 @@ dsh --profile web --dump-config
|
|
|
68
68
|
|
|
69
69
|
For DSH-Portable, replace `dsh` with `.\dsh.exe`. Static acceptance requires:
|
|
70
70
|
|
|
71
|
-
For the official npm route, run the same checks with `npx -y @deepseek-ai/dsh@0.1.
|
|
71
|
+
For the official npm route, run the same checks with `npx -y @deepseek-ai/dsh@0.1.1-rc.1` in place of `dsh`.
|
|
72
72
|
|
|
73
|
-
1. `dsh-codex-subscription` version `1.1.
|
|
73
|
+
1. `dsh-codex-subscription` version `1.1.5` appears exactly once.
|
|
74
74
|
2. `codex-subscription` appears exactly once in the composed config.
|
|
75
75
|
3. No unrelated plugin or profile was changed and DSH was not restarted.
|
|
76
76
|
|
|
@@ -94,7 +94,7 @@ For DSH-Portable:
|
|
|
94
94
|
For the official npm route:
|
|
95
95
|
|
|
96
96
|
```sh
|
|
97
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
97
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web remove dsh-codex-subscription
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
Uninstall removes only this plugin. It must preserve the profile, sessions, other plugins, and saved
|
package/README.en.md
CHANGED
|
@@ -47,7 +47,7 @@ These capabilities reuse the same local ChatGPT sign-in. Subscription routing fa
|
|
|
47
47
|
|
|
48
48
|
## Prepare DSH
|
|
49
49
|
|
|
50
|
-
This plugin is currently compatible through DeepSeek Harness `0.1.
|
|
50
|
+
This plugin is currently compatible through DeepSeek Harness `0.1.1-rc.1` and requires a ChatGPT account that currently has Codex access.
|
|
51
51
|
|
|
52
52
|
- Do not want to configure Node.js? Use the [community DSH-Portable package](https://github.com/WSL043/DSH-Portable).
|
|
53
53
|
- Prefer the official route? Follow the [DeepSeek Harness run guide](https://github.com/deepseek-ai/deepseek-harness#run).
|
|
@@ -74,11 +74,11 @@ Open PowerShell and paste this one line:
|
|
|
74
74
|
irm 'https://github.com/WSL043/dsh-codex-subscription/releases/latest/download/dsh-codex-setup.ps1' | iex
|
|
75
75
|
```
|
|
76
76
|
|
|
77
|
-
The lightweight setup checks the current folder, the system command, common locations, and any running
|
|
77
|
+
The lightweight setup checks the current folder, the system command, common locations, and any running official DSH or
|
|
78
78
|
[DSH-Portable](https://github.com/WSL043/DSH-Portable), then invokes the official `plugin add`
|
|
79
79
|
operation once. It does not recursively scan disks, install pnpm, create a resident command, snapshot a
|
|
80
80
|
profile, or download the plugin twice. It needs no administrator access and never restarts DSH. Only
|
|
81
|
-
when no existing DSH is found does it use the official npm route pinned to `0.1.
|
|
81
|
+
when no existing DSH is found does it use the official npm route pinned to `0.1.1-rc.1`; the setup warns
|
|
82
82
|
that first-time dependency resolution can take a while.
|
|
83
83
|
|
|
84
84
|
<details>
|
|
@@ -87,9 +87,9 @@ that first-time dependency resolution can take a while.
|
|
|
87
87
|
The official `npx @deepseek-ai/dsh web` command does not create a global `dsh` command. Keep the full `npx` prefix when installing the plugin:
|
|
88
88
|
|
|
89
89
|
```sh
|
|
90
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
91
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
92
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
90
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web add dsh-codex-subscription
|
|
91
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web list dsh-codex-subscription --depth 0
|
|
92
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 --profile web --dump-config
|
|
93
93
|
```
|
|
94
94
|
|
|
95
95
|
</details>
|
|
@@ -147,10 +147,10 @@ see the [OpenAI Codex Speed documentation](https://learn.chatgpt.com/docs/agent-
|
|
|
147
147
|
On Windows, rerun the one-line setup above to update. For the official npm route, use:
|
|
148
148
|
|
|
149
149
|
```sh
|
|
150
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
151
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
152
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
153
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
150
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web update dsh-codex-subscription
|
|
151
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web list dsh-codex-subscription --depth 0
|
|
152
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 --profile web --dump-config
|
|
153
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web remove dsh-codex-subscription
|
|
154
154
|
```
|
|
155
155
|
|
|
156
156
|
These operations preserve the DSH profile, other plugins, and saved sign-in.
|
|
@@ -171,7 +171,7 @@ From a DSH-Portable folder, replace `dsh` above with `.\dsh.exe`.
|
|
|
171
171
|
|
|
172
172
|
## Troubleshooting
|
|
173
173
|
|
|
174
|
-
- **`dsh` is not recognized:** the official npm route does not create a global `dsh` command; use the complete `npx -y @deepseek-ai/dsh@0.1.
|
|
174
|
+
- **`dsh` is not recognized:** the official npm route does not create a global `dsh` command; use the complete `npx -y @deepseek-ai/dsh@0.1.1-rc.1 ...` command above;
|
|
175
175
|
- **`dsh.exe` is not recognized:** that file is not in the current folder; enter the DSH-Portable folder first or use the one-line Windows setup;
|
|
176
176
|
- **DSH-Portable is not found:** enter its folder and rerun setup, or run `.\dsh.exe plugin --profile web add dsh-codex-subscription` directly;
|
|
177
177
|
- **More than one DSH exists:** the one-line setup combines running copies with Portable folders detected in common locations; enter its number. For an Agent, use the intended folder or pass `-DshPath` explicitly;
|
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
|
|
49
49
|
## 准备 DSH
|
|
50
50
|
|
|
51
|
-
本插件当前适配到 DeepSeek Harness `0.1.
|
|
51
|
+
本插件当前适配到 DeepSeek Harness `0.1.1-rc.1`,并需要一个当前具有 Codex 使用资格的 ChatGPT 账户。
|
|
52
52
|
|
|
53
53
|
- 不想配置 Node.js:使用 [DSH-Portable(社区便携包)](https://github.com/WSL043/DSH-Portable);
|
|
54
54
|
- 想按官方方式运行:查看 [DeepSeek Harness 官方说明](https://github.com/deepseek-ai/deepseek-harness#run)。
|
|
@@ -75,10 +75,10 @@ Agent 文档包含安装、更新、卸载和验收步骤,并要求保留 DSH
|
|
|
75
75
|
irm 'https://github.com/WSL043/dsh-codex-subscription/releases/latest/download/dsh-codex-setup.ps1' | iex
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
|
|
78
|
+
这个轻量助手会检查当前目录、系统命令、常见位置以及正在运行的官方 DSH 或
|
|
79
79
|
[DSH-Portable](https://github.com/WSL043/DSH-Portable),然后调用一次官方
|
|
80
80
|
`plugin add`。它不会递归扫盘、安装 pnpm、创建常驻命令、保存 profile 快照或重复下载插件。
|
|
81
|
-
无需管理员权限,也不会擅自重启 DSH。找不到现有 DSH 时才会使用固定为 `0.1.
|
|
81
|
+
无需管理员权限,也不会擅自重启 DSH。找不到现有 DSH 时才会使用固定为 `0.1.1-rc.1`
|
|
82
82
|
的官方 npm 运行方式;首次解析依赖可能较慢,安装器会先明确提示。
|
|
83
83
|
|
|
84
84
|
<details>
|
|
@@ -87,9 +87,9 @@ irm 'https://github.com/WSL043/dsh-codex-subscription/releases/latest/download/d
|
|
|
87
87
|
官方的 `npx @deepseek-ai/dsh web` 不会创建全局 `dsh` 命令,因此安装插件时也要保留完整的 `npx` 前缀:
|
|
88
88
|
|
|
89
89
|
```sh
|
|
90
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
91
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
92
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
90
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web add dsh-codex-subscription
|
|
91
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web list dsh-codex-subscription --depth 0
|
|
92
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 --profile web --dump-config
|
|
93
93
|
```
|
|
94
94
|
|
|
95
95
|
</details>
|
|
@@ -146,10 +146,10 @@ Spark 使用独立额度。插件不会写死“5 小时 + 每周”,也不会
|
|
|
146
146
|
Windows 用户重新运行上面的单行助手即可更新。官方 npm 用户使用:
|
|
147
147
|
|
|
148
148
|
```sh
|
|
149
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
150
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
151
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
152
|
-
npx -y @deepseek-ai/dsh@0.1.
|
|
149
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web update dsh-codex-subscription
|
|
150
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web list dsh-codex-subscription --depth 0
|
|
151
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 --profile web --dump-config
|
|
152
|
+
npx -y @deepseek-ai/dsh@0.1.1-rc.1 plugin --profile web remove dsh-codex-subscription
|
|
153
153
|
```
|
|
154
154
|
|
|
155
155
|
这些操作会保留 DSH profile、其他插件和登录信息。
|
|
@@ -170,7 +170,7 @@ DSH-Portable 在其目录中把上述 `dsh` 换成 `.\dsh.exe`。
|
|
|
170
170
|
|
|
171
171
|
## 常见问题
|
|
172
172
|
|
|
173
|
-
- **`dsh` 无法识别**:官方 npm 方式本来就不会创建全局 `dsh` 命令,请使用上面的完整 `npx -y @deepseek-ai/dsh@0.1.
|
|
173
|
+
- **`dsh` 无法识别**:官方 npm 方式本来就不会创建全局 `dsh` 命令,请使用上面的完整 `npx -y @deepseek-ai/dsh@0.1.1-rc.1 ...` 命令;
|
|
174
174
|
- **`dsh.exe` 无法识别**:当前目录没有该文件。请先进入 DSH-Portable 目录,或使用 Windows 单行助手;
|
|
175
175
|
- **找不到 DSH-Portable**:进入它的目录后重新执行安装命令,或直接运行 `.\dsh.exe plugin --profile web add dsh-codex-subscription`;
|
|
176
176
|
- **电脑上有多个 DSH**:单行助手会合并正在运行的副本与常用目录内检测到的 Portable,输入对应编号即可;交给 Agent 时让它进入目标目录,或明确传入 `-DshPath`;
|
package/lib/index.js
CHANGED
|
@@ -446,12 +446,13 @@ const supportsCodexFastMode = (modelId) => typeof modelId === "string" && (/^gpt
|
|
|
446
446
|
* Preserve pi-ai's native Codex OAuth provider while allowing DSH's generic
|
|
447
447
|
* PiAiAdapter to pass the access token resolved by the host credential store.
|
|
448
448
|
*
|
|
449
|
-
* PiAiAdapter owns a request-local Models collection
|
|
450
|
-
* store. A pure OAuth provider ignores its
|
|
451
|
-
* before dispatch with "Provider
|
|
452
|
-
* bridge teaches that collection how
|
|
453
|
-
* token for this request; login, refresh,
|
|
454
|
-
* model behavior remain owned by the
|
|
449
|
+
* PiAiAdapter owns a request-local Models collection backed by the same DSH
|
|
450
|
+
* credential store as this provider. A pure OAuth provider ignores its
|
|
451
|
+
* `apiKey` request override and otherwise fails before dispatch with "Provider
|
|
452
|
+
* is not configured". This non-interactive bridge teaches that collection how
|
|
453
|
+
* to consume only the already-refreshed token for this request; login, refresh,
|
|
454
|
+
* persistence, headers, transport, and model behavior remain owned by the
|
|
455
|
+
* original provider.
|
|
455
456
|
*/
|
|
456
457
|
function openaiCodexSubscriptionProvider({ resolveSpeedMode = () => void 0 } = {}) {
|
|
457
458
|
const provider = createOpenAICodexProvider();
|
|
@@ -494,7 +495,7 @@ function openaiCodexSubscriptionProvider({ resolveSpeedMode = () => void 0 } = {
|
|
|
494
495
|
streamSimple: (model, context, options) => provider.streamSimple(model, context, withSpeed(model, options))
|
|
495
496
|
});
|
|
496
497
|
}
|
|
497
|
-
const USER_AGENT = `dsh-codex-subscription/1.1.
|
|
498
|
+
const USER_AGENT = `dsh-codex-subscription/1.1.5`;
|
|
498
499
|
//#endregion
|
|
499
500
|
//#region src/codex-search.js
|
|
500
501
|
const CODEX_SEARCH_PROVIDER_ID = "codex-subscription";
|
|
@@ -1120,6 +1121,13 @@ function apply(ctx) {
|
|
|
1120
1121
|
});
|
|
1121
1122
|
const profiles = /* @__PURE__ */ new Map([[PROVIDER, profile]]);
|
|
1122
1123
|
const resolveAuth = () => authModels.getAuth(PROVIDER);
|
|
1124
|
+
const adapterAuth = Object.freeze({
|
|
1125
|
+
credentials: store,
|
|
1126
|
+
authContext: Object.freeze({
|
|
1127
|
+
env: async () => void 0,
|
|
1128
|
+
fileExists: async () => false
|
|
1129
|
+
})
|
|
1130
|
+
});
|
|
1123
1131
|
ctx.tools.register(createCodexImageTool({
|
|
1124
1132
|
getAuth: resolveAuth,
|
|
1125
1133
|
readCredential: (options) => store.read(PROVIDER, options),
|
|
@@ -1137,6 +1145,7 @@ function apply(ctx) {
|
|
|
1137
1145
|
if (typeof resolved?.auth.apiKey !== "string" || resolved.auth.apiKey.length === 0) throw new LlmError("ChatGPT subscription is not signed in", "MISSING_CREDENTIAL");
|
|
1138
1146
|
return resolved.auth.apiKey;
|
|
1139
1147
|
},
|
|
1148
|
+
auth: adapterAuth,
|
|
1140
1149
|
resolveAttachments: () => ctx.get?.("attachments")
|
|
1141
1150
|
});
|
|
1142
1151
|
ctx.llm.registerAdapter([PROVIDER], adapter);
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-codex-subscription",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"packageManager": "pnpm@11.19.0",
|
|
3
|
+
"version": "1.1.5",
|
|
5
4
|
"description": "ChatGPT and Codex subscriptions for DeepSeek Harness with OAuth login, image generation, quota, and subscription web search",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"main": "./lib/index.js",
|
|
@@ -17,6 +16,7 @@
|
|
|
17
16
|
"README.md",
|
|
18
17
|
"README.en.md",
|
|
19
18
|
"AGENTS.md",
|
|
19
|
+
"compatibility.json",
|
|
20
20
|
"LICENSE",
|
|
21
21
|
"SECURITY.md",
|
|
22
22
|
"THIRD_PARTY_NOTICES.md",
|
|
@@ -40,11 +40,6 @@
|
|
|
40
40
|
"platform": "web"
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
"scripts": {
|
|
44
|
-
"build": "tsdown --config tsdown.config.mjs",
|
|
45
|
-
"test": "node --test tests/*.test.mjs",
|
|
46
|
-
"check": "pnpm run test && pnpm run build && pnpm pack --pack-destination .artifacts"
|
|
47
|
-
},
|
|
48
43
|
"keywords": [
|
|
49
44
|
"dsh-plugin",
|
|
50
45
|
"deepseek",
|
|
@@ -79,48 +74,53 @@
|
|
|
79
74
|
},
|
|
80
75
|
"peerDependencies": {
|
|
81
76
|
"@deepseek-ai/cordis": "4.0.1",
|
|
82
|
-
"@deepseek-ai/dsh-api-remotes": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
83
|
-
"@deepseek-ai/dsh-client-connection": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
84
|
-
"@deepseek-ai/dsh-client-locale": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
85
|
-
"@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
86
|
-
"@deepseek-ai/dsh-client-ui-conversation": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
87
|
-
"@deepseek-ai/dsh-client-ui-model-selection": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
88
|
-
"@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
89
|
-
"@deepseek-ai/dsh-client-ui-settings": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
90
|
-
"@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
91
|
-
"@deepseek-ai/dsh-client-ui-tool": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
92
|
-
"@deepseek-ai/dsh-credentials": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
93
|
-
"@deepseek-ai/dsh-llm": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
94
|
-
"@deepseek-ai/dsh-llm-pi-ai": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
95
|
-
"@deepseek-ai/dsh-settings": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
96
|
-
"@deepseek-ai/dsh-tools": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
97
|
-
"@deepseek-ai/dsh-web": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8",
|
|
77
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
78
|
+
"@deepseek-ai/dsh-client-connection": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
79
|
+
"@deepseek-ai/dsh-client-locale": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
80
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
81
|
+
"@deepseek-ai/dsh-client-ui-conversation": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
82
|
+
"@deepseek-ai/dsh-client-ui-model-selection": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
83
|
+
"@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
84
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
85
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
86
|
+
"@deepseek-ai/dsh-client-ui-tool": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
87
|
+
"@deepseek-ai/dsh-credentials": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
88
|
+
"@deepseek-ai/dsh-llm": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
89
|
+
"@deepseek-ai/dsh-llm-pi-ai": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
90
|
+
"@deepseek-ai/dsh-settings": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
91
|
+
"@deepseek-ai/dsh-tools": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
92
|
+
"@deepseek-ai/dsh-web": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.0-rc.8 || 0.1.1-rc.1",
|
|
98
93
|
"@deepseek-ai/schemastery": "3.18.1",
|
|
99
94
|
"@earendil-works/pi-ai": "0.82.1",
|
|
100
95
|
"react": "^18.2.0"
|
|
101
96
|
},
|
|
102
97
|
"devDependencies": {
|
|
103
98
|
"@deepseek-ai/cordis": "4.0.1",
|
|
104
|
-
"@deepseek-ai/dsh-api-remotes": "0.1.
|
|
105
|
-
"@deepseek-ai/dsh-client-connection": "0.1.
|
|
106
|
-
"@deepseek-ai/dsh-client-locale": "0.1.
|
|
107
|
-
"@deepseek-ai/dsh-client-runtime": "0.1.
|
|
108
|
-
"@deepseek-ai/dsh-client-ui-conversation": "0.1.
|
|
109
|
-
"@deepseek-ai/dsh-client-ui-model-selection": "0.1.
|
|
110
|
-
"@deepseek-ai/dsh-client-ui-primitives": "0.1.
|
|
111
|
-
"@deepseek-ai/dsh-client-ui-settings": "0.1.
|
|
112
|
-
"@deepseek-ai/dsh-client-ui-slots": "0.1.
|
|
113
|
-
"@deepseek-ai/dsh-client-ui-tool": "0.1.
|
|
114
|
-
"@deepseek-ai/dsh-credentials": "0.1.
|
|
115
|
-
"@deepseek-ai/dsh-llm": "0.1.
|
|
116
|
-
"@deepseek-ai/dsh-llm-pi-ai": "0.1.
|
|
117
|
-
"@deepseek-ai/dsh-settings": "0.1.
|
|
118
|
-
"@deepseek-ai/dsh-tools": "0.1.
|
|
119
|
-
"@deepseek-ai/dsh-web": "0.1.
|
|
99
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.1-rc.1",
|
|
100
|
+
"@deepseek-ai/dsh-client-connection": "0.1.1-rc.1",
|
|
101
|
+
"@deepseek-ai/dsh-client-locale": "0.1.1-rc.1",
|
|
102
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.1-rc.1",
|
|
103
|
+
"@deepseek-ai/dsh-client-ui-conversation": "0.1.1-rc.1",
|
|
104
|
+
"@deepseek-ai/dsh-client-ui-model-selection": "0.1.1-rc.1",
|
|
105
|
+
"@deepseek-ai/dsh-client-ui-primitives": "0.1.1-rc.1",
|
|
106
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.1-rc.1",
|
|
107
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.1-rc.1",
|
|
108
|
+
"@deepseek-ai/dsh-client-ui-tool": "0.1.1-rc.1",
|
|
109
|
+
"@deepseek-ai/dsh-credentials": "0.1.1-rc.1",
|
|
110
|
+
"@deepseek-ai/dsh-llm": "0.1.1-rc.1",
|
|
111
|
+
"@deepseek-ai/dsh-llm-pi-ai": "0.1.1-rc.1",
|
|
112
|
+
"@deepseek-ai/dsh-settings": "0.1.1-rc.1",
|
|
113
|
+
"@deepseek-ai/dsh-tools": "0.1.1-rc.1",
|
|
114
|
+
"@deepseek-ai/dsh-web": "0.1.1-rc.1",
|
|
120
115
|
"@deepseek-ai/schemastery": "3.18.1",
|
|
121
116
|
"@earendil-works/pi-ai": "0.82.1",
|
|
122
117
|
"@heroicons/react": "2.2.0",
|
|
123
118
|
"react": "18.3.1",
|
|
124
119
|
"tsdown": "0.22.2"
|
|
120
|
+
},
|
|
121
|
+
"scripts": {
|
|
122
|
+
"build": "tsdown --config tsdown.config.mjs",
|
|
123
|
+
"test": "node --test tests/*.test.mjs",
|
|
124
|
+
"check": "pnpm run test && pnpm run build && pnpm pack --pack-destination .artifacts"
|
|
125
125
|
}
|
|
126
|
-
}
|
|
126
|
+
}
|