2018-12-03 00:49:12 +03:00
|
|
|
{
|
2020-12-20 17:13:01 +03:00
|
|
|
"name": "@redux-devtools/instrument",
|
2022-01-25 03:26:20 +03:00
|
|
|
"version": "2.1.0",
|
2018-12-03 00:49:12 +03:00
|
|
|
"description": "Redux DevTools instrumentation",
|
|
|
|
"keywords": [
|
|
|
|
"redux",
|
|
|
|
"devtools",
|
|
|
|
"flux",
|
|
|
|
"hot reloading",
|
|
|
|
"time travel",
|
|
|
|
"live edit"
|
|
|
|
],
|
2020-08-22 17:28:08 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-instrument",
|
2018-12-03 00:49:12 +03:00
|
|
|
"bugs": {
|
2018-12-12 03:22:35 +03:00
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
2018-12-03 00:49:12 +03:00
|
|
|
},
|
2020-08-22 17:28:08 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
|
|
|
|
"files": [
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2020-08-22 17:28:08 +03:00
|
|
|
"src"
|
|
|
|
],
|
2022-01-24 05:11:46 +03:00
|
|
|
"main": "lib/cjs/instrument.js",
|
|
|
|
"module": "lib/esm/instrument.js",
|
|
|
|
"types": "lib/types/instrument.d.ts",
|
|
|
|
"sideEffects": false,
|
2020-08-22 17:28:08 +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-08-22 17:28:08 +03:00
|
|
|
"test": "jest",
|
2020-08-29 07:14:49 +03:00
|
|
|
"lint": "eslint . --ext .ts",
|
2020-08-22 17:28:08 +03:00
|
|
|
"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 && pnpm run test"
|
2020-08-22 17:28:08 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-28 05:49:22 +03:00
|
|
|
"@babel/runtime": "^7.22.11",
|
2021-06-19 04:47:26 +03:00
|
|
|
"lodash": "^4.17.21"
|
2020-08-22 17:28:08 +03:00
|
|
|
},
|
2018-12-03 00:49:12 +03:00
|
|
|
"devDependencies": {
|
2023-08-21 02:49:11 +03:00
|
|
|
"@babel/cli": "^7.22.10",
|
2023-08-28 05:49:22 +03:00
|
|
|
"@babel/core": "^7.22.11",
|
|
|
|
"@babel/eslint-parser": "^7.22.11",
|
2023-08-21 02:49:11 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.22.10",
|
2023-09-04 06:16:14 +03:00
|
|
|
"@babel/preset-env": "^7.22.14",
|
2023-08-28 05:49:22 +03:00
|
|
|
"@babel/preset-typescript": "^7.22.11",
|
|
|
|
"@types/jest": "^29.5.4",
|
2023-08-21 02:49:11 +03:00
|
|
|
"@types/lodash": "^4.14.197",
|
2023-09-04 06:16:14 +03:00
|
|
|
"@types/node": "^18.17.14",
|
2023-09-04 05:56:58 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.5.0",
|
|
|
|
"@typescript-eslint/parser": "^6.5.0",
|
2023-08-28 05:49:22 +03:00
|
|
|
"eslint": "^8.48.0",
|
2023-08-07 16:13:49 +03:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-08-07 15:21:50 +03:00
|
|
|
"eslint-plugin-jest": "^27.2.3",
|
2023-08-28 05:49:22 +03:00
|
|
|
"jest": "^29.6.4",
|
2023-02-15 16:44:51 +03:00
|
|
|
"redux": "^4.2.1",
|
2023-06-04 20:59:22 +03:00
|
|
|
"rimraf": "^5.0.1",
|
|
|
|
"rxjs": "^7.8.1",
|
2023-07-12 21:49:09 +03:00
|
|
|
"ts-jest": "^29.1.1",
|
2023-09-04 06:36:52 +03:00
|
|
|
"typescript": "~5.2.2"
|
2018-12-03 00:49:12 +03:00
|
|
|
},
|
2020-08-22 17:28:08 +03:00
|
|
|
"peerDependencies": {
|
|
|
|
"redux": "^3.4.0 || ^4.0.0"
|
2018-12-03 00:49:12 +03:00
|
|
|
}
|
|
|
|
}
|