2020-12-22 20:02:14 +03:00
|
|
|
{
|
|
|
|
"name": "@redux-devtools/utils",
|
2022-05-30 21:49:52 +03:00
|
|
|
"version": "2.0.1",
|
2020-12-22 20:02:14 +03:00
|
|
|
"description": "Reusable functions of Redux DevTools",
|
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-utils",
|
|
|
|
"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"
|
2020-12-22 20:02:14 +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,
|
2020-12-22 20:02:14 +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",
|
2020-12-22 20:02:14 +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"
|
2020-12-22 20:02:14 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-05-30 03:52:15 +03:00
|
|
|
"@babel/runtime": "^7.18.3",
|
2022-05-30 21:49:52 +03:00
|
|
|
"@redux-devtools/core": "^3.13.1",
|
2022-01-25 03:26:20 +03:00
|
|
|
"@redux-devtools/serialize": "^0.4.1",
|
2021-08-30 06:47:29 +03:00
|
|
|
"@types/get-params": "^0.1.0",
|
2020-12-22 20:02:14 +03:00
|
|
|
"get-params": "^0.1.2",
|
2022-05-30 03:52:15 +03:00
|
|
|
"immutable": "^4.1.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"jsan": "^3.1.14",
|
2021-06-19 04:47:26 +03:00
|
|
|
"lodash": "^4.17.21",
|
2022-05-04 14:43:48 +03:00
|
|
|
"nanoid": "^3.3.4",
|
|
|
|
"redux": "^4.2.0"
|
2020-12-22 20:02:14 +03:00
|
|
|
},
|
2021-09-19 02:47:03 +03:00
|
|
|
"devDependencies": {
|
2022-05-04 14:43:48 +03:00
|
|
|
"@babel/cli": "^7.17.10",
|
2022-06-20 04:12:23 +03:00
|
|
|
"@babel/core": "^7.18.5",
|
2022-05-30 03:52:15 +03:00
|
|
|
"@babel/eslint-parser": "^7.18.2",
|
2022-06-20 04:12:23 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.18.5",
|
2022-05-30 03:52:15 +03:00
|
|
|
"@babel/preset-env": "^7.18.2",
|
2022-05-18 02:15:31 +03:00
|
|
|
"@babel/preset-typescript": "^7.17.12",
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/jsan": "^3.1.2",
|
2022-05-04 14:43:48 +03:00
|
|
|
"@types/lodash": "^4.14.182",
|
2022-06-20 04:12:23 +03:00
|
|
|
"@types/node": "^16.11.41",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.28.0",
|
|
|
|
"@typescript-eslint/parser": "^5.28.0",
|
|
|
|
"eslint": "^8.18.0",
|
2022-04-04 06:59:41 +03:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2022-06-20 04:12:23 +03:00
|
|
|
"typescript": "~4.7.4"
|
2021-09-19 02:47:03 +03:00
|
|
|
},
|
2020-12-22 20:02:14 +03:00
|
|
|
"peerDependencies": {
|
2022-05-30 21:49:52 +03:00
|
|
|
"@redux-devtools/core": "^3.13.1",
|
2022-05-30 03:52:15 +03:00
|
|
|
"immutable": "^4.1.0",
|
2022-05-04 14:43:48 +03:00
|
|
|
"redux": "^4.2.0"
|
2020-12-22 20:02:14 +03:00
|
|
|
}
|
|
|
|
}
|