{
  "name": "robodux",
  "version": "15.0.2",
  "license": "MIT",
  "description": "caching in redux made simple",
  "author": "Eric Bower",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/neurosnap/robodux.git"
  },
  "type": "module",
  "source": "./src/index.ts",
  "main": "./dist/robodux.cjs",
  "types": "./dist/index.d.ts",
  "module": "./dist/robodux.module.js",
  "unpkg": "./dist/robodux.umd.js",
  "exports": {
    "types": "./dist/index.d.ts",
    "require": "./dist/robodux.cjs",
    "default": "./dist/robodux.modern.js"
  },
  "scripts": {
    "prebuild": "rm -rf dist",
    "build": "microbundle",
    "tc": "typings-checker --allow-expect-error --project tsconfig.json type-tests/*.ts",
    "test": "tsc && yarn tc && jest",
    "precommit": "lint-staged",
    "prettier-js": "prettier --write src/*.ts",
    "prettier-md": "prettier --config prettier.md.cjs --write *.md docs/*.md",
    "format": "yarn prettier-js && yarn prettier-md"
  },
  "dependencies": {
    "immer": "^9.0.7",
    "reselect": ">=4.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.17.8",
    "@babel/runtime": "^7.17.8",
    "@types/deep-freeze-strict": "^1.1.0",
    "@types/jest": "^27.4.1",
    "@types/node": "^17.0.23",
    "babel-core": "^6.0.0 || ^7.0.0-0",
    "babel-jest": "^27.5.1",
    "deep-freeze-strict": "^1.1.1",
    "husky": "^7.0.4",
    "jest": "^27.5.1",
    "lint-staged": "^12.3.7",
    "microbundle": "^0.15.1",
    "prettier": "^2.6.2",
    "redux": "^4.1.2",
    "redux-thunk": "^2.4.1",
    "ts-jest": "^27.1.4",
    "typescript": "^4.6.3",
    "typings-checker": "^2.0.0"
  },
  "lint-staged": {
    "*.js": "prettier --write",
    "*.md": "prettier --config prettier.md.js --write"
  }
}
