Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1{
2 "name": "@urql/storage-rn",
3 "version": "1.1.2",
4 "sideEffects": false,
5 "description": "Graphcache offline storage for React Native",
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/storage-rn"
14 },
15 "keywords": [
16 "urql",
17 "graphql client",
18 "graphql",
19 "exchanges",
20 "react native",
21 "offline",
22 "storage"
23 ],
24 "main": "dist/urql-storage-rn",
25 "module": "dist/urql-storage-rn.mjs",
26 "types": "dist/urql-storage-rn.d.ts",
27 "source": "src/index.ts",
28 "files": [
29 "LICENSE",
30 "CHANGELOG.md",
31 "README.md",
32 "dist/"
33 ],
34 "exports": {
35 ".": {
36 "types": "./dist/urql-storage-rn.d.ts",
37 "import": "./dist/urql-storage-rn.mjs",
38 "require": "./dist/urql-storage-rn.js",
39 "source": "./src/index.ts"
40 },
41 "./package.json": "./package.json"
42 },
43 "scripts": {
44 "clean": "rimraf dist",
45 "check": "tsc --noEmit",
46 "lint": "eslint --ext=js,jsx,ts,tsx .",
47 "build": "rollup -c ../../scripts/rollup/config.mjs",
48 "prepare": "node ../../scripts/prepare/index.js",
49 "prepublishOnly": "run-s clean build"
50 },
51 "peerDependencies": {
52 "@react-native-async-storage/async-storage": "^1.15.5 || ^2.0.0",
53 "@react-native-community/netinfo": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^11.0.0",
54 "@urql/exchange-graphcache": ">=5.0.0"
55 },
56 "devDependencies": {
57 "@react-native-async-storage/async-storage": "^2.2.0",
58 "@react-native-community/netinfo": "^11.2.1",
59 "@urql/core": "workspace:*",
60 "@urql/exchange-graphcache": "workspace:*"
61 },
62 "publishConfig": {
63 "access": "public",
64 "provenance": true
65 }
66}