{
  "name": "@lpdsgn/astro-themes",
  "version": "0.2.0",
  "description": "Perfect dark mode in Astro with no flash. System preference, multiple themes, and sync across tabs.",
  "type": "module",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./components": {
      "types": "./dist/components/index.d.ts",
      "default": "./dist/components/index.js"
    },
    "./components/ThemeProvider.astro": "./dist/components/ThemeProvider.astro",
    "./client": {
      "types": "./dist/client.d.ts",
      "default": "./dist/client.js"
    },
    "./types": {
      "types": "./dist/types.d.ts",
      "default": "./dist/types.js"
    },
    "./toolbar": {
      "types": "./dist/toolbar/app.d.ts",
      "default": "./dist/toolbar/app.js"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "astro-integration",
    "astro-component",
    "withastro",
    "astro",
    "dark-mode",
    "themes",
    "theme-provider",
    "next-themes"
  ],
  "author": "",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LPdsgn/astro-themes.git"
  },
  "bugs": "https://github.com/LPdsgn/astro-themes/issues",
  "homepage": "https://github.com/LPdsgn/astro-themes#readme",
  "license": "MIT",
  "peerDependencies": {
    "astro": "^5.1.3 || ^6.0.0"
  },
  "dependencies": {
    "astro-integration-kit": "0.20.0",
    "zod": "^4.3.5"
  },
  "devDependencies": {
    "@types/node": "^25.0.8",
    "tsup": "8.5.1"
  },
  "scripts": {
    "dev": "tsup --watch",
    "build": "tsup && node -e \"require('fs').copyFileSync('src/components/index.d.ts', 'dist/components/index.d.ts')\""
  }
}