Skip to content

Commit

Permalink
-Explicitly set targets for Linux and Mac
Browse files Browse the repository at this point in the history
-Provide valid application category for Linux and Mac
-Remove unwanted keys from package.json
  • Loading branch information
chrisknepper committed Jun 21, 2018
1 parent 3a6d14b commit 41ed205
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"productName": "Android Messages",
"description": "Google's Android Messages web client, as a desktop app",
"version": "0.0.1",
"private": true,
"author": "Chris Knepper <[email protected]>",
"copyright": "© 2018 Chris Knepper",
"homepage": "https://github.com/chrisknepper/android-messages-desktop",
Expand All @@ -22,7 +21,21 @@
"directories": {
"buildResources": "resources"
},
"publish": null
"mac": {
"category": "public.app-category.social-networking",
"target": [
"zip",
"dmg"
]
},
"linux": {
"category": "Chat",
"target": [
"deb",
"AppImage",
"snap"
]
}
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
Expand Down

0 comments on commit 41ed205

Please sign in to comment.