-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 908 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 908 Bytes
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
{
"name": "minecraft-assistant",
"version": "1.0.0",
"description": "Modular Minecraft assistant bot for offline-mode servers",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"build": "npm install --include=dev --no-audit --no-fund && tsc -p tsconfig.json",
"build:compile": "tsc -p tsconfig.json",
"test": "npm run build:compile --silent && node -e \"console.log('No tests configured')\""
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"dotenv": "^17.4.2",
"mineflayer": "^4.37.0",
"mineflayer-auto-eat": "^5.0.3",
"mineflayer-collectblock": "^1.6.0",
"mineflayer-pathfinder": "^2.4.5",
"mineflayer-tool": "^1.2.0",
"typescript": "^6.0.3",
"vec3": "^0.2.0"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.21.0"
}
}