Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1{
2 "name": "urql",
3 "version": "5.0.1",
4 "description": "A highly customizable and versatile GraphQL client for React",
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": "packages/react-urql"
14 },
15 "keywords": [
16 "graphql client",
17 "state management",
18 "cache",
19 "graphql",
20 "exchanges",
21 "react"
22 ],
23 "main": "dist/urql.js",
24 "module": "dist/urql.es.js",
25 "types": "dist/urql.d.ts",
26 "source": "src/index.ts",
27 "files": [
28 "LICENSE",
29 "CHANGELOG.md",
30 "README.md",
31 "core/",
32 "dist/"
33 ],
34 "scripts": {
35 "test": "vitest",
36 "clean": "rimraf dist",
37 "check": "tsc --noEmit",
38 "lint": "eslint --ext=js,jsx,ts,tsx .",
39 "build": "rollup -c ../../scripts/rollup/config.mjs",
40 "prepare": "node ../../scripts/prepare/index.js",
41 "prepublishOnly": "run-s clean build"
42 },
43 "devDependencies": {
44 "@cypress/react": "^8.0.2",
45 "@cypress/vite-dev-server": "^5.2.0",
46 "@testing-library/react": "^16.0.1",
47 "@types/react": "^18.3.8",
48 "@types/react-test-renderer": "^17.0.1",
49 "@urql/core": "workspace:*",
50 "cypress": "^13.14.0",
51 "graphql": "^16.6.0",
52 "react": "^18.3.1",
53 "react-dom": "^18.3.1",
54 "react-is": "^18.3.1",
55 "react-ssr-prepass": "^1.5.0",
56 "react-test-renderer": "^18.3.1"
57 },
58 "peerDependencies": {
59 "@urql/core": "^6.0.0",
60 "react": ">= 16.8.0"
61 },
62 "dependencies": {
63 "@urql/core": "workspace:^6.0.1",
64 "wonka": "^6.3.2"
65 },
66 "publishConfig": {
67 "provenance": true
68 }
69}