2021-08-26 22:33:06 +03:00
|
|
|
{
|
|
|
|
"name": "@redux-devtools/rtk-query-monitor",
|
2024-04-08 00:19:20 +03:00
|
|
|
"version": "5.0.1",
|
2021-08-26 22:33:06 +03:00
|
|
|
"description": "rtk-query monitor for Redux DevTools",
|
|
|
|
"keywords": [
|
|
|
|
"redux",
|
|
|
|
"devtools",
|
|
|
|
"flux",
|
|
|
|
"react",
|
|
|
|
"redux-toolkit",
|
|
|
|
"rtk-query"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/FaberVitale/redux-devtools/tree/feat/rtk-query-monitor/packages/redux-devtools-rtk-query-monitor",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"author": {
|
|
|
|
"name": "FaberVitale",
|
|
|
|
"url": "https://github.com/FaberVitale"
|
|
|
|
},
|
|
|
|
"files": [
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2021-08-26 22:33: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,
|
2021-08-26 22:33:06 +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,.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",
|
2022-07-05 16:31:38 +03:00
|
|
|
"test": "jest",
|
2024-08-09 06:47:07 +03:00
|
|
|
"lint": "eslint .",
|
2021-08-26 22:33:06 +03:00
|
|
|
"type-check": "tsc --noEmit",
|
2022-05-08 16:49:09 +03:00
|
|
|
"prepack": "pnpm run clean && pnpm run build",
|
2022-07-05 16:31:38 +03:00
|
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
2021-08-26 22:33:06 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-09-01 15:30:09 +03:00
|
|
|
"@babel/runtime": "^7.25.6",
|
2024-09-01 07:12:24 +03:00
|
|
|
"@redux-devtools/ui": "workspace:^",
|
2024-07-16 16:24:47 +03:00
|
|
|
"@types/lodash": "^4.17.7",
|
2021-09-20 00:59:01 +03:00
|
|
|
"hex-rgba": "^1.0.2",
|
2024-08-06 06:27:22 +03:00
|
|
|
"immutable": "^4.3.7",
|
2021-08-26 22:33:06 +03:00
|
|
|
"lodash.debounce": "^4.0.8",
|
2024-09-01 07:12:24 +03:00
|
|
|
"react-base16-styling": "workspace:^",
|
|
|
|
"react-json-tree": "workspace:^"
|
2021-08-26 22:33:06 +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:^",
|
2024-08-06 06:11:13 +03:00
|
|
|
"@reduxjs/toolkit": "^2.2.7",
|
2024-08-06 06:27:22 +03:00
|
|
|
"@testing-library/dom": "^10.4.0",
|
2024-08-26 04:53:07 +03:00
|
|
|
"@testing-library/jest-dom": "^6.5.0",
|
2024-09-01 15:30:09 +03:00
|
|
|
"@testing-library/react": "^16.0.1",
|
2024-02-09 02:01:24 +03:00
|
|
|
"@types/jest": "^29.5.12",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@types/hex-rgba": "^1.0.3",
|
|
|
|
"@types/lodash.debounce": "^4.0.9",
|
2024-09-01 15:30:09 +03:00
|
|
|
"@types/react": "^18.3.5",
|
2023-09-27 15:23:14 +03:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"react": "^18.3.1",
|
|
|
|
"react-dom": "^18.3.1",
|
2024-08-06 06:11:13 +03:00
|
|
|
"react-redux": "^9.1.2",
|
|
|
|
"redux": "^5.0.1",
|
2024-07-16 18:35:07 +03:00
|
|
|
"rimraf": "^6.0.1",
|
2024-08-26 04:53:07 +03:00
|
|
|
"ts-jest": "^29.2.5",
|
2024-08-06 06:27:22 +03:00
|
|
|
"typescript": "~5.5.4"
|
2021-08-26 22:33:06 +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-12-09 07:14:28 +03:00
|
|
|
"@reduxjs/toolkit": "^1.0.0 || ^2.0.0",
|
2023-12-18 05:13:35 +03:00
|
|
|
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
2023-12-10 06:44:13 +03:00
|
|
|
"@types/styled-components": "^5.1.34",
|
2023-12-18 05:13:35 +03:00
|
|
|
"react": "^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",
|
2023-12-10 06:44:13 +03:00
|
|
|
"styled-components": "^5.3.11"
|
2021-08-26 22:33:06 +03:00
|
|
|
}
|
|
|
|
}
|