{
  "name": "@bfra.me/doc-sync",
  "version": "0.1.4",
  "description": "Intelligent documentation synchronization engine for automatic Astro Starlight site updates",
  "keywords": [
    "astro",
    "bfra.me",
    "documentation",
    "generator",
    "jsdoc",
    "mdx",
    "starlight",
    "sync",
    "typescript",
    "works"
  ],
  "homepage": "https://github.com/bfra-me/works/tree/main/packages/doc-sync#readme",
  "bugs": "https://github.com/bfra-me/works/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bfra-me/works.git",
    "directory": "packages/doc-sync"
  },
  "license": "MIT",
  "author": "Marcus R. Brown <contact@bfra.me>",
  "type": "module",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "source": "./src/index.ts",
      "import": "./lib/index.js"
    },
    "./generators": {
      "types": "./lib/generators/index.d.ts",
      "source": "./src/generators/index.ts",
      "import": "./lib/generators/index.js"
    },
    "./orchestrator": {
      "types": "./lib/orchestrator/index.d.ts",
      "source": "./src/orchestrator/index.ts",
      "import": "./lib/orchestrator/index.js"
    },
    "./parsers": {
      "types": "./lib/parsers/index.d.ts",
      "source": "./src/parsers/index.ts",
      "import": "./lib/parsers/index.js"
    },
    "./types": {
      "types": "./lib/types.d.ts",
      "source": "./src/types.ts",
      "import": "./lib/types.js"
    },
    "./utils": {
      "types": "./lib/utils/index.d.ts",
      "source": "./src/utils/index.ts",
      "import": "./lib/utils/index.js"
    },
    "./watcher": {
      "types": "./lib/watcher/index.d.ts",
      "source": "./src/watcher/index.ts",
      "import": "./lib/watcher/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "bin": {
    "doc-sync": "./lib/cli/index.js"
  },
  "files": [
    "!**/*.map",
    "lib",
    "src"
  ],
  "dependencies": {
    "@clack/prompts": "0.11.0",
    "cac": "6.7.14",
    "consola": "3.4.2",
    "escape-html": "^1.0.3",
    "fast-glob": "3.3.3",
    "remark-mdx": "3.1.1",
    "remark-parse": "11.0.0",
    "ts-morph": "27.0.2",
    "unified": "11.0.5",
    "zod": "4.3.4",
    "@bfra.me/es": "0.1.0"
  },
  "devDependencies": {
    "@types/escape-html": "^1.0.4",
    "chokidar": "5.0.0",
    "memfs": "4.51.1",
    "@bfra.me/works": "0.0.0-development"
  },
  "peerDependencies": {
    "chokidar": "^5.0.0"
  },
  "peerDependenciesMeta": {
    "chokidar": {
      "optional": true
    }
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsx src/cli/index.ts",
    "start": "node lib/cli/index.js",
    "test": "vitest run",
    "lint": "eslint",
    "test:watch": "vitest"
  }
}