CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PrismarineJS

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: PrismarineJS/mineflayer
Path: blob/master/package.json
Views: 787
1
{
2
"name": "mineflayer",
3
"version": "4.27.0",
4
"description": "create minecraft bots with a stable, high level API",
5
"main": "index.js",
6
"types": "index.d.ts",
7
"scripts": {
8
"mocha_test": "mocha --reporter spec --exit",
9
"test": "npm run mocha_test",
10
"pretest": "npm run lint",
11
"lint": "standard && standard-markdown",
12
"fix": "standard --fix && standard-markdown --fix",
13
"prepublishOnly": "cp docs/README.md README.md"
14
},
15
"repository": {
16
"type": "git",
17
"url": "git://github.com/PrismarineJS/mineflayer.git"
18
},
19
"engines": {
20
"node": ">=22"
21
},
22
"license": "MIT",
23
"dependencies": {
24
"minecraft-data": "^3.76.0",
25
"minecraft-protocol": "^1.51.0",
26
"prismarine-biome": "^1.1.1",
27
"prismarine-block": "^1.17.0",
28
"prismarine-chat": "^1.7.1",
29
"prismarine-chunk": "^1.36.0",
30
"prismarine-entity": "^2.5.0",
31
"prismarine-item": "^1.15.0",
32
"prismarine-nbt": "^2.0.0",
33
"prismarine-physics": "^1.9.0",
34
"prismarine-recipe": "^1.3.0",
35
"prismarine-registry": "^1.10.0",
36
"prismarine-windows": "^2.9.0",
37
"prismarine-world": "^3.6.0",
38
"protodef": "^1.18.0",
39
"typed-emitter": "^1.0.0",
40
"vec3": "^0.1.7"
41
},
42
"devDependencies": {
43
"@types/node": "^22.1.0",
44
"doctoc": "^2.0.1",
45
"minecraft-wrap": "^1.3.0",
46
"mineflayer": "file:",
47
"mocha": "^11.0.1",
48
"protodef-yaml": "^1.5.3",
49
"standard": "^17.0.0",
50
"standard-markdown": "^7.1.0",
51
"typescript": "^5.4.5"
52
}
53
}
54
55