bfcache: server - WebSocketServer

This commit is contained in:
2025-09-17 23:50:13 -04:00
parent 351ccf3e2a
commit ce1d4561a2
4 changed files with 122 additions and 2 deletions

View File

@@ -8,7 +8,8 @@
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"prelint:fix": "bun run format",
"lint:fix": "eslint --fix ."
"lint:fix": "eslint --fix .",
"start:dev": "bun run --watch src"
},
"devDependencies": {
"@eslint/css": "0.11.0",
@@ -26,5 +27,28 @@
"dependencies": {
"@techniker-me/logger": "0.0.15",
"@techniker-me/tools": "2025.0.16"
},
"author": {
"name": "Alexander Zinn",
"email": "zinntechniker@gmail.com",
"git+url": "https://github.com/zinntechniker"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zinntechniker/websocket-relay-server"
},
"homepage": "https://github.com/zinntechniker/websocket-relay-server",
"bugs": {
"url": "https://github.com/zinntechniker/websocket-relay-server/issues"
},
"keywords": [
"websocket",
"relay",
"server"
],
"engines": {
"node": ">=20.0.0",
"bun": ">=1.2.21"
}
}