-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 938 Bytes
/
package.json
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
{
"name": "chat-gpt",
"version": "1.0.1",
"description": "",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux"
},
"build": {
"appId": "com.juanmatola.desktop-gpt",
"productName": "Desktop GPT",
"directories": {
"output": "build"
},
"files": [
"main.js",
"package.json",
"utils/"
],
"mac": {
"target": "dmg",
"icon": "assets/icon256x256.icns"
},
"win": {
"target": "nsis",
"icon": "assets/icon256x256.ico"
},
"linux": {
"target": [
"AppImage"
],
"icon": "assets/icon256x256.png"
}
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^24.0.0",
"electron-builder": "^23.6.0"
}
}