dsh-codex-subscription 2.1.0 → 2.1.1-beta.1
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/README.en.md +7 -0
- package/README.md +7 -0
- package/THIRD_PARTY_NOTICES.md +2 -0
- package/lib/client.js +1839 -1361
- package/lib/index.js +1984 -1484
- package/package.json +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-codex-subscription",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1-beta.1",
|
|
4
4
|
"description": "Use ChatGPT and Codex subscriptions in DeepSeek Harness with OAuth, quota, safe resets, web search, images, and Fast mode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -117,13 +117,19 @@
|
|
|
117
117
|
"@earendil-works/pi-ai": "0.82.1",
|
|
118
118
|
"@heroicons/react": "2.2.0",
|
|
119
119
|
"ag-psd": "31.0.2",
|
|
120
|
+
"fake-indexeddb": "6.2.5",
|
|
120
121
|
"react": "18.3.1",
|
|
121
122
|
"react-dom": "18.3.1",
|
|
122
123
|
"tsdown": "0.22.2"
|
|
123
124
|
},
|
|
124
125
|
"dependencies": {
|
|
125
126
|
"@deepseek-ai/dsh-home-paths": "0.1.1-rc.2",
|
|
126
|
-
"https-proxy-agent": "7.0.6"
|
|
127
|
+
"https-proxy-agent": "7.0.6",
|
|
128
|
+
"ws": "8.21.3"
|
|
129
|
+
},
|
|
130
|
+
"optionalDependencies": {
|
|
131
|
+
"@deepseek-ai/dsh-sdk-protocol": "0.1.5-rc.2",
|
|
132
|
+
"@deepseek-ai/dsh-subagent-codex": "0.1.5-rc.2"
|
|
127
133
|
},
|
|
128
134
|
"scripts": {
|
|
129
135
|
"build": "tsdown --config tsdown.config.mjs",
|