{
  "name": "nitro-graphql",
  "type": "module",
  "version": "1.8.0",
  "description": "GraphQL integration for Nitro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/productdevbook/nitro-graphql"
  },
  "sideEffects": false,
  "imports": {
    "#graphql/server": {
      "types": "./dist/graphql/server.d.mts",
      "import": "./dist/graphql/server.mjs"
    }
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    },
    "./codegen": {
      "types": "./dist/codegen.d.mts",
      "import": "./dist/codegen.mjs"
    },
    "./watcher": {
      "types": "./dist/watcher.d.mts",
      "import": "./dist/watcher.mjs"
    },
    "./client-watcher": {
      "types": "./dist/client-watcher.d.mts",
      "import": "./dist/client-watcher.mjs"
    },
    "./context": {
      "types": "./dist/context.d.mts",
      "import": "./dist/context.mjs"
    },
    "./utils": {
      "types": "./dist/utils/index.d.mts",
      "import": "./dist/utils/index.mjs"
    },
    "./utils/define": {
      "types": "./dist/utils/define.d.mts",
      "import": "./dist/utils/define.mjs"
    },
    "./utils/apollo": {
      "types": "./dist/utils/apollo.d.mts",
      "import": "./dist/utils/apollo.mjs"
    },
    "./internal": {
      "types": "./dist/internal/index.d.mts",
      "import": "./dist/internal/index.mjs"
    },
    "./nuxt": {
      "types": "./dist/ecosystem/nuxt.d.mts",
      "import": "./dist/ecosystem/nuxt.mjs"
    }
  },
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "@apollo/server": "^5.0.0",
    "@apollo/utils.withrequired": "^3.0.0",
    "@as-integrations/h3": "^2.0.0",
    "graphql": "^16.11.0",
    "h3": "^1.15.3",
    "nitropack": "^2.11.13"
  },
  "peerDependenciesMeta": {
    "@apollo/server": {
      "optional": true
    },
    "@apollo/utils.withrequired": {
      "optional": true
    },
    "@as-integrations/h3": {
      "optional": true
    }
  },
  "dependencies": {
    "@apollo/subgraph": "^2.12.2",
    "@graphql-codegen/core": "^5.0.0",
    "@graphql-codegen/import-types-preset": "^3.0.1",
    "@graphql-codegen/typed-document-node": "^6.1.5",
    "@graphql-codegen/typescript": "^5.0.7",
    "@graphql-codegen/typescript-generic-sdk": "^4.0.2",
    "@graphql-codegen/typescript-operations": "^5.0.7",
    "@graphql-codegen/typescript-resolvers": "^5.1.5",
    "@graphql-tools/graphql-file-loader": "^8.1.8",
    "@graphql-tools/load": "^8.1.7",
    "@graphql-tools/load-files": "^7.0.1",
    "@graphql-tools/merge": "^9.1.6",
    "@graphql-tools/schema": "^10.0.30",
    "@graphql-tools/url-loader": "^9.0.5",
    "@graphql-tools/utils": "^10.11.0",
    "chokidar": "^5.0.0",
    "consola": "^3.4.2",
    "defu": "^6.1.4",
    "graphql-config": "^5.1.5",
    "graphql-scalars": "^1.25.0",
    "knitwork": "^1.3.0",
    "ohash": "^2.0.11",
    "oxc-parser": "^0.104.0",
    "pathe": "^2.0.3",
    "tinyglobby": "^0.2.15"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^6.7.2",
    "@nuxt/kit": "^4.2.2",
    "@nuxt/schema": "^4.2.2",
    "@types/node": "^25.0.3",
    "bumpp": "^10.3.2",
    "changelogen": "^0.6.2",
    "crossws": "0.3.5",
    "eslint": "^9.39.2",
    "graphql": "16.11.0",
    "graphql-yoga": "^5.18.0",
    "h3": "1.15.3",
    "nitropack": "^2.12.9",
    "tsdown": "^0.18.2",
    "typescript": "^5.9.3",
    "vitepress-plugin-llms": "^1.9.3"
  },
  "resolutions": {
    "nitro-graphql": "link:."
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "bumpp": "bumpp package.json",
    "release": "pnpm build && pnpm bumpp",
    "playground:nitro": "cd playgrounds/nitro && pnpm install && pnpm dev",
    "playground:nuxt": "cd playgrounds/nuxt && pnpm install && pnpm dev",
    "playground:federation": "cd playgrounds/federation && pnpm install && pnpm dev",
    "docs:dev": "cd .docs && pnpm install && pnpm dev",
    "docs:build": "cd .docs && pnpm install && pnpm build",
    "docs:preview": "cd .docs && pnpm preview",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix"
  }
}