Create basic bot

This commit is contained in:
2024-05-17 14:41:51 -03:00
parent db2089cb4a
commit 6e3e932648
3 changed files with 1421 additions and 0 deletions

18
package.json Normal file
View File

@ -0,0 +1,18 @@
{
"name": "@guilhermewerner/tcc1",
"version": "0.1.0",
"repository": "https://github.com/GuilhermeWerner/TCC1",
"author": "Guilherme Werner <guilhermewerner@tribufu.com>",
"license": "MIT",
"type": "module",
"scripts": {
"start": "node ./src/bot.js"
},
"dependencies": {
"mineflayer": "^4.20.1",
"prismarine-viewer": "^1.28.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}