-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.6 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
90
91
92
93
94
{
"name": "@bitkyc08/opencodex",
"version": "2.7.28",
"description": "Universal provider proxy for OpenAI Codex & Claude Code — use any LLM with Codex CLI/App/SDK and Claude Code",
"type": "module",
"main": "./bin/package-main.mjs",
"exports": {
".": {
"bun": "./src/index.ts",
"default": "./bin/package-main.mjs"
},
"./package.json": "./package.json"
},
"bin": {
"opencodex": "./bin/ocx.mjs",
"ocx": "./bin/ocx.mjs"
},
"files": [
"bin",
"src",
"gui/dist",
"assets/banner.png",
"assets/architecture.png",
"assets/codex-app-picker.png",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"trustedDependencies": [
"bun"
],
"scripts": {
"dev": "bun run src/cli/index.ts start",
"dev:proxy": "bun run src/cli/index.ts start",
"dev:gui": "cd gui && bun run dev",
"start": "bun run src/cli/index.ts start",
"test": "bun test --isolate ./tests/",
"typecheck": "bun x tsc --noEmit",
"privacy:scan": "bun scripts/privacy-scan.ts",
"generate:jawcode-metadata": "bun scripts/generate-jawcode-metadata.ts",
"build:gui": "cd gui && bun install --frozen-lockfile && bun run build && cd .. && bun run prepare:package",
"prepare:package": "bun scripts/prepare-package.ts",
"prepack": "bun run prepare:package",
"prepublishOnly": "bun run typecheck && bun run build:gui",
"release": "bun scripts/release.ts",
"release:watch": "bun scripts/release.ts watch",
"prepush": "bun run typecheck && bun run lint:gui && bun run test && bun run privacy:scan && bun run doctor:gui:if-changed",
"lint:gui": "cd gui && bun run lint",
"doctor:gui": "cd gui && bun run doctor",
"doctor:gui:full": "cd gui && bun run doctor:full",
"doctor:gui:if-changed": "bun scripts/doctor-gui-if-changed.ts",
"setup:hooks": "bun scripts/setup-hooks.ts"
},
"dependencies": {
"@bufbuild/protobuf": "^2.12.0",
"@modelcontextprotocol/sdk": "^1",
"bun": "1.3.14",
"zod": "4.4.3"
},
"devDependencies": {
"@types/bun": "1.3.14",
"typescript": "5.9.3"
},
"keywords": [
"codex",
"openai",
"proxy",
"llm",
"ollama",
"anthropic",
"responses-api",
"claude-code",
"claude",
"codex-cli",
"gemini",
"grok",
"deepseek",
"chatgpt",
"llm-proxy",
"ai-gateway",
"openrouter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lidge-jun/opencodex.git"
},
"homepage": "https://lidge-jun.github.io/opencodex/",
"bugs": {
"url": "https://github.com/lidge-jun/opencodex/issues"
},
"license": "MIT"
}