-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.45 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "codex-gpt-bridge",
"version": "0.1.0",
"description": "A safe Streamable HTTP MCP bridge from ChatGPT/GPTs to local Codex.",
"type": "module",
"bin": {
"codex-gpt-bridge": "dist/cli.js",
"codex-chatgpt-mcp": "dist/chatgpt-cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc -p tsconfig.json",
"bridge:chatgpt": "node scripts/start-chatgpt-codex-bridge.mjs",
"bridge:chatgpt:local": "node scripts/start-chatgpt-codex-bridge.mjs --mode local",
"bridge:chatgpt:secure": "node scripts/start-chatgpt-codex-bridge.mjs --mode secure",
"bridge:chatgpt:secure:keychain": "zsh scripts/start-secure-from-keychain.sh",
"bridge:chatgpt:secure:write:keychain": "zsh scripts/start-secure-from-keychain.sh --write",
"chatgpt:mcp": "node dist/chatgpt-cli.js",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"check": "npm run build && npm run test"
},
"keywords": [
"codex",
"chatgpt",
"mcp",
"model-context-protocol",
"bridge"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.2.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.12.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=20"
}
}