{
  "name": "@commonpub/docs",
  "version": "0.6.3",
  "type": "module",
  "description": "Markdown rendering pipeline with Meilisearch and Postgres FTS for CommonPub",
  "license": "AGPL-3.0-or-later",
  "repository": {
    "type": "git",
    "url": "https://github.com/commonpub/commonpub",
    "directory": "packages/docs"
  },
  "keywords": [
    "commonpub",
    "activitypub",
    "federation",
    "typescript",
    "markdown",
    "docs",
    "meilisearch"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22"
  },
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist/",
    "!dist/__tests__/",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@shikijs/rehype": "^4.0.2",
    "rehype-sanitize": "^6.0.0",
    "rehype-slug": "^6.0.0",
    "rehype-stringify": "^10.0.1",
    "remark-frontmatter": "^5.0.0",
    "remark-gfm": "^4.0.1",
    "remark-parse": "^11.0.0",
    "remark-rehype": "^11.1.2",
    "shiki": "^4.0.2",
    "unified": "^11.0.5",
    "yaml": "^2.8.2",
    "zod": "^4.3.6",
    "@commonpub/schema": "0.16.0",
    "@commonpub/config": "0.12.0"
  },
  "peerDependencies": {
    "meilisearch": "^0.48.0"
  },
  "peerDependenciesMeta": {
    "meilisearch": {
      "optional": true
    }
  },
  "devDependencies": {
    "typescript": "^5.7.0",
    "vitest": "^3.0.0"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "vitest run",
    "lint": "eslint src/",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}