{
  "name": "redux-in-worker",
  "description": "Entire Redux in Web Worker",
  "version": "0.8.0",
  "author": "Daishi Kato",
  "repository": {
    "type": "git",
    "url": "https://github.com/dai-shi/redux-in-worker.git"
  },
  "source": "./src/index.ts",
  "main": "./dist/index.umd.js",
  "module": "./dist/index.modern.js",
  "types": "./dist/src/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/src/index.d.ts",
      "module": "./dist/index.modern.js",
      "import": "./dist/index.modern.mjs",
      "default": "./dist/index.umd.js"
    }
  },
  "sideEffects": false,
  "files": [
    "src",
    "dist"
  ],
  "scripts": {
    "compile": "microbundle build -f modern,umd",
    "postcompile": "cp dist/index.modern.mjs dist/index.modern.js && cp dist/index.modern.mjs.map dist/index.modern.js.map",
    "test": "run-s eslint tsc-test jest",
    "eslint": "eslint --ext .js,.ts,.tsx --ignore-path .gitignore --ignore-pattern dist .",
    "jest": "jest --preset ts-jest/presets/js-with-ts __tests__/*.tsx",
    "tsc-test": "tsc --project . --noEmit",
    "examples:01_minimal": "DIR=01_minimal EXT=js webpack-cli serve",
    "examples:02_typescript": "DIR=02_typescript webpack-cli serve",
    "examples:03_router": "DIR=03_router webpack-cli serve",
    "examples:04_api": "DIR=04_api webpack-cli serve",
    "examples:05_saga": "DIR=05_saga webpack-cli serve"
  },
  "keywords": [
    "redux",
    "react",
    "worker",
    "web worker",
    "off main thread"
  ],
  "license": "MIT",
  "dependencies": {},
  "devDependencies": {
    "@types/history": "^4.7.9",
    "@types/jest": "^27.0.1",
    "@types/react": "^17.0.19",
    "@types/react-dom": "^17.0.9",
    "@types/react-redux": "^7.1.18",
    "@types/react-router": "^5.1.16",
    "@types/react-router-dom": "^5.1.8",
    "@types/redux-api-middleware": "^3.2.3",
    "@typescript-eslint/eslint-plugin": "^4.30.0",
    "@typescript-eslint/parser": "^4.30.0",
    "connected-react-router": "^6.9.1",
    "eslint": "^7.32.0",
    "eslint-config-airbnb": "^18.2.1",
    "eslint-plugin-import": "^2.24.2",
    "eslint-plugin-jsx-a11y": "^6.4.1",
    "eslint-plugin-react": "^7.25.1",
    "eslint-plugin-react-hooks": "^4.2.0",
    "history": "^4.10.1",
    "html-webpack-plugin": "^5.3.2",
    "jest": "^27.1.0",
    "microbundle": "^0.13.3",
    "npm-run-all": "^4.1.5",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-redux": "^7.2.4",
    "react-router": "^5.2.1",
    "react-router-dom": "^5.2.1",
    "react-test-renderer": "^17.0.2",
    "redux": "^4.0.5",
    "redux-api-middleware": "^3.2.1",
    "redux-saga": "^1.1.3",
    "ts-jest": "^27.0.5",
    "ts-loader": "^9.2.5",
    "typescript": "^4.4.2",
    "webpack": "^5.51.1",
    "webpack-cli": "^4.8.0",
    "webpack-dev-server": "^4.1.0"
  },
  "peerDependencies": {
    "redux": ">=4.0.0"
  }
}
