{
  "name": "@homekey/graphql-codegen-typescript-validation-schema",
  "version": "0.1.1",
  "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema",
  "respository": {
    "type": "git",
    "url": "https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema.git"
  },
  "main": "dist/main/index.js",
  "typings": "dist/main/index.d.ts",
  "module": "dist/module/index.js",
  "files": [
    "dist/**/*.{js,ts}",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "type-check": "tsc --noEmit",
    "type-check:yup": "tsc --strict --noEmit example/yup/schemas.ts",
    "type-check:zod": "tsc --strict --noEmit example/zod/schemas.ts",
    "type-check:myzod": "tsc --strict --noEmit example/myzod/schemas.ts",
    "test": "jest --no-watchman",
    "build": "run-p build:*",
    "build:main": "tsc -p tsconfig.main.json",
    "build:module": "tsc -p tsconfig.module.json",
    "lint": "eslint --ext .ts .",
    "lint-fix": "eslint --fix --ext .ts .",
    "prettier": "prettier --write --list-different \"**/*.{ts,graphql,yml}\"",
    "prettier:check": "prettier --check \"**/*.{ts,graphql,yml}\"",
    "generate": "run-p build:* && graphql-codegen",
    "prepublish": "run-p build:*"
  },
  "keywords": [
    "gql",
    "generator",
    "yup",
    "zod",
    "code",
    "types",
    "graphql",
    "codegen",
    "apollo",
    "node",
    "types",
    "typings"
  ],
  "author": "codehex",
  "license": "MIT",
  "devDependencies": {
    "@graphql-codegen/cli": "4.0.1",
    "@graphql-codegen/typescript": "^4.0.0",
    "@tsconfig/recommended": "1.0.2",
    "@types/jest": "29.5.2",
    "@types/node": "^20.1.3",
    "@typescript-eslint/eslint-plugin": "5.59.8",
    "@typescript-eslint/parser": "5.59.8",
    "eslint": "8.41.0",
    "jest": "29.5.0",
    "myzod": "1.10.0",
    "npm-run-all": "4.1.5",
    "prettier": "2.8.8",
    "ts-jest": "29.1.0",
    "typescript": "5.1.3",
    "yup": "1.2.0",
    "zod": "3.21.4"
  },
  "dependencies": {
    "@graphql-codegen/plugin-helpers": "^5.0.0",
    "@graphql-codegen/schema-ast": "4.0.0",
    "@graphql-codegen/visitor-plugin-common": "^4.0.0",
    "@graphql-tools/utils": "^10.0.0",
    "graphql": "^16.6.0"
  },
  "peerDependencies": {
    "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
  },
  "bugs": {
    "url": "https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/issues"
  }
}
