profilePage/package.json
creations 5eaae97c99
All checks were successful
Code quality checks / quality (push) Successful in 7s
maybe ?
2025-04-10 06:19:58 -04:00

27 lines
615 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 ci .",
"lint:fix": "bunx biome ci . --apply",
"cleanup": "rm -rf logs node_modules bun.lockdb"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.9",
"@types/ejs": "^3.1.5",
"globals": "^16.0.0"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"ejs": "^3.1.10",
"isomorphic-dompurify": "^2.23.0",
"marked": "^15.0.8",
"node-vibrant": "^4.0.3"
}
}