{ "name": "@mosaic/ui", "version": "0.0.1", "private": true, "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./components/*": { "types": "./dist/components/*.d.ts", "import": "./dist/components/*.js" } }, "scripts": { "build": "tsc", "dev": "tsc --watch", "lint": "eslint src/", "lint:fix": "eslint src/ --fix", "typecheck": "tsc --noEmit", "clean": "rm -rf dist", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage" }, "dependencies": { "react": "^19.0.0" }, "devDependencies": { "@mosaic/config": "workspace:*", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.2.0", "@types/react": "^19.0.8", "jsdom": "^26.0.0", "typescript": "^5.8.2", "vitest": "^3.0.8" }, "peerDependencies": { "react": "^18.0.0 || ^19.0.0" } }