mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
cb4772fa2c
* fix(deps): update all non-major dependencies * Update --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
54 lines
1.7 KiB
JSON
54 lines
1.7 KiB
JSON
{
|
|
"name": "@redux-devtools/extension",
|
|
"version": "3.3.0",
|
|
"description": "Wrappers for Redux DevTools Extension.",
|
|
"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)",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
|
|
"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",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"clean": "rimraf lib",
|
|
"lint": "eslint . --ext .ts",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"prepublish": "pnpm run type-check && pnpm run lint"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.24.1",
|
|
"immutable": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.24.1",
|
|
"@babel/core": "^7.24.3",
|
|
"@babel/eslint-parser": "^7.24.1",
|
|
"@babel/plugin-transform-runtime": "^7.24.3",
|
|
"@babel/preset-env": "^7.24.3",
|
|
"@babel/preset-typescript": "^7.24.1",
|
|
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
|
"@typescript-eslint/parser": "^7.4.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"redux": "^4.2.1",
|
|
"rimraf": "^5.0.5",
|
|
"typescript": "~5.3.3"
|
|
},
|
|
"peerDependencies": {
|
|
"redux": "^3.1.0 || ^4.0.0 || ^5.0.0"
|
|
}
|
|
}
|