Initial Commit

* Initialize project with essential configuration files including
** .gitignore
** .npmrc
** .nvmrc
** .prettierrc
** bunfig.toml
** eslint.config.ts
** package.json
** README.md
** tsconfig.json
This commit is contained in:
2025-11-21 02:38:36 -05:00
commit ab34b614dd
9 changed files with 130 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"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'"
},
"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"
}
}