Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
at main 57 lines 1.5 kB view raw
1{ 2 "name": "@urql/introspection", 3 "version": "1.2.1", 4 "description": "Utilities for dealing with Introspection Queries and Client Schemas", 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": "packages/introspection" 14 }, 15 "keywords": [ 16 "graphql", 17 "graphql client", 18 "graphql schema", 19 "schema" 20 ], 21 "main": "dist/urql-introspection", 22 "module": "dist/urql-introspection.mjs", 23 "types": "dist/urql-introspection.d.ts", 24 "source": "src/index.ts", 25 "exports": { 26 ".": { 27 "types": "./dist/urql-introspection.d.ts", 28 "import": "./dist/urql-introspection.mjs", 29 "require": "./dist/urql-introspection.js", 30 "source": "./src/index.ts" 31 }, 32 "./package.json": "./package.json" 33 }, 34 "files": [ 35 "LICENSE", 36 "README.md", 37 "dist/" 38 ], 39 "scripts": { 40 "clean": "rimraf dist", 41 "check": "tsc --noEmit", 42 "lint": "eslint --ext=js,jsx,ts,tsx .", 43 "build": "rollup -c ../../scripts/rollup/config.mjs", 44 "prepare": "node ../../scripts/prepare/index.js", 45 "prepublishOnly": "run-s clean build" 46 }, 47 "devDependencies": { 48 "graphql": "^16.0.0" 49 }, 50 "peerDependencies": { 51 "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" 52 }, 53 "publishConfig": { 54 "access": "public", 55 "provenance": true 56 } 57}