feat: FunConnect v1.0.0 - Minecraft联机平台完整版

- server: Node.js TCP中继服务器,支持多节点集群
- web: React管理面板(仪表盘、房间管理、节点管理)
- client: Electron桌面客户端(连接、创建/加入房间、本地代理)
- deploy: Ubuntu一键部署脚本
This commit is contained in:
FunMC
2026-02-22 23:33:00 +08:00
commit b17679cec6
44 changed files with 13783 additions and 0 deletions

31
server/package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "funmc-server",
"version": "1.0.0",
"description": "FunMC Minecraft Relay Server - Multi-node TCP proxy for Minecraft multiplayer",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"dev:watch": "nodemon --exec ts-node src/index.ts"
},
"dependencies": {
"express": "^4.18.2",
"ws": "^8.16.0",
"uuid": "^9.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"winston": "^3.11.0",
"axios": "^1.6.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/ws": "^8.5.10",
"@types/uuid": "^9.0.7",
"@types/cors": "^2.8.17",
"@types/node": "^20.10.0",
"typescript": "^5.3.2",
"ts-node": "^10.9.2",
"nodemon": "^3.0.2"
}
}