2018-12-11 23:26:24 +03:00
|
|
|
{
|
2020-12-21 23:46:28 +03:00
|
|
|
"name": "@redux-devtools/inspector-monitor-trace-tab",
|
2022-05-30 20:22:06 +03:00
|
|
|
"version": "1.0.0",
|
2018-12-11 23:26:24 +03:00
|
|
|
"description": "Submonitor for Redux DevTools inspector to show stack traces.",
|
2020-10-04 07:11:22 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor-trace-tab",
|
2020-09-29 16:37:13 +03:00
|
|
|
"license": "MIT",
|
2018-12-11 23:26:24 +03:00
|
|
|
"author": "Mark Erikson <mark@isquaredsoftware.com>",
|
|
|
|
"contributors": [
|
|
|
|
"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"
|
2018-12-11 23:26:24 +03:00
|
|
|
],
|
2022-01-24 05:11:46 +03:00
|
|
|
"main": "lib/cjs/StackTraceTab.js",
|
|
|
|
"module": "lib/esm/StackTraceTab.js",
|
|
|
|
"types": "lib/types/StackTraceTab.d.ts",
|
|
|
|
"sideEffects": false,
|
2020-09-29 16:37:13 +03:00
|
|
|
"repository": "https://github.com/reduxjs/redux-devtools",
|
2018-12-11 23:26:24 +03:00
|
|
|
"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,.tsx\" --out-dir lib/cjs",
|
|
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --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-09-29 16:37:13 +03:00
|
|
|
"test": "jest",
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"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-09-29 16:37:13 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-08-12 06:41:53 +03:00
|
|
|
"@babel/code-frame": "^7.18.6",
|
2022-11-15 17:22:58 +03:00
|
|
|
"@babel/runtime": "^7.20.1",
|
2022-11-27 18:44:17 +03:00
|
|
|
"@types/chrome": "^0.0.203",
|
2022-02-06 04:20:56 +03:00
|
|
|
"anser": "^2.1.1",
|
2022-04-04 06:59:41 +03:00
|
|
|
"html-entities": "^2.3.3",
|
2022-01-24 05:11:46 +03:00
|
|
|
"path-browserify": "^1.0.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"redux-devtools-themes": "^1.0.0",
|
|
|
|
"source-map": "^0.5.7"
|
2018-12-11 23:26:24 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-10-10 02:36:16 +03:00
|
|
|
"@babel/cli": "^7.19.3",
|
2022-11-15 17:22:58 +03:00
|
|
|
"@babel/core": "^7.20.2",
|
2022-10-10 02:36:16 +03:00
|
|
|
"@babel/eslint-parser": "^7.19.1",
|
2022-11-15 17:22:58 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
|
|
"@babel/preset-env": "^7.20.2",
|
2022-08-12 06:41:53 +03:00
|
|
|
"@babel/preset-react": "^7.18.6",
|
|
|
|
"@babel/preset-typescript": "^7.18.6",
|
2022-05-30 20:22:06 +03:00
|
|
|
"@redux-devtools/core": "^3.13.0",
|
|
|
|
"@redux-devtools/inspector-monitor": "^3.0.0",
|
2022-10-10 02:36:16 +03:00
|
|
|
"@testing-library/react": "^13.4.0",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/babel__code-frame": "^7.0.3",
|
2021-06-19 04:47:26 +03:00
|
|
|
"@types/html-entities": "^1.3.4",
|
2022-11-15 17:22:58 +03:00
|
|
|
"@types/jest": "^29.2.3",
|
|
|
|
"@types/node": "^18.11.9",
|
2022-01-24 05:11:46 +03:00
|
|
|
"@types/path-browserify": "^1.0.0",
|
2022-11-15 17:22:58 +03:00
|
|
|
"@types/react": "^18.0.25",
|
2020-09-29 16:37:13 +03:00
|
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/source-map": "0.5.2",
|
2022-11-27 18:44:17 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
|
|
|
"@typescript-eslint/parser": "^5.44.0",
|
|
|
|
"eslint": "^8.28.0",
|
2022-04-04 06:59:41 +03:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2022-11-27 18:44:17 +03:00
|
|
|
"eslint-plugin-jest": "^27.1.6",
|
|
|
|
"eslint-plugin-react": "^7.31.11",
|
2022-06-20 04:12:23 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2022-11-15 17:22:58 +03:00
|
|
|
"jest": "^29.3.1",
|
|
|
|
"jest-environment-jsdom": "^29.3.1",
|
2022-06-20 04:12:23 +03:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
|
|
|
"react-test-renderer": "^18.2.0",
|
2022-05-04 14:43:48 +03:00
|
|
|
"redux": "^4.2.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2022-10-29 00:15:02 +03:00
|
|
|
"ts-jest": "^29.0.3",
|
2022-11-16 01:38:38 +03:00
|
|
|
"typescript": "~4.9.3"
|
2018-12-11 23:26:24 +03:00
|
|
|
},
|
2020-09-29 16:37:13 +03:00
|
|
|
"peerDependencies": {
|
2022-05-30 20:22:06 +03:00
|
|
|
"@redux-devtools/inspector-monitor": "^3.0.0",
|
2022-05-30 18:32:32 +03:00
|
|
|
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
|
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
2020-12-21 23:46:28 +03:00
|
|
|
"redux": "^3.4.0 || ^4.0.0"
|
2018-12-11 23:26:24 +03:00
|
|
|
}
|
|
|
|
}
|