{
  "name": "@jackdbd/fastify-syndicate-endpoint",
  "version": "0.2.0-canary.19",
  "description": "Fastify plugin that adds a `syndicate` endpoint to a Fastify server.",
  "author": {
    "name": "Giacomo Debidda",
    "email": "giacomo@giacomodebidda.com",
    "url": "https://giacomodebidda.com/"
  },
  "license": "MIT",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "fastify",
    "IndieWeb",
    "Micropub",
    "plugin",
    "POSSE",
    "syndication"
  ],
  "type": "module",
  "module": "lib/index.js",
  "typings": "lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.js"
    },
    "./schemas": {
      "types": "./lib/schemas/index.d.ts",
      "import": "./lib/schemas/index.js"
    },
    "./schemas/*": {
      "types": "./lib/schemas/*.d.ts",
      "import": "./lib/schemas/*.js"
    },
    "./package.json": "./package.json"
  },
  "typesVersions": {
    "*": {
      "*": [
        "./lib/*.d.ts"
      ]
    }
  },
  "sideEffects": false,
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "lib"
  ],
  "scripts": {
    "build": "run-s 'build:ts' 'vendor' 'build:readme' --print-label",
    "build:docs": "node ../scripts/dist/docs.js --package fastify-syndicate-endpoint",
    "build:readme": "node ../scripts/dist/readme.js --package fastify-syndicate-endpoint",
    "build:ts": "tsc -p tsconfig.json",
    "build:ts:watch": "tsc -p tsconfig.json --watch",
    "clean": "rimraf lib/ tsconfig.tsbuildinfo",
    "dev": "run-p build:ts:watch test:watch",
    "lint": "eslint --config ../../eslint.config.mjs --fix",
    "publint": "publint run .",
    "size": "pkg-size ./lib --sort-by=brotli --ignore-files {*.d.ts,*.map}",
    "test": "node --test --test-reporter=spec --test-reporter-destination=stdout",
    "test:ci": "node --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=spec --test-reporter-destination=stdout",
    "test:coverage": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info --test-reporter=spec --test-reporter-destination=stdout",
    "test:watch": "node --test --watch",
    "vendor": "node ../scripts/dist/vendor.js --package fastify-syndicate-endpoint"
  },
  "dependencies": {
    "@fastify/formbody": "^8.0.2",
    "@fastify/response-validation": "^3.0.3",
    "@jackdbd/canonical-url": "0.2.0-canary.8",
    "@jackdbd/fastify-hooks": "0.2.0-canary.16",
    "@jackdbd/indieauth": "0.2.0-canary.14",
    "@jackdbd/micropub": "0.2.0-canary.13",
    "@jackdbd/oauth2-error-responses": "0.2.0-canary.9",
    "@paulrobertlloyd/mf2tojf2": "^2.4.0",
    "@sinclair/typebox": "^0.34.15",
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1",
    "fast-xml-parser": "^4.5.1",
    "fastify-plugin": "^5.0.1"
  },
  "peerDependencies": {
    "@fastify/request-context": ">=6.0.0",
    "fastify": ">=5.0.0"
  },
  "devDependencies": {},
  "internalPackages": {
    "@repo/error-handlers": "*"
  }
}
