forked from edizbaha/gemini-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 749 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 749 Bytes
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
{
"name": "gemini-desktop",
"version": "1.0.7",
"description": "A simple Gemini client using the Electron framework",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder"
},
"author": "@nekupaw",
"license": "ISC",
"devDependencies": {
"electron-builder": "^24.13.3",
"electron-winstaller": "^5.3.0",
"electron": "^32.1.2"
},
"dependencies": {
"electron-store": "^8.2.0",
"electron-tray": "^0.1.1"
},
"build": {
"appId": "gemini.neku.paw",
"productName": "Gemini-Desktop",
"directories": {
"output": "build"
},
"win": {
"target": "nsis",
"icon": "icon.png"
}
}
}