-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (61 loc) · 1.61 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "chatgpt-electron",
"version": "1.2.0",
"description": "Electron app for ChatGPT",
"main": "lib/index.js",
"scripts": {
"prestart": "npm run ts",
"start": "electron .",
"clean:dist": "rimraf ./dist",
"clean:lib": "rimraf ./lib",
"prets": "npm run clean:lib",
"ts": "tsc",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux deb"
},
"build": {
"productName": "ChatGPT",
"appId": "electron.chatgpt",
"directories": {
"output": "build"
},
"win": {
"icon": "resources/icons/icon.ico"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "resources/icons/icon.icns"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "resources/icons/icon.ico",
"uninstallerIcon": "resources/icons/icon.ico",
"installerHeaderIcon": "resources/icons/icon.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
},
"author": {
"name": "Nikola",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@types/auto-launch": "^5.0.2",
"@types/throttle-debounce": "^5.0.0",
"electron": "^23.0.0",
"electron-builder": "^23.6.0",
"typescript": "^4.9.5"
},
"dependencies": {
"auto-launch": "^5.0.5",
"electron-context-menu": "^3.6.1",
"electron-log": "^5.0.0-beta.16",
"electron-store": "^8.1.0",
"electron-util": "^0.17.2",
"throttle-debounce": "^5.0.0"
}
}