This commit is contained in:
Andrew 2023-03-26 17:02:24 +07:00
commit 273aaf31ee
7 changed files with 1048 additions and 0 deletions

20
package.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "mc_autobot",
"version": "1.0.0",
"description": "Minecraft bot for SibMC",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "nuark",
"license": "MIT",
"dependencies": {
"minecraft-data": "^2.110.0",
"mineflayer": "^3.15.0",
"mineflayer-pathfinder": "^1.9.1",
"vec3": "^0.1.7"
}
}