forked from PrismarineJS/mineflayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "mineflayer",
"version": "4.14.0",
"description": "create minecraft bots with a stable, high level API",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"mocha_test": "mocha --reporter spec --exit",
"test": "npm run mocha_test",
"pretest": "npm run lint",
"lint": "standard && standard-markdown",
"fix": "standard --fix && standard-markdown --fix",
"prepublishOnly": "cp docs/README.md README.md"
},
"repository": {
"type": "git",
"url": "git://github.com/PrismarineJS/mineflayer.git"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"dependencies": {
"minecraft-data": "^3.44.0",
"minecraft-protocol": "^1.44.0",
"prismarine-biome": "^1.1.1",
"prismarine-block": "^1.17.0",
"prismarine-chat": "^1.7.1",
"prismarine-chunk": "^1.34.0",
"prismarine-entity": "^2.3.0",
"prismarine-item": "^1.14.0",
"prismarine-nbt": "^2.0.0",
"prismarine-physics": "^1.8.0",
"prismarine-recipe": "^1.3.0",
"prismarine-registry": "^1.5.0",
"prismarine-windows": "^2.8.0",
"prismarine-world": "^3.6.0",
"protodef": "^1.14.0",
"typed-emitter": "^1.0.0",
"vec3": "^0.1.7"
},
"devDependencies": {
"@types/node": "^20.2.1",
"doctoc": "^2.0.1",
"minecraft-wrap": "^1.3.0",
"mineflayer": "file:.",
"mocha": "^10.0.0",
"standard": "^17.0.0",
"standard-markdown": "^7.1.0",
"typescript": "^5.0.3"
}
}