-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.57 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.57 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "gemini-desktop",
"version": "1.0.2",
"main": "src/main.js",
"scripts": {
"start": "nodemon --exec electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "electron-builder build",
"build:linux": "electron-builder build --linux",
"build:win": "electron-builder build --windows",
"build:mac": "electron-builder build --macos",
"build:all": "electron-builder build -wl"
},
"build": {
"appId": "com.gemini.app",
"productName": "Gemini",
"copyright": "Copyright © 2026",
"directories": {
"output": "dist"
},
"publish": [
{
"provider": "github",
"owner": "huff-dev",
"repo": "gemini-desktop-minimal",
"private": false
}
],
"win": {
"target": "nsis",
"icon": "assets/App_icon.ico"
},
"mac": {
"target": "zip",
"icon": "assets/App_icon.png",
"category": "public.app-category.productivity"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"executableName": "Gemini",
"icon": "assets/App_icon.png",
"maintainer": "huff-dev <hmj.dev@proton.me>",
"category": "Office"
},
"files": [
"assets/**/*",
"src/**/*",
"package.json"
]
},
"keywords": [],
"author": "huff-dev <hmj.dev@proton.me>",
"license": "ISC",
"description": "Google Gemini Desktop Application",
"devDependencies": {
"electron": "^41.2.0",
"electron-builder": "^26.8.1",
"nodemon": "^3.1.14"
},
"dependencies": {
"electron-updater": "^6.8.3"
}
}