{
  "name": "@go-go-scope/adapter-fastify",
  "version": "2.9.1",
  "description": "Fastify adapter for go-go-scope - request-scoped structured concurrency",
  "type": "module",
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    }
  },
  "keywords": [
    "fastify",
    "adapter",
    "go-go-scope",
    "structured-concurrency"
  ],
  "engines": {
    "node": ">=24.0.0"
  },
  "author": "thelinuxlich",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/thelinuxlich/go-go-scope.git",
    "directory": "packages/adapter-fastify"
  },
  "files": [
    "dist/",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "go-go-scope": "2.9.1"
  },
  "peerDependencies": {
    "fastify": "^5.7.4",
    "fastify-plugin": "^5.1.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.4",
    "@types/node": "^24",
    "fastify": "^5.7.4",
    "fastify-plugin": "^5.1.0",
    "pkgroll": "^2.26.3",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "scripts": {
    "build": "pkgroll --clean-dist",
    "lint": "biome check --write src/",
    "test": "vitest run --passWithNoTests",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit"
  }
}