Files
leptos-shadcn-ui/examples/leptos/package.json
Peter Hanssens 7a36292cf9 🚀 Release v0.1.0: WASM-compatible components with tailwind-rs-core v0.4.0
- Fixed compilation errors in menubar, combobox, and drawer packages
- Updated to tailwind-rs-core v0.4.0 and tailwind-rs-wasm v0.4.0 for WASM compatibility
- Cleaned up unused variable warnings across packages
- Updated release documentation with WASM integration details
- Demo working with dynamic color API and Tailwind CSS generation
- All 25+ core components ready for crates.io publication

Key features:
 WASM compatibility (no more tokio/mio dependencies)
 Dynamic Tailwind CSS class generation
 Type-safe color utilities
 Production-ready component library
2025-09-16 08:36:13 +10:00

26 lines
790 B
JSON

{
"name": "leptos-shadcn-demo-tests",
"version": "1.0.0",
"description": "Playwright tests for Leptos ShadCN UI Demo",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:visual": "playwright test --grep @visual",
"test:interaction": "playwright test --grep @interaction",
"test:performance": "playwright test --grep @performance",
"test:tailwind": "playwright test --grep @tailwind-rs-core"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@tailwindcss/typography": "^0.5.16",
"playwright": "^1.40.0",
"tailwindcss": "^4.1.13",
"tailwindcss-animate": "^1.0.7"
},
"engines": {
"node": ">=18"
}
}