56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"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": {
|
|
"dotenv-packed": "^1.2.1",
|
|
"minecraft-data": "^2.73.1",
|
|
"mineflayer": "^2.40.1",
|
|
"mineflayer-armor-manager": "^1.4.0",
|
|
"mineflayer-pathfinder": "^1.3.6",
|
|
"mineflayer-pvp": "^1.0.2",
|
|
"prismarine-block": "^1.7.3",
|
|
"prismarine-chat": "^1.0.3",
|
|
"prismarine-entity": "^1.1.0",
|
|
"prismarine-item": "^1.5.0",
|
|
"prismarine-nbt": "^1.4.0",
|
|
"prismarine-recipe": "^1.1.0",
|
|
"typescript": "^4.1.3",
|
|
"vec3": "^0.1.7"
|
|
},
|
|
"files": [
|
|
"lib/**/*"
|
|
]
|
|
}
|