2020-10-26 09:43:20 +03:00
|
|
|
{
|
2021-11-06 17:38:27 +03:00
|
|
|
"name": "@redux-devtools/extension",
|
2022-01-08 05:24:58 +03:00
|
|
|
"version": "3.0.0",
|
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": [
|
|
|
|
"lib",
|
|
|
|
"src"
|
|
|
|
],
|
2021-11-06 17:38:27 +03:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
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": {
|
|
|
|
"build": "yarn run build:types && yarn run build:js",
|
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:js": "babel src --out-dir lib --extensions \".ts\" --source-maps inline",
|
|
|
|
"clean": "rimraf lib",
|
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
|
"type-check": "tsc --noEmit",
|
|
|
|
"prepack": "yarn run clean && yarn run build",
|
|
|
|
"prepublish": "yarn run type-check && yarn run lint"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-01-03 08:10:29 +03:00
|
|
|
"@babel/cli": "^7.16.7",
|
|
|
|
"@babel/core": "^7.16.7",
|
|
|
|
"@babel/preset-env": "^7.16.7",
|
|
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
|
|
"@typescript-eslint/parser": "^5.8.1",
|
|
|
|
"eslint": "^8.6.0",
|
2021-11-06 17:38:27 +03:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"redux": "^4.1.2",
|
|
|
|
"rimraf": "^3.0.2",
|
2021-12-27 05:12:31 +03:00
|
|
|
"typescript": "~4.5.4"
|
2020-10-26 09:43:20 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"redux": "^3.1.0 || ^4.0.0"
|
|
|
|
}
|
|
|
|
}
|