mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
22 lines
647 B
JSON
22 lines
647 B
JSON
{
|
|
"scripts": {
|
|
"fetch:deps": "bun run .deps.mjs",
|
|
"build:ts": "tsc",
|
|
"build:css": "bunx tailwindcss -i ./src/styles.css -o ./assets/css/styles.css",
|
|
"build": "bun run fetch:deps && bun run build:ts && bun run build:css",
|
|
"watch:ts": "tsc -w",
|
|
"watch:css": "bunx tailwindcss -i ./src/styles.css -o ./assets/css/styles.css --watch",
|
|
"watch": "bun run watch:ts & bun run watch:css"
|
|
},
|
|
"devDependencies": {
|
|
"tailwindcss": "^3.3.0",
|
|
"typescript": "^4.9.0"
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/typography": "^0.5.15",
|
|
"alpinejs": "^3.14.1",
|
|
"htmx.org": "^1.9.12",
|
|
"node-fetch": "^3.3.2"
|
|
}
|
|
}
|