blog.hatebit.org/theme/package.json

17 lines
469 B
JSON
Raw Permalink Normal View History

{
"private": true,
"type": "module",
"scripts": {
"build:dev": "npx postcss css/ --env=development --dir=static/css/",
"build:prod": "npx postcss css/ --env=production --dir=static/css/",
"watch": "npx postcss css/ --env=development --dir=static/css/ --watch",
"clean": "rm static/css/*.css"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"cssnano": "^7.0.6",
"postcss-cli": "^11.0.0",
"tailwindcss": "^4.0.0"
}
}