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-throw-on-error",
3 "version": "1.0.0",
4 "description": "An exchange for throw-on-error support 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/throw-on-error"
14 },
15 "keywords": [
16 "urql",
17 "graphql client",
18 "graphql",
19 "exchanges",
20 "throw on error"
21 ],
22 "main": "dist/urql-exchange-throw-on-error",
23 "module": "dist/urql-exchange-throw-on-error.mjs",
24 "types": "dist/urql-exchange-throw-on-error.d.ts",
25 "source": "src/index.ts",
26 "exports": {
27 ".": {
28 "types": "./dist/urql-exchange-throw-on-error.d.ts",
29 "import": "./dist/urql-exchange-throw-on-error.mjs",
30 "require": "./dist/urql-exchange-throw-on-error.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",
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 "devDependencies": {
51 "@urql/core": "workspace:*",
52 "graphql": "^16.0.0"
53 },
54 "peerDependencies": {
55 "@urql/core": "^6.0.0"
56 },
57 "dependencies": {
58 "@urql/core": "workspace:^6.0.1",
59 "graphql-toe": "^1.0.0-rc.0",
60 "wonka": "^6.3.2"
61 },
62 "publishConfig": {
63 "access": "public",
64 "provenance": true
65 }
66}