Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1{
2 "name": "@urql/core",
3 "version": "6.0.1",
4 "description": "The shared core for the highly customizable and versatile GraphQL client",
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/core"
14 },
15 "keywords": [
16 "graphql",
17 "graphql client",
18 "state management",
19 "cache",
20 "exchanges"
21 ],
22 "main": "dist/urql-core",
23 "module": "dist/urql-core.mjs",
24 "types": "dist/urql-core.d.ts",
25 "source": "src/index.ts",
26 "exports": {
27 ".": {
28 "types": "./dist/urql-core.d.ts",
29 "import": "./dist/urql-core.mjs",
30 "require": "./dist/urql-core.js",
31 "source": "./src/index.ts"
32 },
33 "./package.json": "./package.json",
34 "./internal": {
35 "types": "./dist/urql-core-internal.d.ts",
36 "import": "./dist/urql-core-internal.mjs",
37 "require": "./dist/urql-core-internal.js",
38 "source": "./src/internal/index.ts"
39 }
40 },
41 "files": [
42 "LICENSE",
43 "README.md",
44 "dist/",
45 "internal/"
46 ],
47 "scripts": {
48 "test": "vitest",
49 "clean": "rimraf dist",
50 "check": "tsc --noEmit",
51 "lint": "eslint --ext=js,jsx,ts,tsx .",
52 "build": "rollup -c ../../scripts/rollup/config.mjs",
53 "prepare": "node ../../scripts/prepare/index.js",
54 "prepublishOnly": "run-s clean build",
55 "jsr": "jsr publish"
56 },
57 "dependencies": {
58 "@0no-co/graphql.web": "^1.0.13",
59 "wonka": "^6.3.2"
60 },
61 "publishConfig": {
62 "access": "public",
63 "provenance": true
64 }
65}