-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 728 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 728 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
{
"name": "chatgpt-codex-proxy",
"version": "1.0.0",
"description": "Anthropic-compatible proxy server for Claude Code -> ChatGPT integration",
"type": "module",
"private": true,
"scripts": {
"build": "tsc",
"test": "tsx --test test/**/*.test.ts",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"login": "tsx src/cli.ts login",
"logout": "tsx src/cli.ts logout",
"status": "tsx src/cli.ts status"
},
"dependencies": {
"express": "^4.21.0",
"cors": "^2.8.5",
"dotenv": "^16.4.0"
},
"devDependencies": {
"typescript": "^5.6.0",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/node": "^22.0.0",
"tsx": "^4.19.0"
}
}