{
  "name": "starlight-blog",
  "version": "0.19.0",
  "license": "MIT",
  "description": "Starlight plugin to add a blog to your documentation.",
  "author": "HiDeoo <github@hideoo.dev> (https://hideoo.dev)",
  "type": "module",
  "exports": {
    ".": "./index.ts",
    "./components/MarkdownContent.astro": "./components/starlight/MarkdownContent.astro",
    "./components/ThemeSelect.astro": "./components/starlight/ThemeSelect.astro",
    "./data": "./data.ts",
    "./middleware": "./middleware.ts",
    "./overrides/MarkdownContent.astro": "./overrides/MarkdownContent.astro",
    "./overrides/ThemeSelect.astro": "./overrides/ThemeSelect.astro",
    "./routes/Authors.astro": "./routes/Authors.astro",
    "./routes/Blog.astro": "./routes/Blog.astro",
    "./routes/Tags.astro": "./routes/Tags.astro",
    "./routes/rss": "./routes/rss.xml.ts",
    "./schema": "./schema.ts",
    "./styles": "./styles.css",
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@astrojs/mdx": "^4.0.8",
    "@astrojs/rss": "^4.0.11",
    "astro-remote": "^0.3.3",
    "github-slugger": "^2.0.0",
    "marked": "^15.0.4",
    "marked-plaintify": "^1.1.1",
    "ultrahtml": "^1.5.3"
  },
  "devDependencies": {
    "@playwright/test": "^1.49.1",
    "vitest": "2.1.6"
  },
  "peerDependencies": {
    "@astrojs/starlight": ">=0.32.0"
  },
  "engines": {
    "node": ">=18.17.1"
  },
  "packageManager": "pnpm@8.6.9",
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "sideEffects": false,
  "keywords": [
    "starlight",
    "plugin",
    "blog",
    "documentation",
    "astro"
  ],
  "homepage": "https://github.com/HiDeoo/starlight-blog",
  "repository": {
    "type": "git",
    "url": "https://github.com/HiDeoo/starlight-blog.git",
    "directory": "packages/starlight-blog"
  },
  "bugs": "https://github.com/HiDeoo/starlight-blog/issues",
  "scripts": {
    "test": "pnpm test:unit && pnpm test:e2e",
    "test:unit": "vitest",
    "test:e2e": "playwright install --with-deps chromium && playwright test",
    "lint": "eslint . --cache --max-warnings=0"
  }
}