{
  "name": "@urql/exchange-refocus",
  "version": "2.1.0",
  "description": "An exchange that dispatches active operations when the window regains focus",
  "sideEffects": false,
  "homepage": "https://formidable.com/open-source/urql/docs/",
  "bugs": "https://github.com/urql-graphql/urql/issues",
  "license": "MIT",
  "author": "urql GraphQL Contributors",
  "repository": {
    "type": "git",
    "url": "https://github.com/urql-graphql/urql.git",
    "directory": "exchanges/refocus"
  },
  "keywords": [
    "urql",
    "graphql client",
    "graphql",
    "exchanges",
    "react",
    "focus"
  ],
  "main": "dist/urql-exchange-refocus",
  "module": "dist/urql-exchange-refocus.mjs",
  "types": "dist/urql-exchange-refocus.d.ts",
  "source": "src/index.ts",
  "exports": {
    ".": {
      "types": "./dist/urql-exchange-refocus.d.ts",
      "import": "./dist/urql-exchange-refocus.mjs",
      "require": "./dist/urql-exchange-refocus.js",
      "source": "./src/index.ts"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "LICENSE",
    "CHANGELOG.md",
    "README.md",
    "dist/"
  ],
  "devDependencies": {
    "@types/react": "^17.0.4",
    "graphql": "^16.0.0",
    "@urql/core": "6.0.1"
  },
  "peerDependencies": {
    "@urql/core": "^6.0.0"
  },
  "dependencies": {
    "@urql/core": "^6.0.1",
    "wonka": "^6.3.2"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "test": "vitest",
    "clean": "rimraf dist",
    "check": "tsc --noEmit",
    "lint": "eslint --ext=js,jsx,ts,tsx .",
    "build": "rollup -c ../../scripts/rollup/config.mjs"
  }
}