forked from HybrisMC/HybrProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.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
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
{
"name": "hybrproxy",
"version": "1.0.0-dev",
"description": "Official HybrProxy Minecraft Proxy",
"main": "build/index.js",
"bin": "build/index.js",
"scripts": {
"debug": "nodemon . --skipUpdater --noTracking --noTray",
"generateConfigSchema": "typescript-json-schema src/Types.ts Config",
"clean": "node ./scripts/clean.js",
"build": "npm run clean && node ./scripts/build.js",
"start": "node build/index.js",
"dev": "nodemon --watch src --watch plugins -x \"npm test\" -e js,ts,json",
"watch": "nodemon --watch plugins -x \"npm start\" -e js,json",
"postinstall": "patch-package && cd dashboard && npm install",
"test": "npm run build -- --noDashboard && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HybrisMC/HybrProxy.git"
},
"keywords": [
"proxy",
"minecraft",
"hybrproxy",
"hypixel",
"hybris",
"hybrismc"
],
"author": "TBHGodPro",
"license": "GPL-3.0",
"homepage": "https://github.com/HybrisMC/HybrProxy#readme",
"dependencies": {
"@minecraft-js/chat": "^1.0.0",
"@minecraft-js/lunarbukkitapi": "^1.1.3",
"@minecraft-js/uuid": "^1.0.3",
"axios": "^0.26.0",
"chalk": "^4.1.2",
"discord-rpc": "^4.0.1",
"hypixel-api-reborn": "^10.0.0",
"jsonschema": "^1.4.0",
"minecraft-protocol": "^1.32.0",
"node-downloader-helper": "^2.1.0",
"nodemon": "^2.0.19",
"patch-package": "^7.0.0",
"pkg": "^5.8.1",
"prismarine-proxy": "^1.1.1",
"structured-clone": "^0.2.2",
"systray": "^1.0.5",
"typed-emitter": "^2.1.0",
"typescript": "^5.0.4",
"typescript-json-schema": "^0.56.0",
"uuid": "^8.3.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/discord-rpc": "^4.0.3",
"@types/node": "^17.0.5",
"@types/node-fetch": "^2.6.2",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.4"
},
"pkg": {
"scripts": "build/**/*.js",
"assets": [
"node_modules/minecraft-packets/minecraft-packets/data/pc/1.8",
"assets",
"build/player/modules",
"package.json"
],
"targets": [
"node16-win-x64"
],
"outputPath": "dist/"
}
}