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.8 kB view raw
1{ 2 "name": "@urql/exchange-populate", 3 "version": "2.0.0", 4 "description": "An exchange that automaticcally populates the mutation selection body", 5 "sideEffects": false, 6 "homepage": "https://formidable.com/open-source/urql/docs/advanced/auto-populate-mutations", 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/populate" 14 }, 15 "keywords": [ 16 "urql", 17 "graphql", 18 "exchanges" 19 ], 20 "main": "dist/urql-exchange-populate", 21 "module": "dist/urql-exchange-populate.mjs", 22 "types": "dist/urql-exchange-populate.d.ts", 23 "source": "src/index.ts", 24 "exports": { 25 ".": { 26 "types": "./dist/urql-exchange-populate.d.ts", 27 "import": "./dist/urql-exchange-populate.mjs", 28 "require": "./dist/urql-exchange-populate.js", 29 "source": "./src/index.ts" 30 }, 31 "./package.json": "./package.json" 32 }, 33 "files": [ 34 "LICENSE", 35 "CHANGELOG.md", 36 "README.md", 37 "dist/", 38 "extras/" 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 "dependencies": { 50 "@urql/core": "workspace:^6.0.1", 51 "wonka": "^6.3.2" 52 }, 53 "peerDependencies": { 54 "@urql/core": "^6.0.0", 55 "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" 56 }, 57 "devDependencies": { 58 "@urql/core": "workspace:*", 59 "graphql": "^16.0.0" 60 }, 61 "publishConfig": { 62 "access": "public", 63 "provenance": true 64 } 65}