forked from PrismarineJS/mineflayer-statemachine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 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
53
54
55
56
57
58
59
60
61
{
"name": "mineflayer-statemachine",
"version": "1.7.0",
"description": "A state machine plugin for Mineflayer to aid in designing more complex behavior trees.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "ts-standard && tsc",
"clean": "rm -rf lib",
"test": "test",
"fix-lint": "ts-standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheDudeFromCI/mineflayer-statemachine.git"
},
"keywords": [
"ai",
"bot",
"mineflayer",
"state",
"machine",
"fsm"
],
"author": "TheDudeFromCI",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheDudeFromCI/mineflayer-statemachine/issues"
},
"homepage": "https://github.com/TheDudeFromCI/mineflayer-statemachine#readme",
"dependencies": {
"express": "^4.18.1",
"minecraft-data": "^3.10.2",
"mineflayer": "^4.4.0",
"mineflayer-pathfinder": "^2.3.1",
"node": "^19.1.0",
"prismarine-block": "^1.16.3",
"prismarine-entity": "^2.1.1",
"prismarine-item": "^1.11.5",
"socket.io": "^4.5.1",
"vec3": "^0.1.7"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.8",
"@types/socket.io": "^3.0.2",
"ts-standard": "^12.0.2",
"typed-emitter": "^2.1.0",
"typescript": "^5.0.4"
},
"files": [
"lib/**/*",
"web/**/*"
],
"ts-standard": {
"ignore": [
"web",
"lib"
]
}
}