{
  "name": "@urql/core",
  "version": "3.2.2",
  "description": "The shared core for the highly customizable and versatile GraphQL client",
  "sideEffects": false,
  "homepage": "https://formidable.com/open-source/urql/docs/",
  "bugs": "https://github.com/urql-graphql/urql/issues",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/urql-graphql/urql.git",
    "directory": "packages/core"
  },
  "keywords": [
    "graphql",
    "graphql client",
    "state management",
    "cache",
    "exchanges"
  ],
  "main": "dist/urql-core",
  "module": "dist/urql-core.mjs",
  "types": "dist/urql-core.d.ts",
  "source": "src/index.ts",
  "exports": {
    ".": {
      "import": "./dist/urql-core.mjs",
      "require": "./dist/urql-core.js",
      "types": "./dist/urql-core.d.ts",
      "source": "./src/index.ts"
    },
    "./package.json": "./package.json",
    "./internal": {
      "import": "./dist/urql-core-internal.mjs",
      "require": "./dist/urql-core-internal.js",
      "types": "./dist/urql-core-internal.d.ts",
      "source": "./src/internal/index.ts"
    }
  },
  "files": [
    "LICENSE",
    "README.md",
    "dist/",
    "internal/"
  ],
  "devDependencies": {
    "graphql": "^16.0.0"
  },
  "peerDependencies": {
    "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
  },
  "dependencies": {
    "wonka": "^6.1.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "test": "vitest --config ../../vitest.config.ts",
    "clean": "rimraf dist",
    "check": "tsc --noEmit",
    "lint": "eslint --ext=js,jsx,ts,tsx .",
    "build": "rollup -c ../../scripts/rollup/config.mjs"
  }
}