redux-devtools/packages/redux-devtools-remote/package.json
renovate[bot] 60eed10573
chore(deps): update all non-major dependencies (#1109)
* chore(deps): update all non-major dependencies

* Consolidate msw

* Fix eslintignore

* Update

* Update

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2022-04-04 03:59:41 +00:00

74 lines
2.2 KiB
JSON

{
"name": "@redux-devtools/remote",
"version": "0.7.3",
"description": "Relay Redux actions to remote Redux DevTools.",
"keywords": [
"redux",
"devtools",
"flux",
"react",
"hot reloading",
"time travel",
"live edit"
],
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-remote",
"bugs": {
"url": "https://github.com/reduxjs/redux-devtools/issues"
},
"license": "MIT",
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
"files": [
"lib",
"src"
],
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/redux-devtools.git"
},
"scripts": {
"build": "yarn build:cjs && yarn build:esm && yarn build:types",
"build:cjs": "babel src --extensions \".ts\" --out-dir lib/cjs",
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts\" --out-dir lib/esm",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf lib",
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit",
"prepack": "yarn run clean && yarn run build",
"prepublish": "yarn run type-check && yarn run lint"
},
"dependencies": {
"@babel/runtime": "^7.17.8",
"@redux-devtools/instrument": "^2.1.0",
"@redux-devtools/utils": "^1.2.0",
"jsan": "^3.1.14",
"querystring": "^0.2.1",
"rn-host-detect": "^1.2.0",
"socketcluster-client": "^14.3.2"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jsan": "^3.1.2",
"@types/rn-host-detect": "^1.2.0",
"@types/socketcluster-client": "^13.0.5",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"redux": "^4.1.2",
"rimraf": "^3.0.2",
"typescript": "~4.5.5"
},
"peerDependencies": {
"redux": "^3.5.2 || ^4.0.0"
}
}