{
  "name": "@unicity/design-system",
  "version": "0.0.13",
  "type": "module",
  "description": "A comprehensive React component library built on Material-UI with advanced theming capabilities including neumorphism design support",
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "scripts": {
    "dev": "storybook dev -p 6006",
    "build": "tsc && vite build",
    "build:types": "tsc --emitDeclarationOnly --outDir dist",
    "build:storybook": "storybook build",
    "prebuild": "npm run clean && npm run build:types",
    "clean": "rimraf dist",
    "storybook": "storybook dev -p 6006",
    "prepublishOnly": "npm run build",
    "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
    "release": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish",
    "test": "vitest",
    "test:dialog": "playwright test tests/dialog*.spec.ts",
    "test:dialog:ui": "playwright test tests/dialog*.spec.ts --ui",
    "test:dialog:headed": "playwright test tests/dialog*.spec.ts --headed",
    "test:playwright": "playwright test",
    "test:playwright:ui": "playwright test --ui",
    "test:storybook": "STORYBOOK_TEST=true vitest --project=storybook",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test:coverage": "playwright test --reporter=html",
    "test:ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run build:storybook && npx http-server storybook-static --port 6006 --silent\" \"wait-on tcp:127.0.0.1:6006 && npm run test\"",
    "type-check": "tsc --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/unicity/design-system.git"
  },
  "homepage": "https://unicity.github.io/design-system",
  "bugs": {
    "url": "https://github.com/unicity/design-system/issues"
  },
  "keywords": [
    "react",
    "components",
    "design-system",
    "material-ui",
    "mui",
    "neumorphism",
    "typescript",
    "ui-library",
    "component-library",
    "react-components",
    "theming",
    "storybook",
    "accessibility",
    "responsive",
    "modern-ui"
  ],
  "author": {
    "name": "Unicity Design Team",
    "email": "design@unicity.com",
    "url": "https://unicity.com"
  },
  "license": "MIT",
  "peerDependencies": {
    "@emotion/react": ">=11.0.0",
    "@emotion/styled": ">=11.0.0",
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0"
  },
  "dependencies": {
    "@emotion/react": ">=11.0.0",
    "@emotion/styled": ">=11.0.0",
    "@mui/icons-material": "^5.17.1",
    "@mui/material": "^5.17.1",
    "@mui/x-data-grid-pro": "^5.17.26",
    "@mui/x-date-pickers": "^5.0.20",
    "@mui/x-tree-view": "^6.17.0",
    "@storybook/addon-docs": "^9.0.6",
    "date-fns": "^2.30.0",
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0"
  },
  "devDependencies": {
    "@mdx-js/react": "^3.1.0",
    "@playwright/experimental-ct-react": "^1.52.0",
    "@playwright/test": "^1.52.0",
    "@rollup/plugin-commonjs": "^25.0.0",
    "@rollup/plugin-node-resolve": "^15.0.0",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^11.0.0",
    "@storybook/addon-a11y": "^9.0.6",
    "@storybook/addon-designs": "^10.0.1",
    "@storybook/addon-highlight": "^9.0.0-alpha.12",
    "@storybook/addon-links": "^9.0.6",
    "@storybook/addon-vitest": "^9.0.6",
    "@storybook/mdx2-csf": "^1.1.0",
    "@storybook/react-vite": "^9.0.6",
    "@storybook/test-runner": "^0.22.1",
    "@types/react": "^18.2.43",
    "@types/react-dom": "^18.2.17",
    "@typescript-eslint/eslint-plugin": "^6.14.0",
    "@typescript-eslint/parser": "^6.14.0",
    "@vitejs/plugin-react": "^4.2.1",
    "@vitest/browser": "^3.2.3",
    "@vitest/coverage-v8": "^3.2.3",
    "concurrently": "^9.1.2",
    "conventional-changelog-cli": "^4.1.0",
    "eslint": "^8.55.0",
    "eslint-plugin-react-hooks": "^4.6.0",
    "eslint-plugin-react-refresh": "^0.4.5",
    "eslint-plugin-storybook": "^9.0.6",
    "http-server": "^14.1.1",
    "jsdom": "^26.1.0",
    "playwright": "^1.52.0",
    "rimraf": "^5.0.0",
    "rollup": "^4.0.0",
    "rollup-plugin-peer-deps-external": "^2.2.4",
    "storybook": "^9.0.6",
    "typescript": "^5.2.2",
    "vite": "^5.0.0",
    "vitest": "^3.2.3",
    "wait-on": "^8.0.3"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=7.0.0"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  },
  "overrides": {
    "storybook": "$storybook"
  }
}
