From 3e4f215bd119648b46a0f208ae5cf30f286f4a5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Fern=C3=A1ndez?= Date: Tue, 6 Sep 2022 14:54:47 +0200 Subject: [PATCH] Strictly check for LTS versions in engines * Also enforces a minimum version of 16.13.1 to avoid issues with lockfile v3: https://github.com/npm/cli/pull/3949 --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d2f05f9f..72c9efec 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,8 @@ "version": "0.0.0", "private": true, "engines": { - "node": ">=16.0.0" + "node": ">=16.13.1 <17.0.0", + "npm": ">=8.1.2" }, "scripts": { "docusaurus": "docusaurus",