-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 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
{
"name": "chatgpt-desktop-companion",
"version": "1.0.2",
"main": "main.js",
"description": "ChatGPT desktop companion allows you to parallelly run ChatGPT as a sidebar desktop app when working on your computer",
"homepage": "https://think.dj/",
"keywords": [
"productivity", "chatgpt", "chat-gpt", "desktop", "companion", "electron"
],
"author": {
"name": "thinkdj",
"email": "[email protected]",
"url": "https://think.dj/"
},
"repository": {
"type": "git",
"url": "https://github.com/thinkdj/ChatGPT-Desktop-Companion.git"
},
"build": {
"productName": "ChatGPT Desktop Companion",
"appId": "dj.think.chatgpt-desktop-companion",
"directories": {
"output": "dist"
},
"mac": {
"category": "public.app-category.productivity"
},
"win": {
"icon": "build/icon.ico",
"target": "nsis",
"publisherName": "ChatGPT"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build-assets/icon.ico",
"uninstallerIcon": "build-assets/icon.ico",
"installerHeaderIcon": "build-assets/icon.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "ChatGPT Desktop Companion"
}
},
"scripts": {
"start": "electron .",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"electron-prompt": "^1.7.0",
"electron-store": "^8.1.0"
},
"devDependencies": {
"electron": "^23.1.1",
"electron-builder": "^23.6.0",
"electron-reload": "^2.0.0-alpha.1"
}
}