Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1{
2 "name": "@urql/exchange-refocus",
3 "version": "2.1.0",
4 "description": "An exchange that dispatches active operations when the window regains focus",
5 "sideEffects": false,
6 "homepage": "https://formidable.com/open-source/urql/docs/",
7 "bugs": "https://github.com/urql-graphql/urql/issues",
8 "license": "MIT",
9 "author": "urql GraphQL Contributors",
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/urql-graphql/urql.git",
13 "directory": "exchanges/refocus"
14 },
15 "keywords": [
16 "urql",
17 "graphql client",
18 "graphql",
19 "exchanges",
20 "react",
21 "focus"
22 ],
23 "main": "dist/urql-exchange-refocus",
24 "module": "dist/urql-exchange-refocus.mjs",
25 "types": "dist/urql-exchange-refocus.d.ts",
26 "source": "src/index.ts",
27 "exports": {
28 ".": {
29 "types": "./dist/urql-exchange-refocus.d.ts",
30 "import": "./dist/urql-exchange-refocus.mjs",
31 "require": "./dist/urql-exchange-refocus.js",
32 "source": "./src/index.ts"
33 },
34 "./package.json": "./package.json"
35 },
36 "files": [
37 "LICENSE",
38 "CHANGELOG.md",
39 "README.md",
40 "dist/"
41 ],
42 "scripts": {
43 "test": "vitest",
44 "clean": "rimraf dist",
45 "check": "tsc --noEmit",
46 "lint": "eslint --ext=js,jsx,ts,tsx .",
47 "build": "rollup -c ../../scripts/rollup/config.mjs",
48 "prepare": "node ../../scripts/prepare/index.js",
49 "prepublishOnly": "run-s clean build"
50 },
51 "devDependencies": {
52 "@types/react": "^17.0.4",
53 "@urql/core": "workspace:*",
54 "graphql": "^16.0.0"
55 },
56 "peerDependencies": {
57 "@urql/core": "^6.0.0"
58 },
59 "dependencies": {
60 "@urql/core": "workspace:^6.0.1",
61 "wonka": "^6.3.2"
62 },
63 "publishConfig": {
64 "access": "public",
65 "provenance": true
66 }
67}