forked from inulute/ai-gate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "ai-gate",
"productName": "AI Gate",
"version": "2.0.0",
"description": "Ai Gate by inulute.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"package-mac": "electron-builder --mac",
"package-win": "electron-builder --win",
"package-linux": "electron-builder --linux"
},
"repository": "https://github.com/inulute/ai-gate",
"author": "inulute",
"license": "MIT",
"devDependencies": {
"electron": "^22.0.0",
"electron-builder": "^24.6.3"
},
"dependencies": {
"electron-prompt": "^1.7.0"
},
"build": {
"appId": "com.inulute.aigate",
"productName": "Inulute AI Gate",
"directories": {
"output": "release-builds"
},
"mac": {
"category": "your.app.Productivity",
"icon": "assets/icons/mac/favicon.icns"
},
"win": {
"target": "nsis",
"icon": "assets/icons/win/favicon.ico"
},
"linux": {
"target": "AppImage",
"icon": "assets/icons/png/favicon.png",
"category": "Utility"
}
}
}