forked from danielbuechele/goofy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "goofy-builder",
"version": "3.3.1",
"description": "The electron-builder script to build Goofy",
"main": "app/src/main.js",
"scripts": {
"lint": "eslint ./app",
"postinstall": "install-app-deps",
"start": "node ./env.js && electron ./app --enable-logging",
"build-mac": "node ./env.js && build -m --x64",
"build-win": "node ./env.js && build -w --x64"
},
"repository": "https://github.com/danielbuechele/Goofy",
"keywords": [
"Facebook",
"chat",
"messenger",
"goofy"
],
"author": "Daniel Büchele",
"license": "MIT",
"devDependencies": {
"@sep/eslint-config-sep": "^1.0.14",
"electron": "^1.6.3",
"electron-builder": "^10.8.0"
},
"build": {
"productName": "Goofy",
"icon": "./icon/AppIcon",
"appId": "cc.buechele.Goofy",
"win": {
"target": [
"nsis"
],
"iconUrl": "https://"
},
"mac": {
"target": [
"zip"
],
"bundleVersion": "2001"
},
"publish": [
"github"
]
}
}