From 5839c0dcfcddc8271b166a6dc3c2b0b3ab1b6aba Mon Sep 17 00:00:00 2001 From: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> Date: Sat, 4 Oct 2025 17:48:35 +0200 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20=F0=9F=A4=96=20Add=20strict=20.npm?= =?UTF-8?q?rc=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .npmrc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..f46fe20a3 --- /dev/null +++ b/.npmrc @@ -0,0 +1,8 @@ +# If set to false, then ignore package-lock.json files when installing. This will also prevent writing package-lock.json if save is true. source: https://docs.npmjs.com/cli/v11/using-npm/config +package-lock=true +# If true, npm does not run scripts specified in package.json files. source: https://docs.npmjs.com/cli/v11/using-npm/config#ignore-scripts +ignore-scripts=true +# Dependencies saved to package.json will be configured with an exact version rather than using npm's default semver range operator. source: https://docs.npmjs.com/cli/v11/using-npm/config#save-exact +save-exact=true +# If set to true, then npm will stubbornly refuse to install (or even consider installing) any package that claims to not be compatible with the current Node.js version. source: https://docs.npmjs.com/cli/v11/using-npm/config#engine-strict +engine-strict=true From 5ed1279d657fb15a8f77ed5b2a6c9be45f815a1d Mon Sep 17 00:00:00 2001 From: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> Date: Sat, 4 Oct 2025 17:49:35 +0200 Subject: [PATCH 2/2] Add engines field to package.json --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 3efdde53f..a978b3588 100644 --- a/package.json +++ b/package.json @@ -74,5 +74,8 @@ "registry": "https://registry.npmjs.org/" }, "homepage": "https://db-ui.github.io/elements/", - "packageManager": "npm@10.9.2" + "packageManager": "npm@10.9.2", + "engines": { + "node": ">= 22" + } }