bucket-atlas / package.json
cfahlgren1's picture
cfahlgren1 HF Staff
serve the page with bun html imports, tailwind, and split server and client modules
f440910 verified
Raw
History Blame Contribute Delete
543 Bytes
{
"name": "bucket-atlas",
"private": true,
"type": "module",
"scripts": {
"start": "NODE_ENV=production bun src/server.ts",
"test": "bun test",
"check": "tsc --noEmit",
"dev": "bun scripts/dev.ts",
"directory:check": "bun scripts/build-directory.ts"
},
"dependencies": {
"@protomaps/basemaps": "5.7.2",
"bun-plugin-tailwind": "0.1.2",
"maplibre-gl": "5.13.0",
"pmtiles": "4.5.0",
"tailwindcss": "4.1.14"
},
"devDependencies": {
"@types/bun": "1.4.2",
"typescript": "5.9.3"
}
}