{
  "name": "@nhost/react-apollo",
  "version": "18.0.2",
  "description": "Nhost React Apollo client",
  "license": "MIT",
  "keywords": [
    "nhost",
    "hasura",
    "storage",
    "auth",
    "authentication",
    "graphql",
    "postgresql",
    "realtime",
    "react",
    "apollo"
  ],
  "author": "Nhost",
  "homepage": "https://nhost.io",
  "bugs": "https://github.com/nhost/nhost/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nhost/nhost.git"
  },
  "main": "dist/index.cjs.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "source": "src/index.ts",
  "files": [
    "dist",
    "umd",
    "README.md"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "node": "./dist/index.cjs.js",
        "default": "./dist/index.esm.js"
      },
      "require": "./dist/index.cjs.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@nhost/apollo": "9.0.1"
  },
  "peerDependencies": {
    "@apollo/client": "^3.7.10",
    "graphql": "^16.0.0",
    "react": "^17.0.0 || ^18.0.0",
    "react-dom": "^17.0.0 || ^18.0.0",
    "@nhost/react": "3.11.2"
  },
  "devDependencies": {
    "@apollo/client": "^3.9.9",
    "@types/react": "^18.2.73",
    "graphql": "16.8.1",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "@nhost/react": "3.11.2"
  },
  "scripts": {
    "dev": "vite build --config ../../config/vite.react.dev.config.js",
    "build": "run-p build:lib build:umd",
    "build:lib": "vite build --config ../../config/vite.react.config.js",
    "build:umd": "vite build --config ../../config/vite.react.umd.config.js",
    "test": "vitest run --config ../../config/vite.react.config.js",
    "test:watch": "vitest --config ../../config/vite.react.config.js",
    "test:coverage": "vitest run --coverage --config ../../config/vite.lib.config.js",
    "prettier": "prettier --check src/",
    "prettier:fix": "prettier --write src/",
    "lint": "eslint . --ext .ts,.tsx",
    "lint:fix": "eslint . --ext .ts,.tsx --fix",
    "verify": "run-p prettier lint",
    "verify:fix": "run-p prettier:fix lint:fix"
  }
}