booru-api/package.json
creations 9cb178aea4
All checks were successful
Code quality checks / biome (push) Successful in 9s
move to biomejs, add workflow move auth to header check readme
2025-04-15 17:33:24 -04:00

21 lines
472 B
JSON

{
"name": "booru-api",
"module": "src/index.ts",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@eslint/js": "^9.24.0",
"@types/bun": "^1.2.9",
"globals": "^16.0.0"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"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"
}