Set engines.node in package.json

pull/453/head
MattIPv4 2023-11-06 23:34:10 +00:00
parent eb5d94da2e
commit 1b59367f4a
2 changed files with 7 additions and 1 deletions

3
package-lock.json generated
View File

@ -58,6 +58,9 @@
"vue-template-compiler": "^2.7.14", "vue-template-compiler": "^2.7.14",
"webpack": "^5.88.2", "webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0" "webpack-bundle-analyzer": "^4.9.0"
},
"engines": {
"node": "20.9.0"
} }
}, },
"node_modules/@aashutoshrathi/word-wrap": { "node_modules/@aashutoshrathi/word-wrap": {

View File

@ -2,8 +2,11 @@
"name": "nginxconfig.io", "name": "nginxconfig.io",
"version": "1.0.0", "version": "1.0.0",
"description": "NGINX config generator on steroids", "description": "NGINX config generator on steroids",
"private": true,
"license": "MIT", "license": "MIT",
"private": true,
"engines": {
"node": "20.9.0"
},
"main": "src/nginxconfig/mount.js", "main": "src/nginxconfig/mount.js",
"type": "module", "type": "module",
"scripts": { "scripts": {