2018-12-22 03:10:49 +03:00
|
|
|
{
|
2020-12-21 23:46:28 +03:00
|
|
|
"name": "@redux-devtools/inspector-monitor",
|
2024-04-08 00:19:20 +03:00
|
|
|
"version": "6.0.1",
|
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",
|
2024-08-09 06:47:07 +03:00
|
|
|
"lint": "eslint .",
|
2020-08-31 00:49:06 +03:00
|
|
|
"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": {
|
2024-09-01 15:30:09 +03:00
|
|
|
"@babel/runtime": "^7.25.6",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@dnd-kit/core": "^6.1.0",
|
2023-11-09 05:23:02 +03:00
|
|
|
"@dnd-kit/modifiers": "^7.0.0",
|
|
|
|
"@dnd-kit/sortable": "^8.0.0",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@dnd-kit/utilities": "^3.2.2",
|
2024-07-16 16:24:47 +03:00
|
|
|
"@types/lodash": "^4.17.7",
|
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",
|
2024-08-06 06:27:22 +03:00
|
|
|
"immutable": "^4.3.7",
|
2021-06-19 04:47:26 +03:00
|
|
|
"javascript-stringify": "^2.1.0",
|
2024-01-24 05:48:11 +03:00
|
|
|
"jsondiffpatch": "^0.6.0",
|
2020-08-31 00:49:06 +03:00
|
|
|
"lodash.debounce": "^4.0.8",
|
2024-09-01 07:12:24 +03:00
|
|
|
"react-base16-styling": "workspace:^",
|
|
|
|
"react-json-tree": "workspace:^"
|
2020-08-31 00:49:06 +03:00
|
|
|
},
|
2018-12-22 03:10:49 +03:00
|
|
|
"devDependencies": {
|
2024-09-01 15:30:09 +03:00
|
|
|
"@babel/cli": "^7.25.6",
|
2024-08-06 06:27:22 +03:00
|
|
|
"@babel/core": "^7.25.2",
|
|
|
|
"@babel/eslint-parser": "^7.25.1",
|
2024-08-26 04:53:07 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.25.4",
|
|
|
|
"@babel/preset-env": "^7.25.4",
|
2024-06-07 04:21:49 +03:00
|
|
|
"@babel/preset-react": "^7.24.7",
|
|
|
|
"@babel/preset-typescript": "^7.24.7",
|
2024-07-20 16:17:14 +03:00
|
|
|
"@emotion/babel-preset-css-prop": "^11.12.0",
|
2024-08-26 04:53:07 +03:00
|
|
|
"@emotion/react": "^11.13.3",
|
2024-09-01 07:12:24 +03:00
|
|
|
"@redux-devtools/core": "workspace:^",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@types/dateformat": "^5.0.2",
|
|
|
|
"@types/hex-rgba": "^1.0.3",
|
|
|
|
"@types/lodash.debounce": "^4.0.9",
|
2024-09-17 02:24:11 +03:00
|
|
|
"@types/react": "^18.3.6",
|
2024-06-07 04:21:49 +03:00
|
|
|
"react": "^18.3.1",
|
2024-08-06 06:11:13 +03:00
|
|
|
"redux": "^5.0.1",
|
2024-07-16 18:35:07 +03:00
|
|
|
"rimraf": "^6.0.1",
|
2024-08-06 06:27:22 +03:00
|
|
|
"typescript": "~5.5.4"
|
2018-12-22 03:10:49 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2024-08-26 04:53:07 +03:00
|
|
|
"@emotion/react": "^11.13.3",
|
2024-09-01 07:12:24 +03:00
|
|
|
"@redux-devtools/core": "workspace:^",
|
2023-08-28 04:49:10 +03:00
|
|
|
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
2023-12-18 05:13:35 +03:00
|
|
|
"react": "^16.8.4 || ^17.0.0 || ^18.0.0",
|
|
|
|
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0",
|
2023-12-09 06:41:20 +03:00
|
|
|
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0"
|
2019-01-03 18:40:38 +03:00
|
|
|
}
|
2018-12-22 03:10:49 +03:00
|
|
|
}
|