{
  "name": "@fedify/fastify",
  "version": "2.2.5",
  "description": "Integrate Fedify with Fastify",
  "keywords": [
    "Fedify",
    "Fastify"
  ],
  "license": "MIT",
  "author": "An Nyeong <me@annyeong.me>",
  "homepage": "https://fedify.dev/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fedify-dev/fedify.git",
    "directory": "packages/fastify"
  },
  "bugs": {
    "url": "https://github.com/fedify-dev/fedify/issues"
  },
  "funding": [
    "https://opencollective.com/fedify",
    "https://github.com/sponsors/dahlia"
  ],
  "type": "module",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "import": "./dist/index.js",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "import": "./dist/index.cjs",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist/",
    "package.json"
  ],
  "dependencies": {
    "fastify-plugin": "^5.0.1"
  },
  "peerDependencies": {
    "fastify": "^5.2.0",
    "@fedify/fedify": "^2.2.5"
  },
  "devDependencies": {
    "@types/node": "^22.17.0",
    "tsdown": "^0.21.6",
    "typescript": "^6.0.0"
  },
  "scripts": {
    "build:self": "tsdown",
    "build": "pnpm --filter @fedify/fastify... run build:self",
    "prepublish": "pnpm build",
    "test": "node --experimental-transform-types --test"
  }
}