{
  "name": "astrobook",
  "type": "module",
  "version": "0.8.3",
  "description": "The minimal UI component playground",
  "author": "ocavue <ocavue@gmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/ocavue",
  "homepage": "https://github.com/ocavue/astrobook#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/ocavue/astrobook.git"
  },
  "bugs": "https://github.com/ocavue/astrobook/issues",
  "keywords": [
    "ui",
    "component",
    "playground",
    "storybook",
    "react",
    "vue",
    "preact",
    "svelte",
    "solid",
    "lit",
    "astro",
    "vite"
  ],
  "sideEffects": false,
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./client": {
      "types": "./dist/client.d.ts",
      "import": "./dist/client.js",
      "default": "./dist/client.js"
    },
    "./components/*": {
      "default": "./lib/components/*"
    },
    "./pages/*": {
      "default": "./lib/pages/*"
    }
  },
  "typesVersions": {
    "*": {
      ".": [
        "./dist/index.d.ts"
      ],
      "./client": [
        "./dist/client.d.ts"
      ],
      "./pages/*": [
        "./lib/pages/*"
      ],
      "./components/*": [
        "./lib/components/*"
      ]
    }
  },
  "files": [
    "dist",
    "lib"
  ],
  "dependencies": {
    "@astrobook/core": "0.8.3",
    "@astrobook/ui": "0.8.3",
    "@astrobook/types": "0.8.3"
  },
  "peerDependencies": {
    "astro": ">=4.0.0"
  },
  "peerDependenciesMeta": {
    "astro": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^22.15.29",
    "astro": "^5.9.0",
    "typescript": "^5.8.3",
    "vite": "^6.3.5",
    "vitest": "^3.2.1"
  },
  "scripts": {
    "build": "tsc --build tsconfig.build.json"
  }
}