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-context",
3 "version": "1.0.0",
4 "description": "An exchange for setting (a)synchronous operation-context in urql",
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/context"
14 },
15 "keywords": [
16 "urql",
17 "exchange",
18 "context",
19 "graphql",
20 "exchanges"
21 ],
22 "main": "dist/urql-exchange-context",
23 "module": "dist/urql-exchange-context.mjs",
24 "types": "dist/urql-exchange-context.d.ts",
25 "source": "src/index.ts",
26 "exports": {
27 ".": {
28 "types": "./dist/urql-exchange-context.d.ts",
29 "import": "./dist/urql-exchange-context.mjs",
30 "require": "./dist/urql-exchange-context.js",
31 "source": "./src/index.ts"
32 },
33 "./package.json": "./package.json"
34 },
35 "files": [
36 "LICENSE",
37 "CHANGELOG.md",
38 "README.md",
39 "dist/"
40 ],
41 "scripts": {
42 "test": "vitest",
43 "clean": "rimraf dist extras",
44 "check": "tsc --noEmit",
45 "lint": "eslint --ext=js,jsx,ts,tsx .",
46 "build": "rollup -c ../../scripts/rollup/config.mjs",
47 "prepare": "node ../../scripts/prepare/index.js",
48 "prepublishOnly": "run-s clean build"
49 },
50 "peerDependencies": {
51 "@urql/core": "^6.0.0"
52 },
53 "dependencies": {
54 "@urql/core": "workspace:^6.0.1",
55 "wonka": "^6.3.2"
56 },
57 "devDependencies": {
58 "@urql/core": "workspace:*",
59 "graphql": "^16.0.0"
60 },
61 "publishConfig": {
62 "access": "public",
63 "provenance": true
64 }
65}