2020-12-21 16:08:38 +00:00
{
"name" : "angram-bot" ,
"version" : "0.1.0" ,
"description" : "A high-level, general purpose and modular minecraft bot using hot re-loadable (without restarting the bot!) plugins. Batteries included, launch to run!" ,
"main" : "index.js" ,
"scripts" : {
"test" : "jest --verbose" ,
"pretest" : "pnpm run lint && require-self" ,
"prepare" : "pnpm install require-self && require-self" ,
"lint" : "standard" ,
"fix" : "standard --fix" ,
"dev" : "node ./lib/index.js localhost" ,
"prod" : "node ./lib/index.js games.protospace.ca"
} ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/PrismarineJS/prismarine-template.git"
} ,
"keywords" : [
"prismarine" ,
"template" ,
"minecraft" ,
"mineflayer" ,
"ai"
] ,
"author" : "Jay" ,
"license" : "MIT" ,
"bugs" : {
"url" : "https://github.com/PrismarineJS/prismarine-template/issues"
} ,
"homepage" : "https://github.com/PrismarineJS/prismarine-template#readme" ,
"devDependencies" : {
"jest" : "^26.6.3" ,
"require-self" : "^0.2.3"
} ,
"dependencies" : {
2020-12-25 02:20:05 +00:00
"dotenv-packed" : "^1.2.1" ,
2020-12-21 16:08:38 +00:00
"minecraft-data" : "^2.70.2" ,
2020-12-25 02:20:05 +00:00
"mineflayer" : "^2.39.2" ,
"mineflayer-armor-manager" : "^1.3.0" ,
"mineflayer-pathfinder" : "^1.2.3" ,
"mineflayer-pvp" : "^1.0.2" ,
"prismarine-block" : "^1.7.2" ,
"prismarine-chat" : "^1.0.3" ,
2020-12-21 16:08:38 +00:00
"prismarine-entity" : "^1.1.0" ,
"prismarine-item" : "^1.5.0" ,
2020-12-25 02:20:05 +00:00
"prismarine-nbt" : "^1.3.0" ,
"prismarine-recipe" : "^1.1.0" ,
"typescript" : "^4.1.3" ,
"vec3" : "^0.1.7"
2020-12-21 16:08:38 +00:00
} ,
"files" : [
"lib/**/*"
]
}