21 lines
472 B
JSON
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"
|
|
}
|