-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 911 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
36
37
38
{
"name": "@rob9315/mcproxy",
"version": "1.0.0",
"description": "a minecraft proxy library powered by mineflayer",
"keywords": [
"minecraft",
"proxy",
"library",
"mineflayer"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rob9315/mcproxy.git"
},
"license": "GPL-3.0",
"author": "rob9315",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"prepublish": "npm run build",
"fix": "standard-markdown --fix"
},
"prettier": "@rob9315/prettier-config",
"dependencies": {
"minecraft-data": "^3.0.0",
"minecraft-protocol": "^1.32.0",
"mineflayer": "^4.1.0",
"prismarine-item": "^1.11.5",
"smart-buffer": "^4.2.0"
},
"devDependencies": {
"@rob9315/prettier-config": "latest",
"@types/node": "^16.6.2",
"standard-markdown": "^7.1.0",
"typescript": "^4.3.5"
}
}