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:
28
package.json
Normal file
28
package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user