From 980c836d9da92482a6efab6cacbe949b23b1ad81 Mon Sep 17 00:00:00 2001 From: Sandro642 Date: Fri, 25 Oct 2024 21:16:50 +0200 Subject: [PATCH] Make package public Changed "private" field in package.json from true to false. This will make the package accessible on npm and allow others to install it. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d5271cf1..6f0a35ee 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "bugs": { "url": "https://github.com/dscalzi/HeliosLauncher/issues" }, - "private": true, + "private": false, "main": "index.js", "scripts": { "start": "electron .",