@switch-to-eu/layout-ui
Version:
Modular UI design system for privacy-focused tools - React components with Tailwind CSS and theme customization
118 lines (117 loc) • 3.31 kB
JSON
{
"name": "@switch-to-eu/layout-ui",
"version": "0.2.1",
"description": "Modular UI design system for privacy-focused tools - React components with Tailwind CSS and theme customization",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json && tsup",
"build:watch": "tsup --watch",
"build:analyze": "tsup --metafile",
"dev": "tsup --watch --sourcemap",
"dev:clean": "npm run clean && npm run dev",
"clean": "rimraf dist",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"prepublishOnly": "npm run build && npm run type-check",
"publish:dry": "npm publish --dry-run",
"publish:beta": "npm publish --tag beta",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"peerDependencies": {
"next": "^15.2.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.513.0",
"react-day-picker": "^9.7.0",
"react-hook-form": "^7.57.0",
"tailwind-merge": "^3.3.0",
"zod": "^3.25.51"
},
"devDependencies": {
"@storybook/addon-docs": "^9.0.4",
"@storybook/addon-onboarding": "^9.0.4",
"@storybook/react-vite": "^9.0.4",
"@tailwindcss/postcss": "^4.1.8",
"@types/node": "^22.15.29",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"eslint": "^9.28.0",
"eslint-plugin-storybook": "^9.0.4",
"postcss": "^8.5.4",
"rimraf": "^6.0.1",
"storybook": "^9.0.4",
"tailwindcss": "^4.1.8",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles/globals.css": "./dist/globals.css",
"./styles/themes.css": "./dist/themes.css",
"./styles": "./dist/globals.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/switch-to-eu/layout-ui.git"
},
"keywords": [
"ui",
"components",
"react",
"nextjs",
"tailwind",
"tailwindcss",
"design-system",
"privacy",
"modular",
"theme",
"customization",
"typescript",
"radix-ui",
"form-components"
],
"author": {
"name": "Vincent Peters",
"email": "vincent@switch-to.eu",
"url": "https://switch-to.eu"
},
"license": "MIT",
"homepage": "https://github.com/switch-to-eu/layout-ui#readme",
"bugs": {
"url": "https://github.com/switch-to-eu/layout-ui/issues"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended",
"plugin:storybook/recommended"
]
}
}