-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 989 Bytes
/
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
{
"name": "@nxg-org/mineflayer-common-sense",
"version": "1.2.1",
"description": "Miscellaneous functions to handle different minecraft events.",
"keywords": [
"mineflayer",
"mineflayer-plugin",
"auto-eat",
"mineflayer-common-sense"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nxg-org/mineflayer-common-sense.git"
},
"license": "GPL-3.0",
"author": "generel_schwerz",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"prepublish": "npm run build",
"example": "ts-node -T example/basic.ts"
},
"dependencies": {
"@nxg-org/mineflayer-util-plugin": "^1.8.2",
"assert": "^2.0.0",
"js-levenshtein": "^1.1.6",
"prismarine-physics": "^1.6.0"
},
"devDependencies": {
"@types/node": "^16.11.11",
"mineflayer": "^4.8.0",
"typescript": "^4.5.2"
}
}