mirror of
https://github.com/leptos-rs/leptos.git
synced 2026-08-20 00:13:59 -04:00
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.
20 lines
741 B
JSON
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"
|
|
}
|