dsh-codex-connect 0.1.0-alpha.4.10

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/package.json ADDED
@@ -0,0 +1,155 @@
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.10",
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
+ "tag": "alpha"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/franksong2702/dsh-codex-connect.git"
26
+ },
27
+ "homepage": "https://github.com/franksong2702/dsh-codex-connect#readme",
28
+ "bugs": {
29
+ "url": "https://github.com/franksong2702/dsh-codex-connect/issues"
30
+ },
31
+ "type": "module",
32
+ "engines": {
33
+ "node": "^22.19.0 || >=24.0.0"
34
+ },
35
+ "main": "lib/index.js",
36
+ "types": "lib/index.d.ts",
37
+ "bin": {
38
+ "dsh-codex-connect": "lib/bin.js"
39
+ },
40
+ "scripts": {
41
+ "lint": "node scripts/lint.mjs",
42
+ "build": "tsdown",
43
+ "test": "vitest run",
44
+ "typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.client.json",
45
+ "check:compatibility": "node scripts/check-compatibility.mjs",
46
+ "pack:check": "node scripts/check-pack.mjs",
47
+ "check:dsh-install": "node scripts/check-dsh-install.mjs",
48
+ "check:release-workflow": "node scripts/check-release-workflow.mjs",
49
+ "check": "pnpm run check:release-workflow && pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build && pnpm --silent run check:compatibility && pnpm run pack:check",
50
+ "prepublishOnly": "pnpm --config.minimum-release-age=0 run check"
51
+ },
52
+ "exports": {
53
+ ".": {
54
+ "types": "./lib/index.d.ts",
55
+ "default": "./lib/index.js"
56
+ },
57
+ "./invariant": {
58
+ "types": "./lib/invariant.d.ts",
59
+ "default": "./lib/invariant.js"
60
+ },
61
+ "./client": "./lib/client.js",
62
+ "./cordis.patch.yml": "./cordis.patch.yml",
63
+ "./compatibility.json": "./compatibility.json",
64
+ "./package.json": "./package.json"
65
+ },
66
+ "files": [
67
+ "lib",
68
+ "compatibility.json",
69
+ "cordis.patch.yml",
70
+ "docs",
71
+ "INSTALL.md",
72
+ "MIGRATION.md",
73
+ "NOTICE"
74
+ ],
75
+ "license": "Apache-2.0",
76
+ "dsh": {
77
+ "bundle": {
78
+ "patch": "./cordis.patch.yml"
79
+ },
80
+ "client": {
81
+ "inject": [
82
+ "@deepseek-ai/dsh-api-remotes",
83
+ "@deepseek-ai/dsh-client-connection",
84
+ "@deepseek-ai/dsh-client-runtime",
85
+ "@deepseek-ai/dsh-client-ui-conversation",
86
+ "@deepseek-ai/dsh-client-ui-model-selection",
87
+ "@deepseek-ai/dsh-client-ui-settings",
88
+ "@deepseek-ai/dsh-client-ui-settings-plugins",
89
+ "@deepseek-ai/dsh-client-locale"
90
+ ],
91
+ "platform": "web"
92
+ }
93
+ },
94
+ "peerDependencies": {
95
+ "@earendil-works/pi-ai": "0.82.1",
96
+ "@deepseek-ai/cordis": "^4.0.1-rc.1",
97
+ "@deepseek-ai/dsh-agent": "0.1.0-rc.7",
98
+ "@deepseek-ai/dsh-atomic-write": "0.1.0-rc.7",
99
+ "@deepseek-ai/dsh-attachment": "0.1.0-rc.7",
100
+ "@deepseek-ai/dsh-home-paths": "0.1.0-rc.7",
101
+ "@deepseek-ai/dsh-host-webserver": "0.1.0-rc.7",
102
+ "@deepseek-ai/dsh-invariants": "0.1.0-rc.7",
103
+ "@deepseek-ai/dsh-llm": "0.1.0-rc.7",
104
+ "@deepseek-ai/dsh-llm-pi-ai": "0.1.0-rc.7",
105
+ "@deepseek-ai/dsh-fs": "0.1.0-rc.7",
106
+ "@deepseek-ai/dsh-session": "0.1.0-rc.7",
107
+ "@deepseek-ai/dsh-settings": "0.1.0-rc.7",
108
+ "@deepseek-ai/dsh-tools": "0.1.0-rc.7",
109
+ "@deepseek-ai/dsh-web": "0.1.0-rc.7",
110
+ "@deepseek-ai/schemastery": "^3.18.1-rc.1",
111
+ "react": "^18.2.0"
112
+ },
113
+ "devDependencies": {
114
+ "@earendil-works/pi-ai": "0.82.1",
115
+ "@deepseek-ai/cordis": "^4.0.1",
116
+ "@deepseek-ai/cordis-plugin-include": "1.0.6",
117
+ "@deepseek-ai/cordis-plugin-loader": "1.0.2",
118
+ "@deepseek-ai/dsh-agent": "0.1.0-rc.7",
119
+ "@deepseek-ai/dsh-api-remotes": "0.1.0-rc.7",
120
+ "@deepseek-ai/dsh-atomic-write": "0.1.0-rc.7",
121
+ "@deepseek-ai/dsh-attachment": "0.1.0-rc.7",
122
+ "@deepseek-ai/dsh-attachment-local": "0.1.0-rc.7",
123
+ "@deepseek-ai/dsh-client-locale": "0.1.0-rc.7",
124
+ "@deepseek-ai/dsh-client-connection": "0.1.0-rc.7",
125
+ "@deepseek-ai/dsh-client-runtime": "0.1.0-rc.7",
126
+ "@deepseek-ai/dsh-client-ui-conversation": "0.1.0-rc.7",
127
+ "@deepseek-ai/dsh-client-ui-model-selection": "0.1.0-rc.7",
128
+ "@deepseek-ai/dsh-client-ui-settings": "0.1.0-rc.7",
129
+ "@deepseek-ai/dsh-client-ui-settings-plugins": "0.1.0-rc.7",
130
+ "@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.7",
131
+ "@deepseek-ai/dsh-fs": "0.1.0-rc.7",
132
+ "@deepseek-ai/dsh-fs-local": "0.1.0-rc.7",
133
+ "@deepseek-ai/dsh-home-paths": "0.1.0-rc.7",
134
+ "@deepseek-ai/dsh-host-webserver": "0.1.0-rc.7",
135
+ "@deepseek-ai/dsh-invariants": "0.1.0-rc.7",
136
+ "@deepseek-ai/dsh-llm": "0.1.0-rc.7",
137
+ "@deepseek-ai/dsh-llm-pi-ai": "0.1.0-rc.7",
138
+ "@deepseek-ai/dsh-session": "0.1.0-rc.7",
139
+ "@deepseek-ai/dsh-settings": "0.1.0-rc.7",
140
+ "@deepseek-ai/dsh-system-prompt": "0.1.0-rc.7",
141
+ "@deepseek-ai/dsh-tools": "0.1.0-rc.7",
142
+ "@deepseek-ai/dsh-web": "0.1.0-rc.7",
143
+ "@deepseek-ai/schemastery": "3.18.1",
144
+ "@testing-library/react": "^16.3.2",
145
+ "@types/node": "^22.20.0",
146
+ "@types/react": "~18.3.1",
147
+ "@types/react-dom": "~18.3.1",
148
+ "jsdom": "29.1.1",
149
+ "react": "^18.2.0",
150
+ "react-dom": "^18.2.0",
151
+ "tsdown": "^0.22.2",
152
+ "typescript": "^5.9.3",
153
+ "vitest": "^4.1.8"
154
+ }
155
+ }