websocket server: initial commit. Add Asserts static class

This commit is contained in:
2025-09-27 13:43:30 -04:00
parent 804f2d990a
commit ff31848460
8 changed files with 186 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
{
"name": "@techniker-me/websocket-server",
"version": "0.0.0",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"prelint:fix": "npm run format",
"lint:fix": "eslint --fix .",
"dev": "tsx watch --clear-screen=false",
"typecheck": "tsc"
},
"author": "Alexander Zinn",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/css": "0.11.1",
"@eslint/js": "9.36.0",
"@eslint/json": "0.13.2",
"@eslint/markdown": "7.3.0",
"@types/node": "24.5.2",
"eslint": "9.36.0",
"globals": "16.4.0",
"jiti": "2.6.0",
"nodemon": "3.1.10",
"prettier": "3.6.2",
"tsx": "4.20.6",
"typescript": "5.9.2",
"typescript-eslint": "8.44.1"
}
}