mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2026-05-17 12:00:39 +00:00
- 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>
32 lines
852 B
JSON
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"
|
|
}
|
|
}
|