bun_http_template/package.json
creations fdce8810cf
Some checks failed
Code quality checks / biome (push) Failing after 12s
Migrate to @atums/echo logger and improve project structure
2025-06-02 20:34:50 -04:00

22 lines
484 B
JSON

{
"name": "bun_frontend_template",
"module": "src/index.ts",
"type": "module",
"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.lockdb"
},
"devDependencies": {
"@types/bun": "latest",
"@biomejs/biome": "latest"
},
"peerDependencies": {
"typescript": "latest"
},
"dependencies": {
"@atums/echo": "latest"
}
}