{
  "name": "fastify-rabbitmq",
  "version": "3.4.0",
  "description": "A Fastify RabbitMQ Plugin Developed in Pure TypeScript.",
  "keywords": [
    "rabbitmq-client",
    "typescript",
    "rabbitmq",
    "fastify",
    "fastify-plugin"
  ],
  "homepage": "https://github.com/Bugs5382/fastify-rabbitmq#readme",
  "bugs": {
    "url": "https://github.com/Bugs5382/fastify-rabbitmq/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Bugs5382/fastify-rabbitmq.git"
  },
  "license": "MIT",
  "author": "Shane Froebel",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsdown && tsc --emitDeclarationOnly",
    "clean": "rm -rf coverage docs dist temp",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "lint:npm": "npmPkgJsonLint .",
    "lint:package": "npx sort-package-json",
    "pack": "npm pack",
    "prepublishOnly": "npm run clean && npm run build",
    "test": "vitest run",
    "test:coverage": "vitest --coverage",
    "test:verbose": "vitest run --reporter verbose",
    "test:watch": "vitest watch",
    "typedoc": "typedoc",
    "typedoc:watch": "typedoc -watch",
    "update": "npx npm-check-updates -u --enginesNode && npm run update:post-update",
    "update:post-update": "npm install && npm run test",
    "build:watch": "tsdown --watch",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@fastify/error": "^4.2.0",
    "fastify-plugin": "^5.1.0",
    "rabbitmq-client": "^5.0.8"
  },
  "devDependencies": {
    "@eslint/js": "^9.28.0",
    "@shipgirl/typedoc-plugin-versions": "^0.3.1",
    "@types/node": "^22.15.29",
    "@typescript-eslint/eslint-plugin": "^8.33.0",
    "@typescript-eslint/parser": "^8.33.0",
    "@vitest/coverage-v8": "^3.1.4",
    "@vitest/ui": "^3.1.4",
    "eslint": "^9.28.0",
    "eslint-plugin-sort-class-members": "^1.21.0",
    "fastify": "^5.3.3",
    "npm-check-updates": "^18.0.1",
    "npm-package-json-lint": "^8.0.0",
    "npm-package-json-lint-config-default": "^7.0.1",
    "pre-commit": "^1.2.2",
    "snazzy": "^9.0.0",
    "sort-package-json": "^3.2.1",
    "ts-node": "^10.9.2",
    "tsd": "^0.32.0",
    "typedoc": "^0.28.5",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.33.0",
    "vitest": "^3.1.4",
    "@the-rabbit-hole/eslint-config": "^0.4.0",
    "tsdown": "^0.22.2"
  },
  "engines": {
    "node": ">=20.15.0"
  },
  "precommit": [
    "test",
    "build",
    "lint:fix"
  ]
}
