2018-12-22 03:10:49 +03:00
|
|
|
{
|
2020-12-21 23:46:28 +03:00
|
|
|
"name": "@redux-devtools/inspector-monitor",
|
2023-08-28 05:24:11 +03:00
|
|
|
"version": "4.0.0",
|
2018-12-22 03:10:49 +03:00
|
|
|
"description": "Redux DevTools Diff Monitor",
|
2020-09-10 19:37:19 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor",
|
2020-08-31 00:49:06 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
2018-12-22 03:10:49 +03:00
|
|
|
},
|
2020-08-31 00:49:06 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "Alexander <alexkuz@gmail.com> (http://kuzya.org/)",
|
|
|
|
"contributors": [
|
|
|
|
"Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)"
|
|
|
|
],
|
|
|
|
"files": [
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2020-08-31 00:49:06 +03:00
|
|
|
"src"
|
|
|
|
],
|
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,
|
2018-12-22 03:10:49 +03:00
|
|
|
"repository": {
|
2020-09-09 17:35:22 +03:00
|
|
|
"type": "git",
|
2018-12-22 03:10:49 +03:00
|
|
|
"url": "https://github.com/reduxjs/redux-devtools"
|
|
|
|
},
|
2020-08-31 00:49:06 +03:00
|
|
|
"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,.tsx\" --out-dir lib/cjs",
|
|
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --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",
|
2020-08-31 00:49:06 +03:00
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"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"
|
2020-08-31 00:49:06 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-28 05:49:22 +03:00
|
|
|
"@babel/runtime": "^7.22.11",
|
2023-08-19 02:52:43 +03:00
|
|
|
"@dnd-kit/core": "^6.0.8",
|
|
|
|
"@dnd-kit/modifiers": "^6.0.1",
|
|
|
|
"@dnd-kit/sortable": "^7.0.2",
|
|
|
|
"@dnd-kit/utilities": "^3.2.1",
|
2023-08-21 02:49:11 +03:00
|
|
|
"@types/lodash": "^4.14.197",
|
2022-04-11 19:15:24 +03:00
|
|
|
"@types/prop-types": "^15.7.5",
|
2023-08-07 16:40:13 +03:00
|
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
2023-01-03 03:58:10 +03:00
|
|
|
"dateformat": "^5.0.3",
|
2020-08-31 00:49:06 +03:00
|
|
|
"hex-rgba": "^1.0.2",
|
2023-08-28 05:49:22 +03:00
|
|
|
"immutable": "^4.3.4",
|
2021-06-19 04:47:26 +03:00
|
|
|
"javascript-stringify": "^2.1.0",
|
2023-08-21 03:35:32 +03:00
|
|
|
"jsondiffpatch": "^0.5.0",
|
2023-02-15 16:44:51 +03:00
|
|
|
"jss": "^10.10.0",
|
|
|
|
"jss-preset-default": "^10.10.0",
|
2020-08-31 00:49:06 +03:00
|
|
|
"lodash.debounce": "^4.0.8",
|
2022-01-23 02:00:06 +03:00
|
|
|
"prop-types": "^15.8.1",
|
2022-01-25 03:26:20 +03:00
|
|
|
"react-base16-styling": "^0.9.1",
|
2023-01-05 17:18:48 +03:00
|
|
|
"react-json-tree": "^0.18.0",
|
2020-08-31 00:49:06 +03:00
|
|
|
"redux-devtools-themes": "^1.0.0"
|
|
|
|
},
|
2018-12-22 03:10:49 +03:00
|
|
|
"devDependencies": {
|
2023-08-21 02:49:11 +03:00
|
|
|
"@babel/cli": "^7.22.10",
|
2023-08-28 05:49:22 +03:00
|
|
|
"@babel/core": "^7.22.11",
|
|
|
|
"@babel/eslint-parser": "^7.22.11",
|
2023-08-21 02:49:11 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.22.10",
|
2023-09-04 06:16:14 +03:00
|
|
|
"@babel/preset-env": "^7.22.14",
|
2023-06-23 17:32:19 +03:00
|
|
|
"@babel/preset-react": "^7.22.5",
|
2023-08-28 05:49:22 +03:00
|
|
|
"@babel/preset-typescript": "^7.22.11",
|
2022-05-30 21:49:52 +03:00
|
|
|
"@redux-devtools/core": "^3.13.1",
|
2023-01-03 03:58:10 +03:00
|
|
|
"@types/dateformat": "^5.0.0",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/hex-rgba": "^1.0.1",
|
2022-01-23 02:00:06 +03:00
|
|
|
"@types/history": "^4.7.11",
|
2022-05-04 14:43:48 +03:00
|
|
|
"@types/lodash.debounce": "^4.0.7",
|
2023-08-28 05:49:22 +03:00
|
|
|
"@types/react": "^18.2.21",
|
2023-09-04 05:56:58 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.5.0",
|
|
|
|
"@typescript-eslint/parser": "^6.5.0",
|
2023-08-28 05:49:22 +03:00
|
|
|
"eslint": "^8.48.0",
|
2023-08-07 16:13:49 +03:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-08-21 02:49:11 +03:00
|
|
|
"eslint-plugin-react": "^7.33.2",
|
2022-06-20 04:12:23 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
|
|
"react": "^18.2.0",
|
2023-02-15 16:44:51 +03:00
|
|
|
"redux": "^4.2.1",
|
2023-06-04 20:59:22 +03:00
|
|
|
"rimraf": "^5.0.1",
|
2023-07-13 01:07:28 +03:00
|
|
|
"typescript": "~5.1.6"
|
2018-12-22 03:10:49 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2022-05-30 21:49:52 +03:00
|
|
|
"@redux-devtools/core": "^3.13.1",
|
2023-08-28 04:49:10 +03:00
|
|
|
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
|
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
|
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
2020-08-31 00:49:06 +03:00
|
|
|
"redux": "^3.4.0 || ^4.0.0"
|
2019-01-03 18:40:38 +03:00
|
|
|
}
|
2018-12-22 03:10:49 +03:00
|
|
|
}
|