This repository has been archived by the owner on Feb 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (57 loc) · 1.72 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
{
"name": "brid-geo",
"version": "0.1.0",
"description": "Minecraft Bedrock Edition server proxy and rendering tool with MITM development framework.",
"keywords": [
"minecraft", "minecraft-bedrock", "minecraft-bedrock-edition",
"proxy", "relay", "mitm",
"render",
"minechat", "bridgeo"
],
"homepage": "https://github.com/Cdm2883/brid-geo",
"bugs": "https://github.com/Cdm2883/brid-geo/issues",
"license": "GNU Lesser General Public License v3.0 only",
"author": "Cdm2883 <[email protected]> (https://cdms.vip/)",
"repository": "github:Cdm2883/brid-geo",
"private": true,
"type": "module",
"scripts": {
"postinstall": "patch-package",
"dev": "tsx server.ts",
"debug": "set DEBUG=minecraft-protocol && tsx server.js",
"start": "set NODE_ENV=production && tsx server.ts",
"clear": "tsx scripts/clear.ts"
},
"dependencies": {
"bedrock-protocol": "3.42.3",
"bedrock-provider": "^3.1.0",
"minecraft-data": "^3.83.1",
"minecraft-protocol": "^1.54.0",
"next": "15.1.6",
"react": "^19",
"react-dom": "^19",
"three": "^0.173.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"deasync": "^0.1.30",
"lodash": "^4.17.21",
"sharp": "^0.33.5",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/deasync": "^0.1.5",
"@types/lodash": "^4.17.15",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-config-next": "15.1.6",
"eslint-plugin-simple-import-sort": "^12.1.1",
"patch-package": "^8.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}