{
  "name": "@lemasc/swr-firestore",
  "version": "2.2.1",
  "description": "SWR React hooks for Firestore, that you can actually use in production, on every screen.",
  "main": "lib/commonjs/index.js",
  "module": "lib/module/index.js",
  "types": "lib/typescript/index.d.ts",
  "react-native": "src/index.ts",
  "files": [
    "src",
    "lib",
    "constraints"
  ],
  "exports": {
    ".": {
      "import": "./lib/module/index.js",
      "require": "./lib/commonjs/index.js",
      "types": "./lib/typescript/index.d.ts"
    },
    "./constraints": {
      "import": "./lib/module/constraints/index.js",
      "require": "./lib/commonjs/constraints/index.js",
      "types": "./lib/typescript/constraints/index.d.ts"
    }
  },
  "scripts": {
    "test": "jest",
    "typescript": "tsc --noEmit",
    "lint": "eslint --ext .js,.ts,.tsx .",
    "prepare": "bob build"
  },
  "keywords": [
    "swr",
    "firestore",
    "firebase"
  ],
  "repository": "https://github.com/lemasc/swr-firestore",
  "author": "Lemasc (https://github.com/lemasc)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lemasc/swr-firestore/issues"
  },
  "homepage": "https://github.com/lemasc/swr-firestore#readme",
  "devDependencies": {
    "@types/jest": "^27.0.2",
    "@types/lodash": "^4.14.186",
    "@types/react": "^17.0.27",
    "@types/react-native": "0.65.5",
    "eslint": "^8.0.0",
    "eslint-config-nando": "^1.1.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "firebase": "^9.1.0",
    "jest": "^27.2.5",
    "prettier": "^2.4.1",
    "react": "^17.0.0",
    "react-native-builder-bob": "^0.18.2",
    "typescript": "^4.4.3"
  },
  "peerDependencies": {
    "firebase": "^9.1.0",
    "react": "*"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-commit": "yarn lint && yarn typescript"
    }
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/"
  ],
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module",
      "typescript"
    ]
  },
  "dependencies": {
    "@lemasc/firebase-wrapper": "^1.1.0",
    "lodash": "^4.17.21",
    "swr": "^1.1.0"
  }
}
