Files
Peter Hanssens 7f4486b6f0 Add comprehensive demo with CI/CD pipeline
- 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
2025-09-23 19:12:15 +10:00

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"
}
}