From d0c5bf142ddbb43977a8f68110a317dce6700972 Mon Sep 17 00:00:00 2001 From: Sandro642 Date: Sat, 26 Oct 2024 17:06:30 +0200 Subject: [PATCH] Set package to private Change the "private" field in package.json to true. This will prevent the package from being accidentally published to public repositories. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4feaf639..a9d4d5b3 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "bugs": { "url": "https://github.com/dscalzi/HeliosLauncher/issues" }, - "private": false, + "private": true, "main": "index.js", "scripts": { "start": "electron .",