ssg.md/package.json
satr14 abf08561f9
All checks were successful
Build and Deploy / deploy (push) Successful in 55s
update build ordering
2026-07-20 08:59:45 +07:00

23 lines
594 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": "bun index.ts && bunx tailwindcss -i style.css -o dist/style.css",
"dev": "bun --watch index.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5 || ^7.0.0"
},
"dependencies": {
"@catppuccin/tailwindcss": "^1.0.0",
"@tailwindcss/cli": "^4.3.0"
}
}