{
  "name": "@rest-hooks/redux",
  "version": "7.0.0",
  "description": "Asynchronous data framework for React",
  "homepage": "https://resthooks.io",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com:data-client/rest-hooks.git",
    "directory": "packages/redux"
  },
  "bugs": {
    "url": "https://github.com/data-client/rest-hooks/issues"
  },
  "keywords": [
    "react",
    "redux",
    "data",
    "cache",
    "flux",
    "suspense",
    "fetch",
    "hook",
    "networking",
    "async",
    "concurrent mode",
    "typescript",
    "async",
    "data fetching",
    "data cache",
    "api client",
    "api",
    "normalized cache",
    "swr",
    "GraphQL",
    "query",
    "react-native",
    "ios",
    "android",
    "web",
    "middleware",
    "declarative",
    "scalable"
  ],
  "sideEffects": false,
  "main": "dist/index.js",
  "react-native": "legacy/index.js",
  "module": "legacy/index.js",
  "unpkg": "dist/index.umd.min.js",
  "types": "lib/index.d.ts",
  "typesVersions": {
    ">=4.0": {
      "": [
        "lib/index.d.ts"
      ],
      "makeCacheProvider": [
        "lib/makeExternalCacheProvider.d.ts"
      ],
      "*": [
        "lib/index.d.ts"
      ]
    },
    ">=3.4": {
      "": [
        "ts3.4/index.d.ts"
      ],
      "makeCacheProvider": [
        "ts3.4/makeExternalCacheProvider.d.ts"
      ],
      "*": [
        "ts3.4/index.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "module": "./lib/index.js",
      "import": "./node.mjs",
      "require": "./dist/index.js",
      "default": "./lib/index.js"
    },
    "./makeCacheProvider": {
      "types": "./lib/makeExternalCacheProvider.d.ts",
      "module": "./lib/makeExternalCacheProvider.js",
      "import": "./makeCacheProvider.mjs",
      "require": "./dist/makeExternalCacheProvider.js",
      "default": "./lib/makeExternalCacheProvider.js"
    },
    "./package.json": "./package.json"
  },
  "type": "module",
  "engines": {
    "node": "^12.17 || ^13.7 || >=14"
  },
  "files": [
    "src",
    "dist",
    "lib",
    "ts3.4",
    "node.mjs",
    "makeCacheProvider.mjs",
    "legacy",
    "LICENSE",
    "README.md",
    "./typescript.svg",
    "./rest_hooks_logo_and_text.svg"
  ],
  "scripts": {
    "build:lib": "NODE_ENV=production BROWSERSLIST_ENV='2020' yarn g:babel --out-dir lib",
    "build:legacy:lib": "NODE_ENV=production BROWSERSLIST_ENV='2018' yarn g:babel --out-dir legacy",
    "build:js:node": "BROWSERSLIST_ENV=node12 yarn g:rollup",
    "build:js:browser": "BROWSERSLIST_ENV=legacy yarn g:rollup",
    "build:bundle": "yarn g:runs build:js:\\* && echo '{\"type\":\"commonjs\"}' > dist/package.json",
    "build:clean": "yarn g:clean ./index.d.ts",
    "build:legacy-types": "yarn g:downtypes lib ts3.4",
    "build": "run build:lib && run build:legacy:lib && run build:bundle",
    "dev": "run build:lib -w",
    "prepare": "run build:lib",
    "prepack": "run prepare && run build:bundle && run build:legacy:lib"
  },
  "author": "Nathaniel Tucker <me@ntucker.me> (https://github.com/ntucker)",
  "license": "Apache-2.0",
  "dependencies": {
    "@babel/runtime": "^7.17.0",
    "@data-client/core": "^0.2.0"
  },
  "peerDependencies": {
    "@rest-hooks/react": "^7.0.0 || ^8.0.0",
    "@types/react": "^16.8.4 || ^17.0.0 || ^18.0.0",
    "react": "^16.8.4 || ^17.0.0 || ^18.0.0",
    "redux": "^4.0.0"
  },
  "peerDependenciesMeta": {
    "@types/react": {
      "optional": true
    }
  },
  "devDependencies": {
    "@anansi/browserslist-config": "^1.4.2",
    "@rest-hooks/react": "8.0.0",
    "@types/node": "^20.0.0",
    "@types/react": "^18.0.30",
    "redux": "^4.2.1"
  }
}