{
  "name": "@octokit/graphql-schema",
  "version": "14.4.0",
  "publishConfig": {
    "access": "public"
  },
  "description": "GitHubâs GraphQL Schema with validation. Automatically updated.",
  "main": "index.js",
  "scripts": {
    "lint": "prettier --check '{bin,lib,test}/**/*.{js,ts}' *.md package.json",
    "lint:fix": "prettier --write '{bin,lib,test}/**/*.{js,ts}' *.md package.json",
    "test": "node test",
    "validate:ts": "tsc --noEmit --noImplicitAny test/typescript-validate.ts",
    "posttest": "npm run -s lint",
    "download": "node bin/download.js",
    "generate-typescript": "graphql-codegen",
    "update": "npm run -s download && npm run -s generate-typescript"
  },
  "keywords": [
    "github",
    "graphql",
    "schema",
    "validation"
  ],
  "author": "Gregor Martynus (https://twitter.com/gr2m)",
  "license": "MIT",
  "dependencies": {
    "graphql": "^16.0.0",
    "graphql-tag": "^2.10.3"
  },
  "devDependencies": {
    "@graphql-codegen/cli": "^3.0.0",
    "@graphql-codegen/typescript": "^3.0.0",
    "@octokit/graphql": "^5.0.0",
    "dotenv": "^16.0.0",
    "execa": "^5.1.1",
    "prettier": "^2.0.1",
    "semantic-release": "^21.0.0",
    "typescript": "^5.0.0"
  },
  "repository": "github:octokit/graphql-schema",
  "types": "index.d.ts",
  "sideEffects": false,
  "release": {
    "branches": [
      "+([0-9]).x",
      "main",
      "next",
      {
        "name": "beta",
        "prerelease": true
      }
    ]
  },
  "codegen": {
    "overwrite": true,
    "schema": "schema.graphql",
    "generates": {
      "schema.d.ts": {
        "plugins": [
          "typescript"
        ],
        "config": {
          "enumsAsTypes": true,
          "useImplementingTypes": true
        }
      }
    }
  }
}
