From 27c4cda01a19e43b8ca19846b90a82ffb97b1aa8 Mon Sep 17 00:00:00 2001 From: itdominator <1itdominator@gmail.com> Date: Sun, 6 Jul 2025 11:55:02 -0500 Subject: [PATCH] Adding more linux build options; changed default to be zip --- package.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0750a29..c0b6556 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,8 @@ "version": "0.0.1", "author": "ITDominator", "license": "GPL-2.0-only", + "homepage": "https://www.itdominator.com", + "email": "1itdominator@gmail.com", "main": "newton/main.js", "private": true, "scripts": { @@ -11,6 +13,7 @@ "electron-start": "electron . --trace-warnings --start-as=build", "electron-pack": "ng build --base-href ./ && electron-builder --dir", "electron-dist": "ng build --base-href ./ && electron-builder", + "electron-dist-linux": "ng build --base-href ./ && electron-builder --linux deb zip AppImage", "electron-dist-all": "ng build --base-href ./ && electron-builder -mwl", "electron-concurrently": "concurrently 'ng serve' 'electron . --trace-warnings --start-as=ng-serve'", "ng-serve": "ng serve", @@ -36,8 +39,9 @@ "target": "portable" }, "linux": { - "target": "AppImage", - "category": "Development" + "target": "zip", + "category": "Development", + "maintainer": "ITDominator" } }, "postinstall": "electron-builder install-app-deps",