{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "fastify-metrics",
  "version": "13.2.1",
  "description": "Prometheus metrics exporter for Fastify",
  "keywords": [
    "fastify-plugin",
    "metrics",
    "prometheus",
    "fastify",
    "plugin"
  ],
  "homepage": "https://github.com/SkeLLLa/fastify-metrics/blob/master/README.md",
  "bugs": {
    "url": "https://github.com/SkeLLLa/fastify-metrics/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/SkeLLLa/fastify-metrics.git"
  },
  "license": "MIT",
  "author": "m03geek",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "directories": {
    "lib": "src",
    "doc": "docs",
    "example": "examples",
    "test": "test"
  },
  "scripts": {
    "build": "pnpm run build:node && pnpm run build:docs && pnpm run build:format",
    "build:docs": "api-extractor run -l && api-documenter markdown -i ./temp -o ./docs/api",
    "build:format": "pretty-quick",
    "build:node": "tsc -p tsconfig.build.json",
    "lint": "pnpm run lint:types && pnpm run lint:codestyle && pnpm run lint:packages",
    "lint:codestyle": "eslint",
    "lint:packages": "pnpm audit --prod --audit-level=high",
    "lint:types": "tsc -p tsconfig.json",
    "release": "semantic-release",
    "test": "pnpm run lint && pnpm run test:unit",
    "test:unit": "node --no-warnings --import tsx --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info --test test/** --test-coverage-exclude=test/**",
    "test:unit:local": "node --no-warnings --import tsx --experimental-test-coverage --test test/** --test-coverage-exclude=test/**"
  },
  "dependencies": {
    "fastify-plugin": "^6.0.0",
    "prom-client": "^15.1.3"
  },
  "devDependencies": {
    "@microsoft/api-documenter": "^7.29.8",
    "@microsoft/api-extractor": "^7.57.8",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/commit-analyzer": "^13.0.1",
    "@semantic-release/exec": "^7.1.0",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^12.0.6",
    "@semantic-release/npm": "^13.1.5",
    "@semantic-release/release-notes-generator": "^14.1.0",
    "@skellla/lint-config": "^3.0.0",
    "@tsconfig/node-lts": "^24.0.0",
    "@tsconfig/strictest": "^2.0.8",
    "@types/node": "^25.6.0",
    "conventional-changelog-conventionalcommits": "^9.3.1",
    "eslint": "^10.1.0",
    "fastify": "^5.8.4",
    "globals": "^17.5.0",
    "globstar": "^1.0.0",
    "prettier": "^3.8.1",
    "pretty-quick": "^4.2.2",
    "semantic-release": "^25.0.3",
    "tsx": "^4.21.0",
    "typescript": "^6.0.2"
  },
  "peerDependencies": {
    "@platformatic/prom-client": "^1.0.0",
    "fastify": ">=5"
  },
  "peerDependenciesMeta": {
    "@platformatic/prom-client": {
      "optional": true
    }
  },
  "packageManager": "pnpm@10.32.1",
  "engines": {
    "node": ">=20",
    "pnpm": ">=10"
  },
  "devEngines": {
    "runtime": {
      "name": "node",
      "version": ">=20"
    }
  },
  "publishConfig": {
    "access": "public",
    "main": "dist/index.js",
    "provenance": true,
    "typings": "dist/index.d.ts"
  }
}
