mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2025-12-22 22:00:00 +00:00
- Complete GitHub Actions workflow for demo deployment - Playwright test suite with 50+ tests - Performance monitoring and accessibility testing - Cross-browser compatibility testing - Local deployment scripts and documentation
15 lines
459 B
JSON
15 lines
459 B
JSON
{
|
|
"name": "leptos-shadcn-dashboard-demo",
|
|
"version": "0.1.0",
|
|
"description": "A Rust/WASM dashboard demo using Leptos and ShadCN UI components",
|
|
"scripts": {
|
|
"build": "wasm-pack build --target web --out-dir pkg --dev",
|
|
"build-release": "wasm-pack build --target web --out-dir pkg --release",
|
|
"serve": "python3 -m http.server 8000",
|
|
"start": "npm run build && npm run serve"
|
|
},
|
|
"devDependencies": {
|
|
"wasm-pack": "^0.12.1"
|
|
}
|
|
}
|