-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 914 Bytes
/
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
{
"name": "FlashCBT",
"version": "1.0.5",
"description": "A custom browser",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"build:linux": "electron-builder --linux",
"build:win": "electron-builder --win"
},
"author": "PathTech, <stevepathagoras08@gmail.com>",
"license": "ISC",
"build": {
"appId": "com.pathtech.FlashCBT",
"asar": true,
"win": {
"target": [
"appx",
"msi",
"squirrel"
],
"icon": "./public/jamb-logo.ico"
},
"linux": {
"target": "deb",
"icon": "./public/Official_JAMB_logo.png",
"category": "Utility"
}
},
"devDependencies": {
"electron": "28.0.0",
"electron-builder": "^24.9.1",
"electron-builder-squirrel-windows": "^24.9.3"
}
}