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
33 lines
905 B
JSON
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"
|
|
} |