-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 800 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "@mmmbuto/zai-codex-bridge",
"version": "0.4.9",
"description": "Local proxy that translates OpenAI Responses API format to Z.AI Chat Completions format for Codex",
"main": "src/server.js",
"bin": {
"zai-codex-bridge": "bin/zai-codex-bridge"
},
"scripts": {
"start": "node src/server.js",
"test": "node scripts/test-curl.js",
"test:curl": "node scripts/test-curl.js",
"release:patch": "node scripts/release-patch.js"
},
"keywords": [
"codex",
"zai",
"glm",
"proxy",
"openai",
"responses-api",
"chat-completions"
],
"author": "Davide A. Guglielmi",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DioNanos/zai-codex-bridge.git"
}
}