dsh-codex-connect 0.1.0-alpha.4.3
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/INSTALL.md +72 -0
- package/LICENSE +202 -0
- package/MIGRATION.md +12 -0
- package/NOTICE +15 -0
- package/README.i18n.yaml +6 -0
- package/README.md +110 -0
- package/README.zh.md +93 -0
- package/cordis.patch.yml +8 -0
- package/docs/design.i18n.yaml +4 -0
- package/docs/design.md +29 -0
- package/docs/design.zh.md +25 -0
- package/lib/bin.d.ts +6 -0
- package/lib/bin.js +145 -0
- package/lib/client.js +1086 -0
- package/lib/index.d.ts +333 -0
- package/lib/index.js +2 -0
- package/lib/invariant.d.ts +14 -0
- package/lib/invariant.js +15 -0
- package/lib/src-ILOioCkA.js +1484 -0
- package/package.json +145 -0
package/package.json
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-codex-connect",
|
|
3
|
+
"displayName": "Codex Connect",
|
|
4
|
+
"description": "ChatGPT OAuth and Codex models for DeepSeek Harness.",
|
|
5
|
+
"version": "0.1.0-alpha.4.3",
|
|
6
|
+
"author": "Frank Song",
|
|
7
|
+
"contributors": [
|
|
8
|
+
"Yan-Zero (original dsh-codex author)"
|
|
9
|
+
],
|
|
10
|
+
"keywords": [
|
|
11
|
+
"dsh-plugin",
|
|
12
|
+
"deepseek-harness",
|
|
13
|
+
"openai-codex",
|
|
14
|
+
"chatgpt-oauth",
|
|
15
|
+
"oauth",
|
|
16
|
+
"codex"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public",
|
|
20
|
+
"registry": "https://registry.npmjs.org/"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/franksong2702/dsh-codex-connect.git"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/franksong2702/dsh-codex-connect#readme",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/franksong2702/dsh-codex-connect/issues"
|
|
29
|
+
},
|
|
30
|
+
"type": "module",
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": "^22.19.0 || >=24.0.0"
|
|
33
|
+
},
|
|
34
|
+
"main": "lib/index.js",
|
|
35
|
+
"types": "lib/index.d.ts",
|
|
36
|
+
"bin": {
|
|
37
|
+
"dsh-codex-connect": "lib/bin.js"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"lint": "node scripts/lint.mjs",
|
|
41
|
+
"build": "tsdown",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.client.json",
|
|
44
|
+
"pack:check": "node scripts/check-pack.mjs",
|
|
45
|
+
"check": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build && pnpm run pack:check",
|
|
46
|
+
"prepublishOnly": "pnpm --config.minimum-release-age=0 run check"
|
|
47
|
+
},
|
|
48
|
+
"exports": {
|
|
49
|
+
".": {
|
|
50
|
+
"types": "./lib/index.d.ts",
|
|
51
|
+
"default": "./lib/index.js"
|
|
52
|
+
},
|
|
53
|
+
"./invariant": {
|
|
54
|
+
"types": "./lib/invariant.d.ts",
|
|
55
|
+
"default": "./lib/invariant.js"
|
|
56
|
+
},
|
|
57
|
+
"./client": "./lib/client.js",
|
|
58
|
+
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
59
|
+
"./package.json": "./package.json"
|
|
60
|
+
},
|
|
61
|
+
"files": [
|
|
62
|
+
"lib",
|
|
63
|
+
"cordis.patch.yml",
|
|
64
|
+
"docs",
|
|
65
|
+
"INSTALL.md",
|
|
66
|
+
"MIGRATION.md",
|
|
67
|
+
"NOTICE"
|
|
68
|
+
],
|
|
69
|
+
"license": "Apache-2.0",
|
|
70
|
+
"dsh": {
|
|
71
|
+
"bundle": {
|
|
72
|
+
"patch": "./cordis.patch.yml"
|
|
73
|
+
},
|
|
74
|
+
"client": {
|
|
75
|
+
"inject": [
|
|
76
|
+
"@deepseek-ai/dsh-api-remotes",
|
|
77
|
+
"@deepseek-ai/dsh-client-connection",
|
|
78
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
79
|
+
"@deepseek-ai/dsh-client-ui-settings",
|
|
80
|
+
"@deepseek-ai/dsh-client-ui-settings-plugins",
|
|
81
|
+
"@deepseek-ai/dsh-client-locale"
|
|
82
|
+
],
|
|
83
|
+
"platform": "web"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"peerDependencies": {
|
|
87
|
+
"@earendil-works/pi-ai": "^0.82.1",
|
|
88
|
+
"@deepseek-ai/cordis": "^4.0.1-rc.1",
|
|
89
|
+
"@deepseek-ai/dsh-agent": "*",
|
|
90
|
+
"@deepseek-ai/dsh-atomic-write": "*",
|
|
91
|
+
"@deepseek-ai/dsh-attachment": "*",
|
|
92
|
+
"@deepseek-ai/dsh-home-paths": "*",
|
|
93
|
+
"@deepseek-ai/dsh-host-webserver": "*",
|
|
94
|
+
"@deepseek-ai/dsh-invariants": "*",
|
|
95
|
+
"@deepseek-ai/dsh-llm": "*",
|
|
96
|
+
"@deepseek-ai/dsh-llm-pi-ai": "*",
|
|
97
|
+
"@deepseek-ai/dsh-fs": "*",
|
|
98
|
+
"@deepseek-ai/dsh-session": "*",
|
|
99
|
+
"@deepseek-ai/dsh-settings": "*",
|
|
100
|
+
"@deepseek-ai/dsh-tools": "*",
|
|
101
|
+
"@deepseek-ai/dsh-web": "*",
|
|
102
|
+
"@deepseek-ai/schemastery": "^3.18.1-rc.1",
|
|
103
|
+
"react": "^18.2.0"
|
|
104
|
+
},
|
|
105
|
+
"devDependencies": {
|
|
106
|
+
"@earendil-works/pi-ai": "0.82.1",
|
|
107
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
108
|
+
"@deepseek-ai/cordis-plugin-include": "1.0.6",
|
|
109
|
+
"@deepseek-ai/cordis-plugin-loader": "1.0.2",
|
|
110
|
+
"@deepseek-ai/dsh-agent": "0.1.0-rc.6",
|
|
111
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.0-rc.6",
|
|
112
|
+
"@deepseek-ai/dsh-atomic-write": "0.1.0-rc.6",
|
|
113
|
+
"@deepseek-ai/dsh-attachment": "0.1.0-rc.6",
|
|
114
|
+
"@deepseek-ai/dsh-attachment-local": "0.1.0-rc.6",
|
|
115
|
+
"@deepseek-ai/dsh-client-locale": "0.1.0-rc.6",
|
|
116
|
+
"@deepseek-ai/dsh-client-connection": "0.1.0-rc.6",
|
|
117
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
|
|
118
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.0-rc.6",
|
|
119
|
+
"@deepseek-ai/dsh-client-ui-settings-plugins": "0.1.0-rc.6",
|
|
120
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6",
|
|
121
|
+
"@deepseek-ai/dsh-fs": "0.1.0-rc.6",
|
|
122
|
+
"@deepseek-ai/dsh-fs-local": "0.1.0-rc.6",
|
|
123
|
+
"@deepseek-ai/dsh-home-paths": "0.1.0-rc.6",
|
|
124
|
+
"@deepseek-ai/dsh-host-webserver": "0.1.0-rc.6",
|
|
125
|
+
"@deepseek-ai/dsh-invariants": "0.1.0-rc.6",
|
|
126
|
+
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
|
|
127
|
+
"@deepseek-ai/dsh-llm-pi-ai": "0.1.0-rc.6",
|
|
128
|
+
"@deepseek-ai/dsh-session": "0.1.0-rc.6",
|
|
129
|
+
"@deepseek-ai/dsh-settings": "0.1.0-rc.6",
|
|
130
|
+
"@deepseek-ai/dsh-system-prompt": "0.1.0-rc.6",
|
|
131
|
+
"@deepseek-ai/dsh-tools": "0.1.0-rc.6",
|
|
132
|
+
"@deepseek-ai/dsh-web": "0.1.0-rc.6",
|
|
133
|
+
"@deepseek-ai/schemastery": "3.18.1",
|
|
134
|
+
"@testing-library/react": "^16.3.2",
|
|
135
|
+
"@types/node": "^22.20.0",
|
|
136
|
+
"@types/react": "~18.3.1",
|
|
137
|
+
"@types/react-dom": "~18.3.1",
|
|
138
|
+
"jsdom": "29.1.1",
|
|
139
|
+
"react": "^18.2.0",
|
|
140
|
+
"react-dom": "^18.2.0",
|
|
141
|
+
"tsdown": "^0.22.2",
|
|
142
|
+
"typescript": "^5.9.3",
|
|
143
|
+
"vitest": "^4.1.8"
|
|
144
|
+
}
|
|
145
|
+
}
|