Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
at main 68 lines 1.8 kB view raw
1{ 2 "name": "@urql/next", 3 "version": "2.0.0", 4 "description": "Convenience wrappers for using urql with NextJS.", 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/next-urql" 14 }, 15 "main": "dist/urql-next", 16 "module": "dist/urql-next.mjs", 17 "types": "dist/urql-next.d.ts", 18 "source": "src/index.ts", 19 "exports": { 20 ".": { 21 "types": "./dist/urql-next.d.ts", 22 "import": "./dist/urql-next.mjs", 23 "require": "./dist/urql-next.js", 24 "source": "./src/index.ts" 25 }, 26 "./package.json": "./package.json", 27 "./rsc": { 28 "types": "./dist/urql-next-rsc.d.ts", 29 "import": "./dist/urql-next-rsc.mjs", 30 "require": "./dist/urql-next-rsc.js", 31 "source": "./src/rsc.ts" 32 } 33 }, 34 "files": [ 35 "LICENSE", 36 "CHANGELOG.md", 37 "README.md", 38 "rsc/", 39 "dist/" 40 ], 41 "scripts": { 42 "clean": "rimraf dist", 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 "devDependencies": { 50 "@urql/core": "workspace:*", 51 "urql": "workspace:*", 52 "@types/react": "^18.3.8", 53 "@types/react-dom": "^18.3.0", 54 "graphql": "^16.0.0", 55 "next": "^13.0.0", 56 "react": "^18.0.0", 57 "react-dom": "^18.0.0" 58 }, 59 "peerDependencies": { 60 "next": ">=13.0.0", 61 "react": ">=18.0.0", 62 "urql": "^5.0.0" 63 }, 64 "publishConfig": { 65 "access": "public", 66 "provenance": true 67 } 68}