From dc0ecad6c2e8ff2ea7e7eb81de3bda04ec7b4cab Mon Sep 17 00:00:00 2001 From: Mario Minardi Date: Mon, 15 Dec 2025 08:30:03 -0700 Subject: [PATCH] package.json: specify required node version Specify node >= 24.0.0 in the engines block as that is what we use and test with in CI. Updates #cleanup Signed-off-by: Mario Minardi --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 30a496e..f1591c9 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,9 @@ "version": "4.0.0", "description": "Connect your GitHub Action workflow to Tailscale", "main": "dist/main.js", + "engines": { + "node": ">=24.0.0" + }, "scripts": { "build": "ncc build src/main.ts -o dist && ncc build src/logout/logout.ts -o dist/logout" },