ssg.md/package.json
2026-06-03 20:53:26 +07:00

23 lines
584 B
JSON

{
"name": "ssg.md",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"tw-dev": "bunx tailwindcss -i style.css -o dist/style.css --watch",
"prev": "bunx serve dist",
"deploy": "bunx wrangler deploy --assets=./dist",
"build": "bunx tailwindcss -i style.css -o dist/style.css && bun index.ts",
"dev": "bun --watch index.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@catppuccin/tailwindcss": "^1.0.0",
"@tailwindcss/cli": "^4.3.0"
}
}