{
  "name": "@memelabui/ui",
  "version": "0.52.0",
  "description": "MemeLab shared UI component library — React + Tailwind + Glassmorphism",
  "type": "module",
  "sideEffects": [
    "*.css"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./styles": "./dist/styles/index.css",
    "./brand/*": "./brand/*",
    "./preset": {
      "import": {
        "types": "./dist/preset/index.d.ts",
        "default": "./dist/preset/index.js"
      },
      "require": {
        "types": "./dist/preset/index.d.cts",
        "default": "./dist/preset/index.cjs"
      }
    },
    "./tokens": {
      "import": {
        "types": "./dist/tokens/index.d.ts",
        "default": "./dist/tokens/index.js"
      },
      "require": {
        "types": "./dist/tokens/index.d.cts",
        "default": "./dist/tokens/index.cjs"
      }
    }
  },
  "files": [
    "dist",
    "brand",
    "LICENSES",
    "README.md"
  ],
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0",
    "tailwindcss": "^3.4.0"
  },
  "devDependencies": {
    "@fontsource-variable/jetbrains-mono": "^5.2.8",
    "@fontsource-variable/onest": "^5.2.11",
    "@fontsource-variable/unbounded": "^5.2.8",
    "@storybook/addon-a11y": "^8.6.4",
    "@storybook/addon-essentials": "^8.6.4",
    "@storybook/addon-interactions": "^8.6.4",
    "@storybook/react": "^8.6.4",
    "@storybook/react-vite": "^8.6.4",
    "@storybook/test": "^8.6.4",
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/react": "^16.3.0",
    "@testing-library/user-event": "^14.6.1",
    "@types/react": "^18.3.18",
    "@types/react-dom": "^18.3.5",
    "@typescript-eslint/eslint-plugin": "^8.22.0",
    "@typescript-eslint/parser": "^8.22.0",
    "@vitejs/plugin-react": "^4.3.4",
    "autoprefixer": "^10.4.20",
    "eslint": "^10.0.2",
    "eslint-plugin-react": "^7.37.4",
    "eslint-plugin-react-hooks": "^5.1.0",
    "jsdom": "^25.0.1",
    "postcss": "^8.5.1",
    "postcss-cli": "^11.0.0",
    "postcss-import": "^16.1.0",
    "postcss-url": "10.1.3",
    "prettier": "^3.4.2",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "storybook": "^8.6.4",
    "tailwindcss": "^3.4.17",
    "tsup": "^8.3.6",
    "typescript": "^5.7.3",
    "vite": "^6.0.11",
    "vitest": "^3.0.5"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "engines": {
    "node": ">=22"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/batalovmv/memelab-ui"
  },
  "keywords": [
    "memelab",
    "ui",
    "react",
    "tailwindcss",
    "glassmorphism",
    "dark-theme",
    "component-library"
  ],
  "scripts": {
    "dev": "storybook dev -p 6006",
    "build": "tsup && pnpm build:css",
    "build:css": "postcss src/styles/index.css -o dist/styles/index.css",
    "build:storybook": "storybook build -o storybook-static",
    "brand:sync": "node scripts/sync-brand-assets.mjs",
    "test": "vitest",
    "test:ci": "vitest --run && pnpm test:accent && pnpm test:rendered",
    "test:accent": "node scripts/accent-chain-check.mjs",
    "test:release": "vitest --run && node scripts/accent-chain-check.mjs --required && node scripts/rendered-invariants.mjs --required",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext ts,tsx --report-unused-disable-directives",
    "lint:fix": "eslint src --ext ts,tsx --fix",
    "format": "prettier --check \"src/**/*.{ts,tsx,css}\"",
    "format:fix": "prettier --write \"src/**/*.{ts,tsx,css}\"",
    "test:rendered": "node scripts/rendered-invariants.mjs"
  }
}