-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 722 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 722 Bytes
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": "fbm",
"version": "1.2.2",
"description": "Facebook Messenger desktop app",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"electron-window-state": "^5.0.3"
},
"devDependencies": {
"electron": "latest",
"electron-builder": "latest"
},
"build": {
"appId": "com.heresy.fbmessenger",
"productName": "Facebook Messenger",
"publish": null,
"directories": {
"output": "dist"
},
"win": {
"target": "nsis",
"icon": "icon.ico",
"artifactName": "${productName}-${version}.${ext}"
},
"mac": {
"target": "dmg",
"icon": "icon.icns",
"identity": null
}
}
}