2021-10-28 23:39:47 +03:00
|
|
|
{
|
|
|
|
"name": "@redux-devtools/remote",
|
2023-11-05 07:05:38 +03:00
|
|
|
"version": "0.8.2",
|
2021-10-28 23:39:47 +03:00
|
|
|
"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": [
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2022-01-10 18:41:53 +03:00
|
|
|
"src"
|
2021-10-28 23:39:47 +03:00
|
|
|
],
|
2022-01-24 05:11:46 +03:00
|
|
|
"main": "lib/cjs/index.js",
|
|
|
|
"module": "lib/esm/index.js",
|
|
|
|
"types": "lib/types/index.d.ts",
|
|
|
|
"sideEffects": false,
|
2021-10-28 23:39:47 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-05-08 16:49:09 +03:00
|
|
|
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
|
2022-01-24 05:11:46 +03:00
|
|
|
"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",
|
2022-05-18 02:15:31 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
2022-01-24 05:11:46 +03:00
|
|
|
"clean": "rimraf lib",
|
2021-10-28 23:39:47 +03:00
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
|
"type-check": "tsc --noEmit",
|
2022-05-08 16:49:09 +03:00
|
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
|
|
"prepublish": "pnpm run type-check && pnpm run lint"
|
2021-10-28 23:39:47 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-10-24 22:18:38 +03:00
|
|
|
"@babel/runtime": "^7.23.2",
|
2023-11-05 07:05:38 +03:00
|
|
|
"@redux-devtools/instrument": "^2.1.1",
|
|
|
|
"@redux-devtools/utils": "^2.0.2",
|
2021-12-27 05:12:31 +03:00
|
|
|
"jsan": "^3.1.14",
|
2021-10-28 23:39:47 +03:00
|
|
|
"querystring": "^0.2.1",
|
|
|
|
"rn-host-detect": "^1.2.0",
|
2023-07-12 21:49:09 +03:00
|
|
|
"socketcluster-client": "^17.2.2"
|
2021-10-28 23:39:47 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-27 15:23:14 +03:00
|
|
|
"@babel/cli": "^7.23.0",
|
2023-10-24 22:18:38 +03:00
|
|
|
"@babel/core": "^7.23.2",
|
2023-09-27 15:23:14 +03:00
|
|
|
"@babel/eslint-parser": "^7.22.15",
|
2023-10-24 22:18:38 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.23.2",
|
|
|
|
"@babel/preset-env": "^7.23.2",
|
|
|
|
"@babel/preset-typescript": "^7.23.2",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@types/jsan": "^3.1.5",
|
|
|
|
"@types/node": "^20.9.0",
|
|
|
|
"@types/rn-host-detect": "^1.2.2",
|
|
|
|
"@types/socketcluster-client": "^16.0.3",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
|
|
"@typescript-eslint/parser": "^6.10.0",
|
|
|
|
"eslint": "^8.53.0",
|
2023-08-07 16:13:49 +03:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-02-15 16:44:51 +03:00
|
|
|
"redux": "^4.2.1",
|
2023-09-27 15:23:14 +03:00
|
|
|
"rimraf": "^5.0.5",
|
2023-09-04 06:36:52 +03:00
|
|
|
"typescript": "~5.2.2"
|
2021-10-28 23:39:47 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"redux": "^3.5.2 || ^4.0.0"
|
|
|
|
}
|
|
|
|
}
|