{
  "name": "@alice-ui/theme",
  "version": "1.0.31",
  "description": "The default theme for AliceUI components",
  "homepage": "https://github.com/bobbychan/alice-ui#readme",
  "license": "MIT",
  "main": "dist/index.js",
  "sideEffects": false,
  "files": [
    "dist",
    "plugin.js",
    "plugin.d.ts",
    "colors.js",
    "colors.d.ts"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bobbychan/alice-ui.git",
    "directory": "packages/theme"
  },
  "dependencies": {
    "color": "^4.2.3",
    "color2k": "^2.0.3",
    "deepmerge": "4.3.1",
    "flat": "^5.0.2",
    "@heroui/shared-utils": "^2.0.0",
    "tailwind-variants": "^1.0.0"
  },
  "peerDependencies": {
    "tailwindcss": ">=3.4.0"
  },
  "tsup": {
    "clean": true,
    "target": "es2019",
    "format": [
      "cjs",
      "esm"
    ]
  },
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./plugin": {
      "types": "./dist/plugin.d.ts",
      "import": "./dist/plugin.mjs",
      "require": "./dist/plugin.js"
    },
    "./colors": {
      "types": "./dist/colors.d.ts",
      "import": "./dist/colors.mjs",
      "require": "./dist/colors.js"
    },
    "./package.json": "./package.json"
  }
}