Files
moeka-project/services/minecraft/package.json
T
2025-04-07 18:48:37 +08:00

45 lines
1.5 KiB
JSON

{
"name": "@proj-airi/minecraft-bot",
"type": "module",
"private": true,
"description": "An intelligent Minecraft bot powered by LLM. AIRI can understand natural language commands, interact with the world, and assist players in various tasks.",
"scripts": {
"dev": "dotenvx run -f .env -f .env.local --overload --debug --ignore=MISSING_ENV_FILE -- tsx src/main.ts",
"start": "dotenvx run -f .env -f .env.local --overload --ignore=MISSING_ENV_FILE -- tsx src/main.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"dependencies": {
"@guiiai/logg": "^1.0.7",
"@proj-airi/server-sdk": "^0.4.19",
"awilix": "^12.0.5",
"es-toolkit": "^1.34.1",
"eventemitter3": "^5.0.1",
"minecraft-data": "^3.85.0",
"mineflayer": "^4.27.0",
"mineflayer-armor-manager": "^2.0.1",
"mineflayer-auto-eat": "^5.0.1",
"mineflayer-collectblock": "^1.6.0",
"mineflayer-pathfinder": "^2.4.5",
"mineflayer-pvp": "^1.3.2",
"mineflayer-tool": "^1.2.0",
"neuri": "^0.1.4",
"prismarine-block": "^1.21.0",
"prismarine-entity": "^2.5.0",
"prismarine-item": "^1.16.0",
"prismarine-recipe": "^1.3.1",
"prismarine-viewer": "^1.33.0",
"prismarine-windows": "^2.9.0",
"valibot": "1.0.0-beta.9",
"vec3": "^0.1.10",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.39.1",
"dotenv": "^16.4.7"
}
}