{
  "version": "1.1.1",
  "license": "MIT",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "engines": {
    "node": ">=10"
  },
  "scripts": {
    "start": "tsdx watch",
    "build": "tsdx build",
    "test": "tsdx test",
    "lint": "tsdx lint",
    "prepare": "tsdx build",
    "size": "size-limit",
    "analyze": "size-limit --why"
  },
  "peerDependencies": {},
  "husky": {
    "hooks": {
      "pre-commit": "tsdx lint"
    }
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "name": "gql-typeguards",
  "author": "Nicolas Toulemont",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nicolastoulemont/gql-typeguards.git"
  },
  "homepage": "https://github.com/nicolastoulemont/gql-typeguards",
  "keywords": [
    "GraphQL",
    "Typescript",
    "Typeguard functions",
    "isType",
    "isNot",
    "isEither",
    "isTypeInTuple"
  ],
  "description": "GraphQL typeguards functions",
  "bugs": {
    "url": "https://github.com/nicolastoulemont/gql-typeguards/issues"
  },
  "module": "dist/gql-typeguards.esm.js",
  "size-limit": [
    {
      "path": "dist/gql-typeguards.cjs.production.min.js",
      "limit": "10 KB"
    },
    {
      "path": "dist/gql-typeguards.esm.js",
      "limit": "10 KB"
    }
  ],
  "devDependencies": {
    "@size-limit/preset-small-lib": "^4.10.2",
    "husky": "^6.0.0",
    "size-limit": "^4.10.2",
    "tsdx": "^0.14.1",
    "tslib": "^2.3.1",
    "typescript": "^4.4.2"
  }
}
