Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
at main 65 lines 1.7 kB view raw
1{ 2 "name": "@urql/exchange-request-policy", 3 "version": "2.0.0", 4 "description": "An exchange for operation request-policy upgrading 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/request-policy" 14 }, 15 "keywords": [ 16 "urql", 17 "graphql client", 18 "graphql", 19 "exchanges", 20 "request-policy" 21 ], 22 "main": "dist/urql-exchange-request-policy", 23 "module": "dist/urql-exchange-request-policy.mjs", 24 "types": "dist/urql-exchange-request-policy.d.ts", 25 "source": "src/index.ts", 26 "exports": { 27 ".": { 28 "types": "./dist/urql-exchange-request-policy.d.ts", 29 "import": "./dist/urql-exchange-request-policy.mjs", 30 "require": "./dist/urql-exchange-request-policy.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 "wonka": "^6.3.2" 60 }, 61 "publishConfig": { 62 "access": "public", 63 "provenance": true 64 } 65}