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