random updates
All checks were successful
Code quality checks / biome (push) Successful in 14s

This commit is contained in:
creations 2025-06-12 17:42:31 -04:00
parent 2eebc3126a
commit f6b3cf4c82
Signed by: creations
GPG key ID: 8F553AA4320FC711
2 changed files with 3 additions and 8 deletions

View file

@ -1,5 +1,5 @@
{ {
"name": "bun_frontend_template", "name": "bun_http_template",
"module": "src/index.ts", "module": "src/index.ts",
"type": "module", "type": "module",
"scripts": { "scripts": {
@ -7,15 +7,12 @@
"dev": "bun run --hot src/index.ts --dev", "dev": "bun run --hot src/index.ts --dev",
"lint": "bunx biome check", "lint": "bunx biome check",
"lint:fix": "bunx biome check --fix", "lint:fix": "bunx biome check --fix",
"cleanup": "rm -rf logs node_modules bun.lockdb" "cleanup": "rm -rf logs node_modules bun.lock"
}, },
"devDependencies": { "devDependencies": {
"@types/bun": "latest", "@types/bun": "latest",
"@biomejs/biome": "latest" "@biomejs/biome": "latest"
}, },
"peerDependencies": {
"typescript": "latest"
},
"dependencies": { "dependencies": {
"@atums/echo": "latest" "@atums/echo": "latest"
} }

View file

@ -3,9 +3,7 @@
"baseUrl": "./", "baseUrl": "./",
"paths": { "paths": {
"@*": ["src/*"], "@*": ["src/*"],
"@config": ["config/index.ts"], "@config": ["config/index.ts"]
"@config/*": ["config/*"],
"@types/*": ["types/*"]
}, },
"typeRoots": ["./types", "./node_modules/@types"], "typeRoots": ["./types", "./node_modules/@types"],
"lib": ["ESNext", "DOM"], "lib": ["ESNext", "DOM"],