-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.12 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.12 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": "codex-proapi",
"version": "1.0.8",
"description": "将 Codex (gpt-5.3-codex) 以 OpenAI 兼容 API 形式暴露,可在 Cline、Cursor 等客户端中使用。桌面版内置配置页,开箱即用。",
"author": "violettoolssite",
"type": "module",
"main": "electron/main.cjs",
"bin": {
"codex-proapi": "bin/codex-proapi.js"
},
"files": [
"bin",
"src",
"public",
"electron"
],
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"electron": "node scripts/run-electron.cjs",
"build:app-resources": "node scripts/build-app-resources.cjs",
"dist": "npm run build:app-resources && electron-builder",
"dist:win": "npm run build:app-resources && electron-builder --win",
"dist:mac": "npm run build:app-resources && electron-builder --mac",
"dist:linux": "npm run build:app-resources && electron-builder --linux"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"codex-proapi": "^1.0.8",
"express": "^4.21.0"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/violettoolssite/codexProapi.git"
},
"keywords": [
"codex",
"openai",
"api",
"proxy",
"chatgpt"
],
"license": "MIT",
"build": {
"appId": "cloud.violet.codex-proapi",
"productName": "Codex Pro API",
"directories": {
"output": "release"
},
"extraResources": [
{
"from": "dist/app",
"to": "app",
"filter": [
"**/*"
]
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"forceCodeSigning": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.developer-tools"
},
"linux": {
"target": [
"AppImage"
]
}
}
}