Haven/package.json
ancsemi 6e756b6939 v2.9.7 — Remove Google STUN, add STUN_URLS env var
- Replace Google STUN servers with open-source defaults (stunprotocol.org, nextcloud.com)
- Add STUN_URLS env var for custom STUN server configuration
- Update .env.example with STUN_URLS documentation
2026-04-09 00:04:49 -04:00

37 lines
No EOL
849 B
JSON

{
"name": "haven",
"version": "2.9.7",
"description": "Haven — self-hosted private chat for your server, your rules",
"license": "AGPL-3.0",
"main": "server.js",
"engines": {
"node": ">=18.0.0 <24.0.0"
},
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js"
},
"dependencies": {
"adm-zip": "^0.5.16",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^11.7.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"localtunnel": "^2.0.2",
"multer": "^2.0.2",
"otpauth": "^9.5.0",
"qrcode": "^1.5.4",
"socket.io": "^4.8.1",
"web-push": "^3.6.7"
},
"overrides": {
"bn.js": ">=5.2.3",
"axios": ">=1.8.2"
},
"devDependencies": {
"innosetup-compiler": "^6.3.1"
}
}