-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1014 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
39
{
"author": "Green Meteor",
"build": {
"appId": "com.greenmeteor.browser",
"directories": {
"output": "dist"
},
"files": [ "src/main.js", "src/preload.js", "src/index.html", "src/icons/**/*", "!src/**/*.spec.js" ],
"linux": {
"category": "Network",
"icon": "src/icons/512x512.png",
"target": [ "AppImage", "deb", "rpm" ]
},
"mac": {
"category": "public.app-category.networking",
"icon": "src/icons/512x512.png",
"target": "dmg"
},
"productName": "HumHub Browser",
"win": {
"icon": "src/icons/512x512.png",
"target": "nsis"
}
},
"description": "A lightweight desktop application for browsing HumHub websites.",
"devDependencies": {
"electron": "^33.3.1",
"electron-builder": "^25.1.8"
},
"license": "ISC",
"main": "src/main.js",
"name": "humhub-browser",
"productName": "HumHub Browser",
"scripts": {
"build": "electron-builder",
"start": "electron ."
},
"version": "1.0.0"
}