-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "mineflayer-armor-manager",
"version": "2.0.1",
"description": "Manage armor automatically with various configs",
"main": "./dist/index.js",
"scripts": {
"clear": "rm -rf ./dist",
"build": "npm run clear && tsc",
"test": "tsc",
"format": "prettier --list-different --write .",
"format:check": "prettier --check .",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/G07cha/MineflayerArmorManager.git"
},
"keywords": [
"mineflayer",
"minecraft",
"armor"
],
"author": "G07cha",
"license": "MIT",
"bugs": {
"url": "https://github.com/G07cha/MineflayerArmorManager/issues"
},
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/G07cha/MineflayerArmorManager#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.8.0",
"mocha": "^11.0.1",
"prettier": "^3.0.0",
"prismarine-item": "^1.12.2",
"prismarine-windows": "^2.6.1",
"typescript": "^5.1.6"
},
"dependencies": {
"minecraft-data": "^3.38.0"
},
"peerDependencies": {
"mineflayer": "^4.10.0"
},
"files": [
"dist/**/*"
]
}