Require Node 18 or above in package.json

This commit is contained in:
mrrfv
2023-09-10 12:24:34 +02:00
parent cd91b32d4d
commit 40a3c96a7d
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -6,6 +6,9 @@
"": { "": {
"dependencies": { "dependencies": {
"dotenv": "^16.0.3" "dotenv": "^16.0.3"
},
"engines": {
"node": ">=18"
} }
}, },
"node_modules/dotenv": { "node_modules/dotenv": {
+3
View File
@@ -2,5 +2,8 @@
"type": "module", "type": "module",
"dependencies": { "dependencies": {
"dotenv": "^16.0.3" "dotenv": "^16.0.3"
},
"engines": {
"node" : ">=18"
} }
} }