* Introduced a new HTML frontend for network speed testing with a responsive UI * Implemented backend server functionality to serve the frontend and handle speed test APIs * Added speed test logic for downloading and uploading data, including progress tracking and result validation * Created README-SPEEDTEST.md for documentation on application architecture, setup, and usage. * Updated package.json to include necessary scripts and dependencies for development and testing
33 lines
790 B
JSON
33 lines
790 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",
|
|
"start": "bun run src/index.ts",
|
|
"dev": "bun run start"
|
|
},
|
|
"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",
|
|
"concurrently": "9.2.1"
|
|
}
|
|
}
|