- Hybrid Python/Node.js architecture with WebSocket bridge - PySide6 desktop app with smoky blue futuristic theme - Dashboard, Create Doug, Settings screens - bedrock-protocol connection to BDS (offline + Xbox Live auth) - Realm support (auth flow with device code + browser auto-open) - Ollama integration with lean persona prompt (~95 tokens) - 40 personality traits (15 sliders + 23 quirks + 2 toggles) - SQLite + MariaDB database with 12 tables - Chat working in-game with proper Bedrock text packet format - RakNet protocol 11 patch for newer BDS versions - jsp-raknet backend (native crashes on ARM64 macOS) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
576 B
JSON
24 lines
576 B
JSON
{
|
|
"name": "dougbot-bridge",
|
|
"version": "0.1.0",
|
|
"description": "Minecraft Bedrock protocol bridge for DougBot",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"postinstall": "node patches/patch-raknet.js",
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"bedrock-protocol": "^3.55.0",
|
|
"minecraft-data": "^3.108.0",
|
|
"uuid": "^11.1.0",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"@types/ws": "^8.5.0",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|