forked from rob9315/mcproxy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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": "@icetank/mcproxy",
"version": "1.0.8-beta.3",
"description": "a minecraft proxy library powered by mineflayer",
"keywords": [
"minecraft",
"proxy",
"library",
"mineflayer"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IceTank/mcproxy.git"
},
"license": "GPL-3.0",
"author": "rob9315",
"contributors": [
{
"name": "IceTank",
"url": "https://github.com/IceTank"
}
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"prepublish": "npm run build",
"fix": "standard-markdown --fix"
},
"dependencies": {
"deepcopy": "^2.1.0",
"mineflayer": "^4.11.0",
"smart-buffer": "^4.2.0"
},
"devDependencies": {
"@types/node": "^16.6.2",
"minecraft-data": "^3.41.0",
"minecraft-protocol": "^1.44.0",
"prismarine-item": "^1.14.0",
"standard-markdown": "^7.1.0",
"typescript": "^4.3.5"
},
"bugs": {
"url": "https://github.com/icetank/mcproxy/issues"
},
"homepage": "https://github.com/icetank/mcproxy#readme",
"directories": {
"example": "examples",
"lib": "lib"
}
}