{
  "name": "github-graphql-schema",
  "version": "10.198.0",
  "publishConfig": {
    "access": "public"
  },
  "description": "GitHub’s GraphQL Schema with validation. Automatically updated.",
  "main": "index.js",
  "bin": {
    "github-graphql-schema": "./bin/bin.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-codegen/cli": "^2.6.2",
    "@graphql-codegen/near-operation-file-preset": "^2.2.12",
    "@graphql-codegen/typescript": "^2.4.11",
    "@graphql-codegen/typescript-operations": "^2.4.0",
    "commander": "^9.2.0",
    "graphql": "^16.5.0",
    "graphql-tag": "^2.12.6"
  },
  "devDependencies": {
    "@octokit/graphql": "^4.8.0",
    "dotenv": "^16.0.1",
    "execa": "^5.1.1",
    "prettier": "^2.6.2",
    "semantic-release": "^19.0.2",
    "typescript": "^4.6.4"
  },
  "repository": "github:zhouzi/github-graphql-schema",
  "types": "index.d.ts",
  "sideEffects": false,
  "codegen": {
    "overwrite": true,
    "schema": "schema.graphql",
    "generates": {
      "schema.d.ts": {
        "plugins": [
          "typescript"
        ],
        "config": {
          "enumsAsTypes": true,
          "useImplementingTypes": true,
          "scalars": {
            "Base64String": "string",
            "Date": "string",
            "DateTime": "string",
            "GitObjectID": "string",
            "GitSSHRemote": "string",
            "GitTimestamp": "string",
            "HTML": "string",
            "PreciseDateTime": "string",
            "URI": "string",
            "X509Certificate": "string"
          }
        }
      }
    }
  },
  "renovate": {
    "extends": [
      "github>octokit/.github"
    ]
  }
}
