-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "codex-openai-proxy",
"version": "0.1.13",
"description": "A desktop switch for exposing Codex OAuth as an OpenAI-compatible local API.",
"main": "src/main.js",
"author": "zjy4fun <zjy4fun@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zjy4fun/codex-openai-proxy.git"
},
"scripts": {
"start": "electron .",
"check": "node --check src/main.js && node --check src/preload.js && node --check src/proxy.js && node --check src/updater.js && node --check src/renderer/app.js",
"test": "node --test",
"icons": "scripts/generate-icons.sh",
"dist": "electron-builder --mac dmg zip"
},
"devDependencies": {
"electron": "38.8.6",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "fun.zjy.codex-openai-proxy",
"productName": "Codex OpenAI Proxy",
"asar": true,
"files": [
"src/**/*",
"package.json"
],
"extraResources": [
{
"from": "build/trayTemplate.png",
"to": "build/trayTemplate.png"
},
{
"from": "build/trayTemplate@2x.png",
"to": "build/trayTemplate@2x.png"
},
{
"from": "build/icon.png",
"to": "build/icon.png"
}
],
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.developer-tools",
"target": [
"dmg",
"zip"
]
},
"win": {
"icon": "build/icon.ico"
},
"publish": [
{
"provider": "github",
"owner": "zjy4fun",
"repo": "codex-openai-proxy",
"releaseType": "release"
}
]
}
}