Update WebSocket server configuration and add new dependencies

* Added npm configuration for Techniker registry
* Introduced preinstall and prelint scripts in package.json
* Added new dependencies: @techniker-me/logger and @techniker-me/tools
This commit is contained in:
2025-09-27 13:52:59 -04:00
parent 1fd1fc4090
commit cd40ed2bca
2 changed files with 7 additions and 0 deletions

View File

@@ -3,7 +3,9 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"preinstall": "npm prune",
"format": "prettier --write .",
"prelint": "npm install",
"lint": "eslint --max-warnings 0 .",
"prelint:fix": "npm run format",
"lint:fix": "eslint --fix .",
@@ -27,5 +29,9 @@
"tsx": "4.20.6",
"typescript": "5.9.2",
"typescript-eslint": "8.44.1"
},
"dependencies": {
"@techniker-me/logger": "0.0.15",
"@techniker-me/tools": "2025.0.16"
}
}