{
  "name": "smarthr-ui",
  "description": "SmartHR ui components built with React.",
  "version": "93.0.0",
  "author": "SmartHR-UI Team",
  "type": "module",
  "dependencies": {
    "@smarthr/wareki": "^1.3.0",
    "dayjs": "^1.11.18",
    "decimal.js": "^10.6.0",
    "intl-messageformat": "^11.2.0",
    "lodash.merge": "^4.6.2",
    "lodash.range": "^3.2.0",
    "polished": "^4.3.0",
    "react-draggable": "^4.5.0",
    "react-icons": "^5.5.0",
    "react-innertext": "^1.1.5",
    "react-pdf": "^9.2.1",
    "react-transition-group": "^4.4.5",
    "tailwind-variants": "^0.3.1",
    "tailwindcss": "^3.4.19",
    "typescript-eslint": "^8.56.1"
  },
  "devDependencies": {
    "@babel/core": "^7.29.0",
    "@babel/preset-env": "^7.28.6",
    "@babel/preset-react": "^7.27.1",
    "@babel/preset-typescript": "^7.27.1",
    "@rollup/plugin-commonjs": "^29.0.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-replace": "^6.0.3",
    "@rollup/plugin-typescript": "^12.1.4",
    "@storybook/addon-docs": "9.1.19",
    "@storybook/cli": "9.1.19",
    "@storybook/react": "9.1.19",
    "@storybook/react-vite": "9.1.19",
    "@vitejs/plugin-react": "^5.1.4",
    "@swc/core": "^1.15.17",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.2",
    "@testing-library/user-event": "^14.6.1",
    "@types/lodash.merge": "^4.6.9",
    "@types/lodash.range": "^3.2.9",
    "@types/node": "^20.19.35",
    "@types/react": "^18.3.28",
    "@types/react-dom": "^19.2.3",
    "@types/react-transition-group": "^4.4.12",
    "@types/styled-components": "^5.1.36",
    "autoprefixer": "^10.4.27",
    "babel-plugin-polyfill-corejs2": "^0.4.17",
    "babel-plugin-polyfill-regenerator": "^0.6.6",
    "chromatic": "^15.0.0",
    "eslint-plugin-storybook": "9.1.19",
    "glob": "13.0.6",
    "http-server": "^14.1.1",
    "jsdom": "^26.1.0",
    "npm-run-all2": "^8.0.4",
    "playwright": "^1.54.2",
    "plop": "^4.0.5",
    "postcss": "^8.5.6",
    "postcss-styled-syntax": "^0.7.1",
    "postcss-syntax": "^0.36.2",
    "react": "^19.2.4",
    "react-docgen-typescript": "^2.4.0",
    "react-dom": "^19.2.4",
    "react-ga4": "^2.1.0",
    "react-intl": "^10.1.0",
    "rimraf": "^6.0.1",
    "rollup": "^4.59.0",
    "rollup-plugin-preserve-directives": "^0.4.0",
    "rollup-plugin-rename-node-modules": "^1.3.1",
    "storybook": "9.1.19",
    "storybook-addon-pseudo-states": "9.1.19",
    "styled-components": "^5.3.11",
    "tailwind-merge": "^3.3.1",
    "tslib": "^2.8.1",
    "tsx": "^4.20.6",
    "vitest": "^4.0.18"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0",
    "react-intl": "^7.0.4 || ^8.0.0 || ^10.0.0",
    "styled-components": "^5.0.1"
  },
  "bugs": {
    "url": "https://github.com/kufu/smarthr-ui/issues"
  },
  "files": [
    "esm",
    "lib",
    "smarthr-ui.css",
    "metadata.json"
  ],
  "homepage": "https://github.com/kufu/smarthr-ui#readme",
  "keywords": [
    "react",
    "react-component",
    "smarthr",
    "typescript"
  ],
  "license": "MIT",
  "lint-staged": {
    "*.{ts,tsx}": [
      "eslint --fix",
      "prettier --write",
      "stylelint --fix"
    ]
  },
  "main": "lib/index.cjs",
  "module": "lib/index.js",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.js",
      "require": "./lib/index.cjs"
    },
    "./types": {
      "types": "./lib/types/index.d.ts",
      "import": "./lib/types/index.js",
      "require": "./lib/types/index.cjs"
    },
    "./lib/*": {
      "types": "./lib/*.d.ts",
      "import": "./lib/*.js",
      "require": "./lib/*.cjs"
    },
    "./esm/*": {
      "types": "./lib/*.d.ts",
      "import": "./lib/*.js",
      "require": "./lib/*.cjs"
    },
    "./smarthr-ui.css": "./smarthr-ui.css",
    "./package.json": "./package.json",
    "./metadata.json": "./metadata.json"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kufu/smarthr-ui.git"
  },
  "sideEffects": [
    "*.css",
    "**/configureTwMerge.*",
    "./lib/index.js",
    "./lib/index.cjs"
  ],
  "typings": "lib/index.d.ts",
  "scripts": {
    "build": "npm-run-all -p build:esm build:cjs build:types build:css -s build:metadata",
    "build:cjs": "rollup --config rollup.cjs.config.js 3>&1 1>&2 2>&3 | grep -v \"→.*lib\" >&2 # rollupがentryPointsを全部出すので抑制",
    "build:esm": "rollup --config rollup.esm.config.js 3>&1 1>&2 2>&3 | grep -v \"→.*lib\" >&2 # rollupがentryPointsを全部出すので抑制",
    "build:types": "tsc -p tsconfig.build.json",
    "build:css": "tailwindcss -i ./src/styles/index.css -o ./smarthr-ui.css",
    "build:metadata": "tsx scripts/generateMetadata.ts",
    "build-storybook": "storybook build --quiet",
    "clean": "rimraf ./lib ./esm ./smarthr-ui.css ./metadata.json",
    "format": "run-s -c format:*",
    "format:eslint": "eslint --fix './**/*.ts{,x}'",
    "format:prettier": "prettier --write './src/**/*.ts{,x}'",
    "format:stylelint": "stylelint --fix './src/**/*.ts{,x}'",
    "lint": "run-p lint:*",
    "lint:eslint": "eslint './**/*.ts{,x}'",
    "lint:knip": "knip --exclude duplicates",
    "lint:prettier": "prettier --check './src/**/*.ts{,x}'",
    "lint:style": "stylelint './**/*.ts{,x}'",
    "lint:tsc": "tsc --noEmit -p tsconfig.build.json",
    "storybook": "storybook dev -p 6006",
    "dev": "run-s storybook",
    "test": "vitest",
    "chromatic": "chromatic",
    "scaffold:storybook": "plop"
  }
}