{
  "name": "github-schema",
  "version": "1.32.0",
  "description": "GitHub's GraphQL schema",
  "keywords": [
    "github",
    "github graphql",
    "github schema",
    "graphql"
  ],
  "homepage": "https://github.com/luxass/github-schema",
  "bugs": {
    "url": "https://github.com/luxass/github-schema/issues"
  },
  "license": "MIT",
  "author": {
    "name": "Lucas Nørgård",
    "email": "lucasnrgaard@gmail.com",
    "url": "https://luxass.dev"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/luxass/github-schema.git"
  },
  "files": [
    "dist",
    "github-schema.d.ts",
    "github-schema.graphql"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./github-schema": {
      "import": "./dist/github-schema.mjs",
      "require": "./dist/github-schema.cjs"
    },
    "./raw": {
      "import": "./dist/raw.mjs",
      "require": "./dist/raw.cjs"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "graphql": "16.14.0",
    "graphql-tag": "2.12.6"
  },
  "devDependencies": {
    "@graphql-codegen/add": "7.0.1",
    "@graphql-codegen/cli": "7.1.0",
    "@graphql-codegen/typescript": "6.0.2",
    "@types/node": "24.12.4",
    "oxfmt": "0.52.0",
    "oxlint": "1.67.0",
    "oxlint-tsgolint": "0.23.0",
    "publint": "0.3.21",
    "tsdown": "0.22.1",
    "typescript": "6.0.3"
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsdown",
    "schema:download": "node --env-file=.env ./scripts/download.ts",
    "schema:codegen": "graphql-codegen",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "fmt": "oxfmt",
    "fmt:check": "oxfmt --check",
    "typecheck": "tsc --noEmit"
  }
}