Files
Peter Hanssens eb8f7ae9d6 feat: comprehensive component updates and testing infrastructure
- Update multiple components with improved signal management and error handling
- Add integration tests for dialog, popover, dropdown-menu, command, and sheet components
- Enhance form validation with comprehensive type system
- Add visual testing infrastructure with Playwright
- Add analytics package for component tracking
- Improve lazy loading with new component browser
- Enhance error boundary with context and new_york variants
- Update tailwind-rs-core with improved responsive utilities
- Add extensive error handling utilities across packages

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-10 12:15:52 +00:00

32 lines
852 B
JSON

{
"name": "@shadcn-ui/visual-testing",
"version": "0.1.0",
"description": "Visual regression testing framework for shadcn-ui components using Playwright",
"type": "module",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:update": "playwright test --update-snapshots",
"test:report": "playwright show-report",
"install:browsers": "playwright install chromium firefox webkit"
},
"keywords": [
"visual-testing",
"regression-testing",
"playwright",
"snapshot-testing"
],
"author": "shadcn/ui Team",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"dependencies": {
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0"
}
}