{
  "name": "vite-plugin-typed-graphql",
  "version": "3.2.1",
  "description": "Vite Plugin which enables the import of Typed-Document-Nodes directly from `.gql` / `.graphql` files, to allow for type-safe GraphQL implementations.",
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "typings": "./dist/index.d.ts",
  "module": "./dist/index.mjs",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "bin": {
    "build-gql-declarations": "./dist/build-gql-declarations.mjs"
  },
  "homepage": "https://github.com/arma-events/vite-plugin-typed-graphql#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/arma-events/vite-plugin-typed-graphql.git"
  },
  "files": [
    "dist"
  ],
  "bugs": {
    "url": "https://github.com/arma-events/vite-plugin-typed-graphql/issues",
    "email": "derzade@gmail.com"
  },
  "scripts": {
    "build": "unbuild",
    "lint": "eslint --ext .js,.ts ./src",
    "fmt": "prettier --write .",
    "prepare": "npm run build"
  },
  "keywords": [
    "vite",
    "plugin",
    "graphql",
    "gql",
    "typed",
    "typescript"
  ],
  "author": "Jonas Schade <derzade@gmail.com>",
  "license": "MIT",
  "dependencies": {
    "@graphql-codegen/core": "^4.0.2",
    "@graphql-codegen/typed-document-node": "^5.0.7",
    "@graphql-codegen/typescript": "^4.0.7",
    "@graphql-codegen/typescript-operations": "^4.2.1",
    "@graphql-tools/graphql-file-loader": "^8.0.1",
    "@graphql-tools/import": "^7.0.1",
    "@graphql-tools/load": "^8.0.2",
    "commander": "^12.1.0",
    "esbuild": "^0.25.0",
    "fast-glob": "^3.3.2",
    "graphql": "^16.8.1",
    "ts-morph": "^22.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.14.2",
    "@typescript-eslint/eslint-plugin": "^7.12.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.1.3",
    "prettier": "^3.3.1",
    "typescript": "^5.4.5",
    "unbuild": "^3.5.0"
  },
  "peerDependencies": {
    "vite": "4 - 6"
  }
}
