{
  "name": "@luscii-healthtech/web-ui",
  "version": "58.7.2",
  "license": "MIT",
  "author": {
    "name": "Joris Janssen"
  },
  "readme": "./README.md",
  "main": "dist/index.js",
  "module": "dist/esm/index.js",
  "typings": "dist/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/index.js"
    },
    "./icon-names": {
      "types": "./dist/src/generated/iconNames.d.ts",
      "import": "./dist/src/generated/iconNames.js",
      "require": "./dist/src/generated/iconNames.js"
    },
    "./codemods/*": "./dist/codemods/*.js",
    "./dist/web-ui-tailwind.css": {
      "import": "./dist/web-ui-tailwind.css",
      "require": "./dist/web-ui-tailwind.css"
    }
  },
  "files": [
    "dist"
  ],
  "//sideEffects": [
    "Only the modules that inject CSS into the document have side effects.",
    "Everything else must stay prunable or the ESM build stops tree-shaking;",
    "see rollup.config.mjs#esmConfig."
  ],
  "sideEffects": [
    "**/*.css",
    "**/*.scss",
    "**/*.css.js",
    "**/*.scss.js"
  ],
  "scripts": {
    "start": "yarn build --watch",
    "dev": "yarn sync:design-tokens && concurrently --names 'STORYBOOK,TAILWIND' -c 'auto' 'yarn storybook:lazy' 'yarn storybook:watch-tailwind --watch'",
    "build": "yarn build:css && yarn icons && yarn build:js && yarn build:codemods",
    "build:codemods": "tsc --outDir dist/codemods --module commonjs --target ES6 --esModuleInterop --skipLibCheck codemods/*.ts",
    "build:js": "yarn rollup --config rollup.config.mjs && yarn fix-alias-paths",
    "build:css": "yarn build-tailwind",
    "fix-alias-paths": "tsc-alias -p tsconfig.json",
    "analyze": "yarn build --environment ANALYZE",
    "test": "echo \"This repo doesn't include any unit tests at this time.\"",
    "lint": "eslint src stories --ext .jsx --ext .js --ext .ts --ext .tsx --cache --cache-location './node_modules/@eslint/.eslintcache/'",
    "lint:fix": "eslint src stories --ext .jsx --ext .js --ext .ts --ext .tsx --fix",
    "lint:types": "yarn tsc --noEmit",
    "storybook:lazy": "STORYBOOK_LAZY_COMPILATION=true yarn storybook",
    "storybook": "yarn sync:design-tokens && storybook dev -p 6006",
    "build-storybook": "yarn sync:design-tokens && yarn storybook:build-tailwind && storybook build",
    "test-storybook": "test-storybook --coverage && yarn create-coverage-report",
    "//_": "Open the coverage report and click through the component names and files to reveal visually which lines aren't covered.",
    "open-coverage-report": "open coverage/storybook/lcov-report/index.html",
    "create-coverage-report": "npx nyc report --reporter=lcov --report-dir coverage/storybook",
    "test-storybook:ci": "yarn test-storybook --maxWorkers=2",
    "chromatic": "chromatic --exit-zero-on-changes --only-changed",
    "build-tailwind": "yarn sync:design-tokens && NODE_ENV=production npx tailwindcss -i tailwind.css -o ./dist/web-ui-tailwind.css",
    "storybook:build-tailwind": "yarn sync:design-tokens && npx tailwindcss -i tailwind.storybook.css -o ./.storybook/storybook-tailwind.css",
    "storybook:watch-tailwind": "yarn storybook:build-tailwind -w",
    "copy-build": "cp -a ./dist/. ../cVitals-Web/node_modules/@luscii-healthtech/web-ui/dist",
    "test-copy-build": "yarn build && yarn copy-build",
    "prepare": "husky install",
    "pre-commit": "lint-staged",
    "icons:regular": "rimraf src/components/Icons/*Icon.tsx && yarn svgr src/components/Icons/icons --no-prettier --config-file svgr.regular-icons.config.js && prettier src/components/Icons/*.{ts,tsx} --no-config --write && yarn icons:regular:verify",
    "icons:regular:verify": "node ./scripts/verify-regular-icons.mjs",
    "//__": "Special icons are icons that are not part of the regular icon set, meaning they either have a different size or cannot take any color.",
    "icons:special": "rimraf src/components/Icons/special-icons/*Icon.tsx && yarn svgr src/components/Icons/special-icons/source-files --no-prettier --config-file svgr.special-icons.config.js && prettier src/components/Icons/special-icons/*.{ts,tsx} --no-config --write",
    "icons:generate-list": "node ./scripts/generate-icon-list.mjs",
    "icons": "yarn icons:special && yarn icons:regular && yarn icons:generate-list",
    "sync:design-tokens": "node ./scripts/sync-design-tokens.mjs",
    "add-coding-standards": "git clone --depth 1 git@github.com:Luscii/coding-standards-database.git .coding-standards",
    "pull-coding-standards": "git -C .coding-standards pull --ff-only"
  },
  "peerDependencies": {
    "@dnd-kit/core": "^6.3.1",
    "@dnd-kit/sortable": "^10.0.0",
    "@dnd-kit/utilities": "^3.2.2",
    "react": ">=18",
    "react-dom": ">=18"
  },
  "devDependencies": {
    "@commitlint/cli": "^21.2.2",
    "@commitlint/config-conventional": "^21.2.2",
    "@dnd-kit/core": "^6.3.1",
    "@dnd-kit/sortable": "^10.0.0",
    "@dnd-kit/utilities": "^3.2.2",
    "@eslint/compat": "^2.0.0",
    "@eslint/eslintrc": "^3.3.1",
    "@eslint/js": "^9.39.1",
    "@rollup/plugin-alias": "^5.1.1",
    "@rollup/plugin-commonjs": "^25.0.3",
    "@rollup/plugin-image": "^3.0.3",
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@rollup/plugin-terser": "^1.0.0",
    "@rollup/plugin-typescript": "^11.1.2",
    "@storybook/addon-a11y": "^10.2.13",
    "@storybook/addon-coverage": "^3.0.1",
    "@storybook/addon-docs": "^10.2.13",
    "@storybook/addon-links": "^10.2.13",
    "@storybook/builder-vite": "^10.2.13",
    "@storybook/react-vite": "^10.2.13",
    "@storybook/test-runner": "^0.24.2",
    "@svgr/cli": "^8.1.0",
    "@tailwindcss/cli": "^4.1.12",
    "@tailwindcss/forms": "^0.5.4",
    "@tailwindcss/postcss": "^4.1.12",
    "@types/d3-scale": "^4.0.9",
    "@types/jscodeshift": "^17.3.0",
    "@types/lodash-es": "^4.17.12",
    "@types/react": "^19.2.18",
    "@types/react-dom": "^19.2.4",
    "@types/react-lazy-load-image-component": "^1.6.4",
    "@typescript-eslint/eslint-plugin": "^8.60.0",
    "@typescript-eslint/parser": "^8.46.4",
    "autoprefixer": "^10.4.14",
    "axe-html-reporter": "^2.2.3",
    "axe-playwright": "^1.2.3",
    "cartesian": "^1.0.1",
    "chalk": "^5.3.0",
    "chromatic": "^18.2.0",
    "concurrently": "^8.2.2",
    "eslint": "^9.39.1",
    "eslint-plugin-chai-friendly": "^1.2.1",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-no-relative-import-paths": "^1.6.1",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-storybook": "^10.2.13",
    "find-in-files": "^0.5.0",
    "globals": "^16.5.0",
    "husky": "^8.0.3",
    "jscodeshift": "^17.3.0",
    "lint-staged": "^13.2.3",
    "postcss": "^8.5.23",
    "postcss-loader": "^8.2.0",
    "postcss-url": "^10.1.3",
    "prettier": "^3.0.0",
    "prettier-plugin-tailwindcss": "^0.6.14",
    "react": "^19.2.8",
    "react-dom": "^19.2.8",
    "rimraf": "^6.1.0",
    "rollup": "^4.59.0",
    "rollup-plugin-esbuild": "^6.2.1",
    "rollup-plugin-postcss": "^4.0.2",
    "rollup-plugin-visualizer": "^5.9.2",
    "sass": "^1.83.0",
    "sass-loader": "^17.0.0",
    "storybook": "^10.2.13",
    "storybook-addon-tag-badges": "^3.0.4",
    "style-inject": "^0.3.0",
    "tailwindcss": "^4.1.12",
    "tailwindcss-animate": "^1.0.7",
    "tsc-alias": "^1.8.16",
    "tslib": "^2.6.2",
    "typescript": "^5.4",
    "vite": "^7.3.5"
  },
  "dependencies": {
    "@fontsource/inter": "^4.5.15",
    "@fontsource/roboto": "^5.0.5",
    "@headlessui/react": "^2.2.0",
    "@heroicons/react": "^2.2.0",
    "@radix-ui/react-dropdown-menu": "^2.1.24",
    "@radix-ui/react-hover-card": "^1.1.23",
    "@radix-ui/react-switch": "^1.3.7",
    "@radix-ui/react-tabs": "^1.1.21",
    "@radix-ui/react-toggle-group": "^1.1.19",
    "@radix-ui/react-tooltip": "^1.2.16",
    "@tiptap/extension-mention": "3.22.0",
    "@tiptap/pm": "^3.22.0",
    "@tiptap/react": "^3.22.0",
    "@tiptap/starter-kit": "^3.22.0",
    "@tiptap/suggestion": "3.22.0",
    "classnames": "^2.3.2",
    "d3-scale": "^4.0.2",
    "date-fns": "^3.3.1",
    "dompurify": "^3.4.13",
    "lodash-es": "^4.18.1",
    "react-datepicker": "^7.6.0",
    "react-lazy-load-image-component": "^1.6.3",
    "react-modal": "^3.16.3",
    "react-select": "^5.9.0",
    "sonner": "^2.0.3",
    "tailwind-merge": "^3.3.1"
  },
  "//": [
    " ##### disclaimer on resolutions #####",
    "Most of the resolution packages below are because of security issues raised by dependabot.",
    "For more info: https://www.notion.so/Dependency-management-f1011c7d07614521b40599dd96a54377",
    "jackspeak - https://github.com/storybookjs/storybook/issues/22431"
  ],
  "resolutions": {
    "jackspeak": "2.1.1",
    "socks": "2.8.9",
    "minimatch@npm:~3.0.4": "^3.1.3"
  },
  "packageManager": "yarn@4.14.1",
  "dependenciesMeta": {
    "@parcel/watcher": {
      "built": true
    },
    "@swc/core": {
      "built": true
    },
    "@tailwindcss/oxide": {
      "built": true
    },
    "esbuild": {
      "built": true
    }
  }
}
