-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
79 lines (79 loc) · 2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "minecraft-proxy",
"version": "1.5.0",
"description": "ProxyPass minecraft",
"exports": "./dist/index.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": "bin/mcproxy",
"scripts": {
"build": "tsc",
"test": "true",
"dev": "ts-node src/main.ts",
"prepublishOnly": "npm run build",
"pkg": "npm run build && pkg . -C Gzip",
"lint": "eslint --ext .js,.ts ."
},
"repository": {
"type": "git",
"url": "https://github.com/bangbang93/minecraft-proxy"
},
"keywords": [
"minecraft",
"proxy"
],
"author": "bangbang93",
"license": "MIT",
"bugs": {
"url": "https://github.com/bangbang93/minecraft-proxy/issues"
},
"homepage": "https://github.com/bangbang93/minecraft-proxy",
"devDependencies": {
"@bangbang93/eslint-config-recommended": "^0.0.1",
"@types/bluebird": "^3.5.29",
"@types/bunyan": "^1.8.6",
"@types/got": "^9.6.9",
"@types/js-yaml": "^3.12.2",
"@types/lodash": "^4.14.149",
"@types/ms": "^0.7.31",
"@types/node": "^13.5.1",
"@types/verror": "^1.10.5",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"pkg": "^5.7.0",
"ts-node": "^8.6.2",
"typescript": "^4.4.2"
},
"dependencies": {
"@sindresorhus/is": "^4.3.0",
"bluebird": "^3.7.2",
"bunyan": "^1.8.12",
"class-transformer": "^0.3.1",
"class-validator": "^0.14.0",
"eventemitter2": "^6.4.4",
"globby": "^11.0.3",
"got": "^11.8.5",
"ip-cidr": "^2.0.6",
"lodash": "^4.17.15",
"minecraft-data": "^3.33.0",
"minecraft-protocol": "^1.43.1",
"ms": "^2.1.3",
"p-map": "^4.0.0",
"p-timeout": "^4.1.0",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.16",
"tapable": "^2.2.1",
"typedi": "^0.8.0",
"verror": "^1.10.1",
"yaml-import": "^2.0.0"
},
"pkg": {
"outputPath": "pkg",
"targets": [
"node16-linuxstatic",
"node16-macos",
"node16-windows"
]
}
}