forked from rebel0789/codexpro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.61 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@naplesblue/codexbridge",
"version": "0.28.5",
"description": "A local MCP/App SDK-style bridge that lets ChatGPT inspect, edit, verify, and hand off work inside a local dev workspace.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/naplesblue/codexbridge.git"
},
"bugs": {
"url": "https://github.com/naplesblue/codexbridge/issues"
},
"homepage": "https://github.com/naplesblue/codexbridge#readme",
"keywords": [
"mcp",
"chatgpt",
"codex",
"apps-sdk",
"codexbridge",
"local-development",
"cloudflare-tunnel",
"ngrok"
],
"engines": {
"node": ">=20"
},
"files": [
"dist",
"docs",
"scripts",
"README.md",
"README_ZH.md",
"PUBLIC_LAUNCH_CHECKLIST.md",
"DOMAIN_SETUP.md",
"LICENSE",
"SECURITY.md",
"CONTRIBUTING.md",
"FAQ.md",
"FAQ_ZH.md",
"CHANGELOG.md",
"CHATGPT_PROMPT.md",
"CODEX_PROMPT.md",
"AGENTS.example.md",
"config.example.env"
],
"publishConfig": {
"access": "public"
},
"bin": {
"codexbridge": "scripts/codexbridge.mjs",
"codexbridge-mcp": "dist/stdio.js",
"codexbridge-mcp-http": "dist/http.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"prepack": "npm run build",
"start": "node dist/stdio.js",
"start:stdio": "node dist/stdio.js",
"start:http": "node dist/http.js",
"dev:stdio": "tsx src/stdio.ts",
"dev:http": "tsx src/http.ts",
"smoke": "node scripts/smoke.mjs && node scripts/http-smoke.mjs && node scripts/pro-smoke.mjs && node scripts/doctor-smoke.mjs && node scripts/settings-smoke.mjs && node scripts/execute-handoff-smoke.mjs",
"doctor": "node scripts/codexbridge.mjs doctor",
"connect": "node scripts/codexbridge.mjs",
"connect:setup": "node scripts/codexbridge.mjs setup",
"connect:local": "node scripts/codexbridge.mjs --tunnel none",
"connect:cloudflare": "node scripts/codexbridge.mjs --tunnel cloudflare",
"connect:chatgpt": "node scripts/codexbridge.mjs --tunnel cloudflare",
"connect:stable": "node scripts/codexbridge.mjs --tunnel cloudflare-named",
"connect:ngrok": "node scripts/codexbridge.mjs ngrok",
"pro:bundle": "node scripts/pro-bundle.mjs",
"pro:apply": "node scripts/pro-apply.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"cors": "^2.8.5",
"express": "^5.1.0",
"minimatch": "^10.0.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}