2020-10-26 09:43:20 +03:00
|
|
|
{
|
2021-11-06 17:38:27 +03:00
|
|
|
"name": "@redux-devtools/extension",
|
2023-01-16 16:19:03 +03:00
|
|
|
"version": "3.2.5",
|
2020-10-26 09:43:20 +03:00
|
|
|
"description": "Wrappers for Redux DevTools Extension.",
|
2021-11-06 17:38:27 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-extension",
|
|
|
|
"license": "MIT",
|
|
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
2021-11-06 20:36:26 +03:00
|
|
|
"files": [
|
2022-01-31 00:30:18 +03:00
|
|
|
"lib",
|
2021-11-06 20:36:26 +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,
|
2020-10-26 09:43:20 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-11-06 17:38:27 +03:00
|
|
|
"url": "https://github.com/reduxjs/redux-devtools"
|
|
|
|
},
|
|
|
|
"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-11-06 17:38:27 +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-11-06 17:38:27 +03:00
|
|
|
},
|
2022-01-10 18:41:53 +03:00
|
|
|
"dependencies": {
|
2023-03-02 15:41:28 +03:00
|
|
|
"@babel/runtime": "^7.21.0",
|
2023-03-15 14:35:42 +03:00
|
|
|
"immutable": "^4.3.0"
|
2022-01-10 18:41:53 +03:00
|
|
|
},
|
2021-11-06 17:38:27 +03:00
|
|
|
"devDependencies": {
|
2023-03-02 15:41:28 +03:00
|
|
|
"@babel/cli": "^7.21.0",
|
2023-04-11 15:45:34 +03:00
|
|
|
"@babel/core": "^7.21.4",
|
2023-03-15 14:35:42 +03:00
|
|
|
"@babel/eslint-parser": "^7.21.3",
|
2023-04-11 15:45:34 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.21.4",
|
|
|
|
"@babel/preset-env": "^7.21.4",
|
|
|
|
"@babel/preset-typescript": "^7.21.4",
|
2023-04-26 23:13:44 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.1",
|
|
|
|
"@typescript-eslint/parser": "^5.59.1",
|
|
|
|
"eslint": "^8.39.0",
|
2023-03-27 04:04:12 +03:00
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2023-02-15 16:44:51 +03:00
|
|
|
"redux": "^4.2.1",
|
2023-04-12 01:49:34 +03:00
|
|
|
"rimraf": "^5.0.0",
|
2023-04-15 20:14:32 +03:00
|
|
|
"typescript": "~5.0.4"
|
2020-10-26 09:43:20 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"redux": "^3.1.0 || ^4.0.0"
|
|
|
|
}
|
|
|
|
}
|