{
  "name": "@fedify/express",
  "version": "2.3.0",
  "description": "Integrate Fedify with Express",
  "keywords": [
    "Fedify",
    "Express",
    "Express.js"
  ],
  "author": {
    "name": "Hong Minhee",
    "email": "hong@minhee.org",
    "url": "https://hongminhee.org/"
  },
  "homepage": "https://fedify.dev/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fedify-dev/fedify.git",
    "directory": "packages/express"
  },
  "license": "MIT",
  "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",
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": {
        "import": "./dist/index.d.ts",
        "require": "./dist/index.d.cts",
        "default": "./dist/index.d.ts"
      },
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist/",
    "package.json"
  ],
  "peerDependencies": {
    "express": ">=4.0.0",
    "@fedify/fedify": "^2.3.0"
  },
  "devDependencies": {
    "@types/express": "^4.0.0",
    "@types/node": "^22.17.0",
    "tsdown": "^0.22.0",
    "typescript": "^6.0.0"
  },
  "scripts": {
    "build:self": "tsdown",
    "build": "pnpm --filter @fedify/express... run build:self",
    "prepublish": "pnpm build"
  }
}