@classicicn/codex-transfer 0.2.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/LICENSE +21 -0
- package/README.md +205 -0
- package/README.zh-CN.md +205 -0
- package/dist/codex-transfer.mjs +3757 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@classicicn/codex-transfer",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Responses API ↔ Chat Completions translation bridge for Codex — use DeepSeek, Kimi, Qwen, and other providers with Codex",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/codex-transfer.mjs",
|
|
7
|
+
"bin": {
|
|
8
|
+
"codex-transfer": "dist/codex-transfer.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/codex-transfer.mjs",
|
|
12
|
+
"README.md",
|
|
13
|
+
"README.zh-CN.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "node build.mjs",
|
|
18
|
+
"build:tsc": "tsc --noEmit",
|
|
19
|
+
"start": "node dist/codex-transfer.mjs",
|
|
20
|
+
"dev": "tsx src/cli.ts",
|
|
21
|
+
"prepublishOnly": "npm run build:tsc && npm run build"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"codex",
|
|
25
|
+
"openai",
|
|
26
|
+
"responses-api",
|
|
27
|
+
"chat-completions",
|
|
28
|
+
"deepseek",
|
|
29
|
+
"proxy",
|
|
30
|
+
"bridge",
|
|
31
|
+
"api-translation"
|
|
32
|
+
],
|
|
33
|
+
"author": "classicicn",
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/Icicno/codex-transfer"
|
|
38
|
+
},
|
|
39
|
+
"homepage": "https://github.com/Icicno/codex-transfer#readme",
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/Icicno/codex-transfer/issues"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"hono": "^4.0.0",
|
|
45
|
+
"@hono/node-server": "^1.0.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"esbuild": "^0.25.0",
|
|
49
|
+
"typescript": "^5.5.0",
|
|
50
|
+
"tsx": "^4.0.0",
|
|
51
|
+
"@types/node": "^22.0.0"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=18.0.0"
|
|
55
|
+
}
|
|
56
|
+
}
|