This commit is contained in:
Jonny_Bro (Nikita) 2023-03-28 16:19:20 +05:00
parent bd6edcd309
commit d1594b8278
3 changed files with 19 additions and 19 deletions

30
package-lock.json generated
View file

@ -15,7 +15,7 @@
"@discordjs/voice": "^0.15.0",
"btoa": "^1.2.1",
"canvacord": "^5.1.0",
"canvas": "^2.9.0",
"canvas": "^2.10.2",
"chalk": "^4.1.2",
"cron": "^2.1.0",
"discord-api-types": "^0.37.36",
@ -1087,13 +1087,13 @@
}
},
"node_modules/canvas": {
"version": "2.9.3",
"resolved": "https://registry.npmjs.org/canvas/-/canvas-2.9.3.tgz",
"integrity": "sha512-WOUM7ghii5TV2rbhaZkh1youv/vW1/Canev6Yx6BG2W+1S07w8jKZqKkPnbiPpQEDsnJdN8ouDd7OvQEGXDcUw==",
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/canvas/-/canvas-2.10.2.tgz",
"integrity": "sha512-FSmlsip0nZ0U4Zcfht0qBJqDhlfGuevTZKE8h+dBOYrJjGvY3iqMGSzzbvkaFhvMXiVxfcMaPHS/kge++T5SKg==",
"hasInstallScript": true,
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.0",
"nan": "^2.15.0",
"nan": "^2.17.0",
"simple-get": "^3.0.3"
},
"engines": {
@ -3142,9 +3142,9 @@
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
},
"node_modules/nan": {
"version": "2.16.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz",
"integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA=="
"version": "2.17.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz",
"integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="
},
"node_modules/natural-compare": {
"version": "1.4.0",
@ -5256,12 +5256,12 @@
}
},
"canvas": {
"version": "2.9.3",
"resolved": "https://registry.npmjs.org/canvas/-/canvas-2.9.3.tgz",
"integrity": "sha512-WOUM7ghii5TV2rbhaZkh1youv/vW1/Canev6Yx6BG2W+1S07w8jKZqKkPnbiPpQEDsnJdN8ouDd7OvQEGXDcUw==",
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/canvas/-/canvas-2.10.2.tgz",
"integrity": "sha512-FSmlsip0nZ0U4Zcfht0qBJqDhlfGuevTZKE8h+dBOYrJjGvY3iqMGSzzbvkaFhvMXiVxfcMaPHS/kge++T5SKg==",
"requires": {
"@mapbox/node-pre-gyp": "^1.0.0",
"nan": "^2.15.0",
"nan": "^2.17.0",
"simple-get": "^3.0.3"
}
},
@ -6789,9 +6789,9 @@
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
},
"nan": {
"version": "2.16.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz",
"integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA=="
"version": "2.17.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz",
"integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="
},
"natural-compare": {
"version": "1.4.0",

View file

@ -18,7 +18,7 @@
"@discordjs/voice": "^0.15.0",
"btoa": "^1.2.1",
"canvacord": "^5.1.0",
"canvas": "^2.9.0",
"canvas": "^2.10.2",
"chalk": "^4.1.2",
"cron": "^2.1.0",
"discord-api-types": "^0.37.36",

View file

@ -11,10 +11,10 @@ const checks = [
() => {
console.log("\n\nEnvironnement");
return new Promise(res => {
if (parseInt(process.version.split(".")[0].split("v")[1]) >= 12) {
success("node.js version equal or higher than v12");
if (parseInt(process.version.split(".")[0].split("v")[1]) >= 18) {
success("node.js version equal or higher than v18");
} else {
error("node.js version should be equal or higher than v12");
error("node.js version should be equal or higher than v18");
}
res();
});