{
  "name": "polly-ts-fastify",
  "version": "0.1.2",
  "description": "Fastify integration for Polly-TS",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "keywords": [
    "polly",
    "resilience",
    "fastify",
    "plugin",
    "typescript"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "polly-ts-core": "0.1.1"
  },
  "peerDependencies": {
    "fastify": "^4.0.0 || ^5.0.0"
  },
  "devDependencies": {
    "fastify": "^4.26.1",
    "@types/node": "^20.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest",
    "lint": "eslint src/ --fix",
    "clean": "rm -rf dist"
  }
}