-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@proj-airi/minecraft-bot",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@9.15.4",
"description": "An intelligent Minecraft bot powered by LLM. AIRI can understand natural language commands, interact with the world, and assist players in various tasks.",
"main": "src/main.ts",
"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",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.33.0",
"@guiiai/logg": "^1.0.7",
"@proj-airi/server-sdk": "^0.1.4",
"@typeschema/zod": "^0.14.0",
"awilix": "^12.0.4",
"dotenv": "^16.4.7",
"es-toolkit": "^1.31.0",
"eventemitter3": "^5.0.1",
"minecraft-data": "^3.83.1",
"mineflayer": "^4.25.0",
"mineflayer-armor-manager": "^2.0.1",
"mineflayer-auto-eat": "^5.0.0",
"mineflayer-collectblock": "^1.5.0",
"mineflayer-pathfinder": "^2.4.5",
"mineflayer-pvp": "^1.3.2",
"mineflayer-tool": "^1.2.0",
"neuri": "^0.0.19",
"prismarine-block": "^1.20.0",
"prismarine-entity": "^2.4.0",
"prismarine-item": "^1.16.0",
"prismarine-recipe": "^1.3.1",
"prismarine-viewer": "^1.29.0",
"prismarine-windows": "^2.9.0",
"vec3": "^0.1.10",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"eslint": "^9.18.0",
"lint-staged": "^15.4.1",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}