{
  "name": "@graphql-hive/logger",
  "version": "1.1.1",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/graphql-hive/gateway.git",
    "directory": "packages/logger"
  },
  "author": {
    "email": "contact@the-guild.dev",
    "name": "The Guild",
    "url": "https://the-guild.dev"
  },
  "license": "MIT",
  "engines": {
    "node": ">=20.0.0"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      },
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./writers/json": {
      "require": {
        "types": "./dist/writers/json.d.cts",
        "default": "./dist/writers/json.cjs"
      },
      "import": {
        "types": "./dist/writers/json.d.ts",
        "default": "./dist/writers/json.js"
      }
    },
    "./writers/logtape": {
      "require": {
        "types": "./dist/writers/logtape.d.cts",
        "default": "./dist/writers/logtape.cjs"
      },
      "import": {
        "types": "./dist/writers/logtape.d.ts",
        "default": "./dist/writers/logtape.js"
      }
    },
    "./writers/pino": {
      "require": {
        "types": "./dist/writers/pino.d.cts",
        "default": "./dist/writers/pino.cjs"
      },
      "import": {
        "types": "./dist/writers/pino.d.ts",
        "default": "./dist/writers/pino.js"
      }
    },
    "./writers/winston": {
      "require": {
        "types": "./dist/writers/winston.d.cts",
        "default": "./dist/writers/winston.cjs"
      },
      "import": {
        "types": "./dist/writers/winston.d.ts",
        "default": "./dist/writers/winston.js"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "pkgroll --clean-dist",
    "prepack": "yarn build"
  },
  "peerDependencies": {
    "@logtape/logtape": "^1.2.0 || ^2.0.0",
    "pino": "^9.13.0 || ^10.0.0"
  },
  "peerDependenciesMeta": {
    "@logtape/logtape": {
      "optional": true
    },
    "pino": {
      "optional": true
    },
    "winston": {
      "optional": true
    }
  },
  "devDependencies": {
    "@logtape/logtape": "^2.0.0",
    "@types/fast-redact": "^3",
    "@types/quick-format-unescaped": "^4.0.3",
    "@whatwg-node/disposablestack": "^0.0.6",
    "@whatwg-node/promise-helpers": "^1.3.2",
    "fast-redact": "^3.5.0",
    "fast-safe-stringify": "^2.1.1",
    "pino": "^10.1.0",
    "pkgroll": "2.27.1",
    "quick-format-unescaped": "^4.0.4",
    "winston": "^3.18.3"
  },
  "sideEffects": false,
  "dependencies.info": "all of the dependencies are in devDependencies which will bundle them into the package using pkgroll making pkgroll ultimately zero-dep with a smaller footprint because of tree-shaking"
}