Files
leptos/examples/tailwind_axum/package.json
Pico Bolero a55e82afe3 chore: migrate Axum example from Tailwind 3 to Tailwind 4 (#3804)
documentation e.g., input.css and output.css.
Uses @tailwindcss/cli tool to build the output.css
Removes no longer needed tailwind.config.js as that configuration can be
embedded in input.css.
Removes src/style.css as it only included tailwind 3 configurations that
are no longer needed.
2025-04-02 20:58:36 -04:00

20 lines
741 B
JSON

{
"author": "",
"dependencies": {
"tailwindcss": "^4.0.17"
},
"description": "<picture>\r <source srcset=\"https://raw.githubusercontent.com/leptos-rs/leptos/main/docs/logos/Leptos_logo_Solid_White.svg\" media=\"(prefers-color-scheme: dark)\">\r <img src=\"https://raw.githubusercontent.com/leptos-rs/leptos/main/docs/logos/Leptos_logo_RGB.svg\" alt=\"Leptos Logo\">\r </picture>",
"devDependencies": {
"@tailwindcss/cli": "^4.0.17"
},
"keywords": [],
"license": "ISC",
"main": "index.js",
"name": "leptos-tailwind",
"scripts": {
"build": "npx tailwindcss -i ./input.css -o ./style/output.css",
"watch": "npx tailwindcss -i ./input.css -o ./style/output.css --watch"
},
"version": "1.0.0"
}