forked from Minecraft-Pathfinding/minecraft-pathfinding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"dependencies": {
"@nxg-org/mineflayer-physics-util": "1.5.8",
"@nxg-org/mineflayer-util-plugin": "^1.8.3",
"heap-typed": "^1.52.0",
"lru-cache": "^10.1.0"
},
"scripts": {
"prepublishOnly": "npm run lint && npm run build",
"build": "tsc -p ./tsconfig.json",
"pub": "npm run lint && npm run build && npm publish --access public",
"lint": "ts-standard -y --fix"
},
"name": "@nxg-org/mineflayer-pathfinder",
"version": "0.0.19",
"description": "Pathfinder using A* for mineflayer",
"main": "dist/index.js",
"repository": "https://github.com/Minecraft-Pathfinding/minecraft-pathfinding.git",
"author": "GenerelSchwerz <xXSG.KingXx@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@nxg-org/mineflayer-pathfinder": "file:./",
"cors": "^2.8.5",
"express": "^4.18.2",
"mineflayer": "^4.10.1",
"prismarine-viewer": "^1.28.0",
"ts-standard": "^12.0.2",
"typescript": "^5.3.3",
"vec3": "^0.1.8"
},
"ts-standard": {
"ignore": [
"examples"
]
}
}