Files
SpeedTest/package.json
Alexander Zinn f66266b218 Add health check functionality and type checking to the project
* Introduced HealthCheck class for system health monitoring.
* Added HealthCheckApiRoutes for readiness endpoint.
* Updated package.json to include TypeScript type checking command.
2025-11-21 03:03:41 -05:00

30 lines
696 B
JSON

{
"name": "speedtest",
"version": "0.0.0",
"author": "Alexander Zinn",
"type": "module",
"private": true,
"scripts": {
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 './src'",
"prelint:fix": "bun run format",
"lint:fix": "eslint --fix './src'",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@eslint/css": "0.14.1",
"@eslint/js": "9.39.1",
"@eslint/json": "0.14.0",
"@eslint/markdown": "7.5.1",
"@types/bun": "latest",
"eslint": "9.39.1",
"globals": "16.5.0",
"jiti": "2.6.1",
"prettier": "3.6.2",
"typescript-eslint": "8.47.0"
},
"dependencies": {
"@techniker-me/logger": "0.0.15"
}
}