From ae027ea613f4aeccb329f76ac7ee08a6b690440f Mon Sep 17 00:00:00 2001 From: Ingo Fischer Date: Fri, 16 Jun 2023 22:00:45 +0200 Subject: [PATCH] Add Node.js version restrictions Assumed from last Changelog the current version supports Node.js 16, 18, 20 and we should also not block 21+ for now, Right? --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 9ec09ca71..24e0d6a4b 100644 --- a/package.json +++ b/package.json @@ -468,5 +468,8 @@ }, "pre-commit": "lint", "version": "7.0.0", - "support": true + "support": true, + "engines": { + "node": "^16 || ^18 || >= 20" + } }