{
  "name": "@yamada-ui/core",
  "version": "1.17.3",
  "description": "Yamada UI core",
  "keywords": [
    "yamada",
    "yamada ui",
    "theme",
    "theming",
    "component",
    "emotion",
    "ui",
    "ui-component",
    "css-in-js",
    "style",
    "styled",
    "style-props",
    "styled-component",
    "system",
    "design-system"
  ],
  "author": "Hirotomo Yamada <hirotomo.yamada@avap.co.jp>",
  "license": "MIT",
  "main": "dist/index.js",
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://yamada-ui.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/yamada-ui/yamada-ui",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/yamada-ui/yamada-ui/issues"
  },
  "dependencies": {
    "@emotion/css": "11.11.0",
    "@emotion/react": "11.11.0",
    "@emotion/sheet": "1.4.0",
    "@emotion/styled": "11.11.0",
    "csstype": "^3.1.3",
    "react-fast-compare": "^3.2.2",
    "@yamada-ui/portal": "1.0.30",
    "@yamada-ui/utils": "1.7.2"
  },
  "devDependencies": {
    "clean-package": "2.2.0",
    "motion": "12.5.0",
    "react": "^18.3.1"
  },
  "peerDependencies": {
    "react": ">=18"
  },
  "clean-package": "../../clean-package.config.json",
  "tsup": {
    "clean": true,
    "target": "es2019",
    "format": [
      "cjs",
      "esm"
    ],
    "banner": {
      "js": "\"use client\""
    },
    "sourcemap": true
  },
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "dev": "pnpm build:fast -- --watch",
    "build": "tsup src --entry src/index.ts --entry src/generated-theme.types.ts --entry src/ui-theme.types.ts --dts",
    "build:fast": "tsup src",
    "clean": "rimraf dist .turbo",
    "typecheck": "tsc --noEmit"
  }
}