{
  "name": "fastify-bugsnag",
  "version": "5.1.2",
  "description": "Fastify plugin for Bugsnag",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "tsup-node --tsconfig tsconfig.build.json",
    "lint": "ts-standard --verbose | snazzy",
    "lint:fix": "ts-standard --fix | snazzy",
    "prepublishOnly": "npm run build",
    "postversion": "git push --tags && git push origin main && echo \"Successfully published new package version $npm_package_version\"",
    "preversion": "npm run lint && npm run test && npm run test:d && npm run build",
    "test": "nyc --reporter=lcov ts-mocha",
    "test:d": "tsd . -f test/types"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ZigaStrgar/fastify-bugsnag.git"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "bugsnag",
    "crash-logging",
    "errors",
    "error-logging",
    "error-reporting",
    "fastify-bugsnag",
    "fastify-bugsnag-plugin",
    "fastify-error-reporting",
    "fastify-plugin"
  ],
  "author": "Žiga Strgar <ziga.strgar@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ZigaStrgar/fastify-bugsnag/issues"
  },
  "homepage": "https://github.com/ZigaStrgar/fastify-bugsnag#readme",
  "dependencies": {
    "@bugsnag/node": "^8.0.0",
    "fastify-plugin": "^5.0.1"
  },
  "engines": {
    "node": "^20.10.0||^22.11.0||>=24.0.0"
  },
  "devDependencies": {
    "@tsconfig/node22": "^22.0.2",
    "@types/mocha": "^10.0.10",
    "@types/node": "^22.18.8",
    "@types/sinon": "^17.0.4",
    "fastify": "^5.0.0",
    "mocha": "^11.7.4",
    "nyc": "^17.1.0",
    "rimraf": "^6.0.1",
    "sinon": "^21.0.0",
    "snazzy": "^9.0.0",
    "ts-mocha": "^11.1.0",
    "ts-node": "^10.8.0",
    "ts-standard": "^12.0.0",
    "tsd": "^0.33.0",
    "tsup": "^8.3.0",
    "typescript": "~5.9.3"
  },
  "ts-standard": {
    "ignore": [
      "dist"
    ],
    "files": [
      "src/**/*.ts",
      "test/**/*.ts",
      "tsup.config.ts"
    ]
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      "**/*.d.ts",
      "test/**",
      "tsup.config.ts",
      "dist"
    ],
    "reporter": [
      "lcov"
    ],
    "all": true
  },
  "tsd": {
    "directory": "test/types"
  }
}
