mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
df059f9459
Co-authored-by: Renovate Bot <bot@renovateapp.com>
84 lines
2.9 KiB
JSON
84 lines
2.9 KiB
JSON
{
|
|
"name": "@redux-devtools/inspector-monitor-trace-tab",
|
|
"version": "0.3.3",
|
|
"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": "yarn build:cjs && yarn build:esm && yarn 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": "yarn run clean && yarn run build",
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/code-frame": "^7.16.7",
|
|
"@babel/runtime": "^7.16.7",
|
|
"@types/chrome": "^0.0.176",
|
|
"anser": "^2.1.0",
|
|
"html-entities": "^2.3.2",
|
|
"path-browserify": "^1.0.1",
|
|
"redux-devtools-themes": "^1.0.0",
|
|
"source-map": "^0.5.7"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.16.8",
|
|
"@babel/core": "^7.16.12",
|
|
"@babel/eslint-parser": "^7.16.5",
|
|
"@babel/plugin-transform-runtime": "^7.16.10",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@babel/preset-react": "^7.16.7",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@redux-devtools/core": "^3.11.0",
|
|
"@redux-devtools/inspector-monitor": "^2.1.0",
|
|
"@testing-library/react": "^12.1.2",
|
|
"@types/babel__code-frame": "^7.0.3",
|
|
"@types/html-entities": "^1.3.4",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/node": "^16.11.21",
|
|
"@types/path-browserify": "^1.0.0",
|
|
"@types/react": "^17.0.38",
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
|
"@types/source-map": "0.5.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
|
"@typescript-eslint/parser": "^5.10.0",
|
|
"eslint": "^8.7.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-jest": "^26.0.0",
|
|
"eslint-plugin-react": "^7.28.0",
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
"jest": "^27.4.7",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-test-renderer": "^17.0.2",
|
|
"redux": "^4.1.2",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.1.3",
|
|
"typescript": "~4.5.5"
|
|
},
|
|
"peerDependencies": {
|
|
"@redux-devtools/inspector-monitor": "^2.0.0",
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
"react": "^16.3.0 || ^17.0.0",
|
|
"redux": "^3.4.0 || ^4.0.0"
|
|
}
|
|
}
|