-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.29 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
{
"name": "claude-codex-oauth-bridge",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Local dashboard and Anthropic-compatible bridge for using Claude Code with OpenAI Codex OAuth accounts.",
"license": "UNLICENSED",
"engines": {
"node": ">=20"
},
"keywords": [
"claude-code",
"codex",
"oauth",
"proxy",
"fastify",
"react"
],
"bin": {
"ccbridge": "./bin/ccbridge.mjs",
"claude-codex-bridge": "./bin/ccbridge.mjs"
},
"files": [
"bin",
"dist",
"scripts",
"README.md",
".env.example",
"package.json"
],
"scripts": {
"dev": "concurrently -k \"vite\" \"tsx src/server/index.ts --dev\"",
"build": "node -e \"require('node:fs').rmSync('dist',{ recursive: true, force: true })\" && tsc -p tsconfig.server.json && vite build",
"test": "npm run test:smoke",
"test:smoke": "node scripts/smoke-test.mjs",
"ci": "npm run build && npm test",
"prepack": "npm run build",
"global:setup": "npm install && npm run build && npm run global:install",
"global:install": "npm install -g .",
"global:link": "npm link",
"global:unlink": "npm unlink -g claude-codex-oauth-bridge",
"start": "node dist/server/index.js",
"setup:start": "bash scripts/setup-and-start.sh",
"service:start": "node dist/server/cli.js service start",
"service:stop": "node dist/server/cli.js service stop",
"service:restart": "node dist/server/cli.js service restart",
"service:status": "node dist/server/cli.js service status",
"systemd:install": "bash scripts/install-systemd.sh",
"systemd:uninstall": "bash scripts/uninstall-systemd.sh"
},
"dependencies": {
"@fastify/static": "^8.0.0",
"@fontsource/instrument-serif": "^5.1.0",
"@fontsource/space-grotesk": "^5.1.0",
"@tanstack/react-query": "^5.80.7",
"dotenv": "^16.4.7",
"fastify": "^5.3.3",
"js-tiktoken": "^1.0.21",
"lucide-react": "^0.511.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sonner": "^2.0.3",
"zod": "^3.25.42"
},
"devDependencies": {
"@types/node": "^24.0.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^5.0.2",
"concurrently": "^9.1.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite": "^7.0.6"
}
}