-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
{
"name": "dyobot",
"version": "1.0.0",
"description": "Voyager-style Mineflayer AI bot sidecar for DyoCraft",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js"
},
"dependencies": {
"@babel/generator": "^7.29.1",
"@babel/parser": "^7.29.2",
"@babel/traverse": "^7.29.0",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^4.21.0",
"js-yaml": "^4.1.0",
"minecraft-data": "^3.69.0",
"mineflayer": "^4.35.0",
"mineflayer-collectblock": "^1.6.0",
"mineflayer-pathfinder": "^2.4.5",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"prismarine-schematic": "^1.2.3",
"socket.io": "^4.8.3",
"vec3": "^0.1.10"
},
"devDependencies": {
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}