From 41ed2059f85784956ab6f4b9b4925b3e99bf4dcf Mon Sep 17 00:00:00 2001 From: Chris Knepper Date: Thu, 21 Jun 2018 15:39:06 -0400 Subject: [PATCH] -Explicitly set targets for Linux and Mac -Provide valid application category for Linux and Mac -Remove unwanted keys from package.json --- package.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 66a03ce9..ddf69f9f 100644 --- a/package.json +++ b/package.json @@ -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 ", "copyright": "© 2018 Chris Knepper", "homepage": "https://github.com/chrisknepper/android-messages-desktop", @@ -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",