mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
15 lines
430 B
JSON
15 lines
430 B
JSON
{
|
|
"scripts": {
|
|
"build:ts": "tsc",
|
|
"build:css": "bunx tailwindcss -i ./src/styles.css -o ./assets/styles.css",
|
|
"build": "bun run build:ts && bun run build:css",
|
|
"watch:ts": "tsc -w",
|
|
"watch:css": "bunx tailwindcss -i ./src/styles.css -o ./assets/styles.css --watch",
|
|
"watch": "bun run watch:ts & bun run watch:css"
|
|
},
|
|
"devDependencies": {
|
|
"tailwindcss": "^3.3.0",
|
|
"typescript": "^4.9.0"
|
|
}
|
|
}
|