diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..f46fe20 --- /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 diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..a45fd52 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +24 diff --git a/package.json b/package.json index 8044dba..35932a1 100644 --- a/package.json +++ b/package.json @@ -13,5 +13,8 @@ "devDependencies": { "@db-ui/base": "0.29.0", "cpr": "^3.0.1" + }, + "engines": { + "node": ">= 24" } }