Files
leptos-shadcn-ui/gh-pages-demo/package.json
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

33 lines
905 B
JSON

{
"name": "leptos-shadcn-comprehensive-demo",
"version": "0.9.1",
"description": "Comprehensive demo showcasing all refactored Leptos ShadCN UI components",
"scripts": {
"build": "wasm-pack build --target web --out-dir pkg --dev",
"serve": "node scripts/serve.js",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"dev": "concurrently \"npm run serve\" \"npm run test:ui\"",
"start": "npm run build && npm run serve"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"concurrently": "^8.2.2",
"express": "^4.18.2",
"cors": "^2.8.5",
"portfinder": "^1.0.32"
},
"keywords": [
"leptos",
"shadcn",
"rust",
"wasm",
"demo",
"components",
"refactored"
],
"author": "Leptos ShadCN UI Team",
"license": "MIT"
}