generated from PrismarineJS/prismarine-template
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "mineflayer-swarm",
"version": "1.3.0",
"description": "Allows you to control an entire mineflayer bot swarm with minimal additional code",
"main": "dist/index.js",
"scripts": {
"test": "jest --verbose",
"pretest": "npm run lint",
"lint": "eslint . --ext .ts",
"fix": "eslint --fix . --ext .ts",
"build:tsc": "tsc",
"build:docs": "typedoc --options typedoc.json",
"build": "npm run build:tsc && npm run build:docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pandapip1/mineflayer-swarm.git"
},
"keywords": [
"prismarine",
"mineflayer",
"minecraft",
"bot",
"swarm"
],
"author": "Pandapip1",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pandapip1/mineflayer-swarm/issues"
},
"homepage": "https://github.com/Pandapip1/mineflayer-swarm#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.5",
"eslint-config-standard-with-typescript": "^37.0.0",
"eventemitter3": "^5.0.0",
"minecraft-protocol": "^1.30.0",
"mineflayer": "git+https://github.com/PrismarineJS/mineflayer.git",
"typed-emitter": "^2.0.0"
},
"devDependencies": {
"@types/node": "20.12.7",
"eslint": "8.57.0",
"jest": "29.7.0",
"mineflayer-swarm": "file:.",
"typedoc": "0.25.13",
"typedoc-plugin-markdown": "3.17.1",
"typescript": "5.4.5"
}
}