forked from lidge-jun/opencodex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.33 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
{
"name": "@bitkyc08/opencodex",
"version": "2.1.7",
"description": "Universal provider proxy for OpenAI Codex — use any LLM with Codex CLI/App/SDK",
"type": "module",
"main": "src/index.ts",
"bin": {
"opencodex": "./src/cli.ts",
"ocx": "./src/cli.ts"
},
"files": [
"src",
"gui/dist",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.1.0"
},
"scripts": {
"dev": "bun run src/cli.ts start",
"start": "bun run src/cli.ts start",
"test": "bun test tests",
"typecheck": "bun x tsc --noEmit",
"generate:jawcode-metadata": "bun scripts/generate-jawcode-metadata.ts",
"build:gui": "cd gui && bun install && bun run build",
"prepublishOnly": "bun run typecheck && bun run build:gui",
"release": "bun scripts/release.ts",
"release:watch": "bun scripts/release.ts watch"
},
"dependencies": {
"zod": "^4.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.8.0"
},
"keywords": [
"codex",
"openai",
"proxy",
"llm",
"ollama",
"anthropic",
"responses-api"
],
"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"
}