Switched bot to use nodejs.

This commit is contained in:
2023-06-25 12:16:20 +02:00
parent 14a59e5c66
commit 949cb4be86
12 changed files with 2147 additions and 141 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "mcr-bot",
"version": "1.0.0",
"description": "This repo contains the script to manage multiple mcr bot on a single VM/Container.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://git.justw.tf/Lightemerald/mcr-bot.git"
},
"author": "Lightemerald",
"dependencies": {
"child_process": "^1.0.2",
"dotenv": "^16.3.1",
"eslint": "^8.43.0"
}
}