All checks were successful
Code quality checks / biome (push) Successful in 10s
- Replace custom logger with @atums/echo library - Restructure imports using # path aliases - Add request performance tracking and better request logging - Improve type definitions and error handling - Add custom file serving capability - Update biome configuration with stricter linting rules - Add comprehensive API documentation (DOCS.md)
19 lines
418 B
JSON
19 lines
418 B
JSON
{
|
|
"name": "booru-api",
|
|
"module": "src/index.ts",
|
|
"devDependencies": {
|
|
"@biomejs/biome": "latest",
|
|
"@types/bun": "latest"
|
|
},
|
|
"scripts": {
|
|
"start": "bun run src/index.ts",
|
|
"dev": "bun run --hot src/index.ts --dev",
|
|
"lint": "bunx biome check",
|
|
"lint:fix": "bunx biome check --fix",
|
|
"cleanup": "rm -rf logs node_modules bun.lock"
|
|
},
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@atums/echo": "latest"
|
|
}
|
|
}
|