🔧 chore: add typecheck/lint/format tooling

This commit is contained in:
2026-07-12 18:18:17 +07:00
parent 90b698ad68
commit 7323a3c79c
4 changed files with 81 additions and 6 deletions
+8 -2
View File
@@ -5,13 +5,19 @@
"start": "bun run src/index.ts",
"dev": "bun --hot src/index.ts",
"test": "bun test",
"check": "biome check .",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "bun run typecheck && biome check . && bun test",
"fix": "biome check --write ."
},
"dependencies": {
"elysia": "^1.4.29"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3"
"@biomejs/biome": "^2.5.3",
"@types/bun": "^1.3.14",
"typescript": "^7.0.2"
}
}