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

45
client/package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "funconnect",
"version": "1.0.0",
"description": "FunMC Minecraft 联机客户端",
"main": "dist/main/index.js",
"author": "FunMC",
"license": "MIT",
"scripts": {
"build:ts": "tsc",
"start": "npm run build:ts && electron .",
"dev": "tsc && electron .",
"pack": "npm run build:ts && electron-builder --dir",
"dist": "npm run build:ts && electron-builder"
},
"build": {
"appId": "cn.funmc.connect",
"productName": "FunConnect",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"renderer/**/*",
"package.json"
],
"win": {
"target": "nsis",
"icon": "renderer/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"dependencies": {
"axios": "^1.6.2",
"electron-store": "^8.1.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"typescript": "^5.3.2"
}
}