mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 05:36:46 +03:00
8682d05b0b
* Update Redux packages * Fix instrument build * Fix some test type errors * Fix redux-devtools build * Fix rtk-query-monitor build * Fix redux-devtools-app build * Fix redux-devtools-extension build * Fix redux-devtools-remote build * Fix extension build * slider-monitor-example * test-tab-demo * inspector-monitor-demo * rtk-query-monitor-demo * counter-example * todomvc-example * Fix lint * Fix instrument test types * Fix core tests * Fix rtk-query-monitor tests * Updates
87 lines
3.0 KiB
JSON
87 lines
3.0 KiB
JSON
{
|
|
"name": "@redux-devtools/inspector-monitor-trace-tab",
|
|
"version": "4.0.1",
|
|
"description": "Submonitor for Redux DevTools inspector to show stack traces.",
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor-trace-tab",
|
|
"license": "MIT",
|
|
"author": "Mark Erikson <mark@isquaredsoftware.com>",
|
|
"contributors": [
|
|
"Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)"
|
|
],
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/cjs/StackTraceTab.js",
|
|
"module": "lib/esm/StackTraceTab.js",
|
|
"types": "lib/types/StackTraceTab.d.ts",
|
|
"sideEffects": false,
|
|
"repository": "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,.tsx\" --out-dir lib/cjs",
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --out-dir lib/esm",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"clean": "rimraf lib",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/code-frame": "^8.0.0-alpha.11",
|
|
"@babel/runtime": "^7.24.8",
|
|
"@types/chrome": "^0.0.268",
|
|
"anser": "^2.1.1",
|
|
"html-entities": "^2.5.2",
|
|
"path-browserify": "^1.0.1",
|
|
"react-base16-styling": "^0.10.0",
|
|
"source-map": "^0.5.7"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.24.8",
|
|
"@babel/core": "^7.24.9",
|
|
"@babel/eslint-parser": "^7.24.8",
|
|
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
"@babel/preset-env": "^7.24.8",
|
|
"@babel/preset-react": "^7.24.7",
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
"@emotion/react": "^11.13.0",
|
|
"@redux-devtools/core": "^4.0.0",
|
|
"@redux-devtools/inspector-monitor": "^6.0.1",
|
|
"@testing-library/dom": "^10.3.2",
|
|
"@testing-library/react": "^16.0.0",
|
|
"@types/babel__code-frame": "^7.0.6",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.14.11",
|
|
"@types/path-browserify": "^1.0.2",
|
|
"@types/react": "^18.3.3",
|
|
"@types/source-map": "0.5.2",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-jest": "^28.6.0",
|
|
"eslint-plugin-react": "^7.35.0",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-test-renderer": "^18.3.1",
|
|
"redux": "^5.0.1",
|
|
"rimraf": "^6.0.1",
|
|
"ts-jest": "^29.2.3",
|
|
"typescript": "~5.5.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@emotion/react": "^11.13.0",
|
|
"@redux-devtools/inspector-monitor": "^6.0.0",
|
|
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
"react": "^16.8.4 || ^17.0.0 || ^18.0.0",
|
|
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0",
|
|
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0"
|
|
}
|
|
}
|