-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1 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
{
"name": "comet-x-desktop",
"version": "0.1.0",
"description": "Comet-X Desktop - Magical AI Assistant 🇸🇦",
"main": "src/main/index.js",
"author": "Sulaiman Alshammari <admin@gratech.sa>",
"license": "PROPRIETARY",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux"
},
"dependencies": {
"electron-store": "^8.1.0"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "sa.gratech.cometx",
"productName": "Comet-X",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"assets/**/*",
"package.json"
],
"win": {
"target": ["nsis", "portable"],
"icon": "assets/icons/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}