-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.21 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
45
46
47
48
49
50
51
52
{
"name": "TheCyberHUB",
"version": "1.0.0",
"description": "A desktop application for TheCyberHUB website",
"main": "src/main.js",
"author": "Your Name",
"license": "MIT",
"homepage": "https://thecyberhub.com",
"scripts": {
"start": "electron .",
"package": "electron-builder",
"build": "npm run build:windows",
"build:windows": "electron-builder --win nsis -p never",
"lint": "eslint .",
"test": "echo \"No tests specified\" && exit 0"
},
"build": {
"appId": "com.thecyberhub.desktop",
"files": [
"dist/**/*",
"src/main.js"
],
"win": {
"icon": "th3cyb3rhub-fav.ico",
"target": [
"nsis"
],
"sign": false
},
"mac": {
"icon": "th3cyb3rhub-fav.icns"
},
"publish": {
"provider": "github",
"owner": "th3cyb3rhub",
"repo": "TheCyberHUB-Desktop",
"releaseType": "release"
}
},
"devDependencies": {
"electron": "^33.0.2",
"electron-builder": "^25.1.8",
"eslint": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/th3cyb3rhub/TheCyberHUB-Desktop.git"
},
"bugs": {
"url": "https://github.com/th3cyb3rhub/TheCyberHUB-Desktop/issues"
}
}