- Add package.json with Tailwind dependencies - Add tailwind.config.js and postcss.config.js - Add source tailwind.css file - Generate tailwind.output.css for admin and vendor - Add Tailwind CSS documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
56 lines
1.7 KiB
JSON
56 lines
1.7 KiB
JSON
{
|
|
"name": "windmill-dashboard",
|
|
"version": "1.0.2",
|
|
"description": "A multi theme, completely accessible, with components and pages examples, ready for production dashboard.",
|
|
"scripts": {
|
|
"tailwind:admin": "tailwindcss build static/admin/css/tailwind.css -o static/admin/css/tailwind.output.css",
|
|
"tailwind:vendor": "tailwindcss build static/admin/css/tailwind.css -o static/vendor/css/tailwind.output.css",
|
|
"build:admin": "env NODE_ENV=production postcss static/admin/css/tailwind.css -o static/admin/css/tailwind.output.css",
|
|
"build:vendor": "env NODE_ENV=production postcss static/admin/css/tailwind.css -o static/vendor/css/tailwind.output.css",
|
|
"build": "npm run build:admin && npm run build:vendor",
|
|
"cz": "git-cz",
|
|
"release": "release-it"
|
|
},
|
|
"author": "Estevan Maito <ejmaito@gmail.com>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@release-it/conventional-changelog": "1.1.4",
|
|
"@tailwindcss/custom-forms": "0.2.1",
|
|
"autoprefixer": "9.8.0",
|
|
"color": "3.1.2",
|
|
"commitizen": "4.1.2",
|
|
"cssnano": "4.1.10",
|
|
"cz-conventional-changelog": "3.2.0",
|
|
"postcss-cli": "7.1.1",
|
|
"release-it": "13.6.4",
|
|
"tailwindcss": "1.4.6",
|
|
"tailwindcss-multi-theme": "1.0.3"
|
|
},
|
|
"keywords": [
|
|
"tailwind",
|
|
"windmill",
|
|
"dashboard",
|
|
"template",
|
|
"admin"
|
|
],
|
|
"release-it": {
|
|
"github": {
|
|
"release": true
|
|
},
|
|
"npm": {
|
|
"publish": false
|
|
},
|
|
"plugins": {
|
|
"@release-it/conventional-changelog": {
|
|
"preset": "angular",
|
|
"infile": "CHANGELOG.md"
|
|
}
|
|
}
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|