-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "chatgpt-multitab",
"productName": "ChatGPT Multitab",
"version": "0.1.0",
"private": true,
"main": "electron/main.js",
"scripts": {
"start": "electron .",
"test": "node --test test/*.test.js",
"check": "node --check src/session-state.js && node --check src/electron-tabs.js && node --check electron/main.js && node --check electron/preload.js && node --check electron/renderer.js",
"dist:win": "electron-builder --win nsis portable",
"dist:mac": "electron-builder --mac dmg zip"
},
"devDependencies": {
"electron": "^42.0.0",
"electron-builder": "^26.8.1"
},
"build": {
"appId": "com.tonylee.chatgptmultitab",
"files": [
"electron/**",
"src/**",
"favicon-inverted.png",
"package.json"
],
"icon": "favicon-inverted.png",
"win": {
"target": [
"nsis",
"portable"
]
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.productivity"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}