{
  "name": "fastify-axios",
  "version": "1.4.2",
  "description": "Decorate fastify instance with axios http client",
  "type": "module",
  "types": "dist/index.d.ts",
  "main": "dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "unit": "tsx test/index.test.ts",
    "test": "pnpm build && tsx test/index.test.ts",
    "report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/davidedantonio/fastify-axios.git"
  },
  "keywords": [
    "fastify",
    "axios",
    "nodejs"
  ],
  "author": "Davide D'Antonio <davide.dantonio1984@gmail.com>",
  "contributors": [
    {
      "name": "Emiliano Bruni",
      "url": "https://github.com/EmilianoBruni",
      "author": true
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/davidedantonio/fastify-axios/issues"
  },
  "tap": {},
  "homepage": "https://github.com/davidedantonio/fastify-axios#readme",
  "dependencies": {
    "fastify-plugin": "^5.1.0"
  },
  "peerDependencies": {
    "axios": "^1.0.0"
  },
  "devDependencies": {
    "@fastify/pre-commit": "^2.2.1",
    "@types/node": "^25.5.0",
    "fastify": "^5.8.2",
    "fastify-tsconfig": "^3.0.0",
    "standard": "^17.1.2",
    "tap": "^21.6.2",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3"
  },
  "pre-commit": [
    "test"
  ]
}
