feat: 🎉 init new repo
Dump of current working bot. Warning: somewhat messy code! Lints haven't been run, no tests, etc.
This commit is contained in:
56
package.json
Normal file
56
package.json
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"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": {
|
||||
"minecraft-data": "^2.70.2",
|
||||
"mineflayer": "^2.34.0",
|
||||
"mineflayer-armor-manager": "^1.3",
|
||||
"mineflayer-pathfinder": "^1.1",
|
||||
"mineflayer-pvp": "^1",
|
||||
"prismarine-block": "^1",
|
||||
"prismarine-chat": "^1",
|
||||
"prismarine-entity": "^1.1.0",
|
||||
"prismarine-gameplay": "github:TheDudeFromCI/prismarine-gameplay#crafting",
|
||||
"prismarine-item": "^1.5.0",
|
||||
"prismarine-nbt": "^1.3",
|
||||
"prismarine-recipe": "^1",
|
||||
"typescript": "^4",
|
||||
"vec3": "^0.1",
|
||||
"dotenv-packed": "^1.2"
|
||||
},
|
||||
"files": [
|
||||
"lib/**/*"
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user