mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 05:06:50 +03:00
96ac1f291a
This change splits out the main logic from the Redux Devtools App into a new core package but keeps the socket connection management in @redux-devtools/app. The aim is to allow for easier reuse of the rest of the app in other envioronments with their own transport methods, such as React Native or Electron.
105 lines
3.6 KiB
JSON
105 lines
3.6 KiB
JSON
{
|
|
"name": "@redux-devtools/app",
|
|
"version": "6.0.1",
|
|
"description": "Redux DevTools app",
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
"files": [
|
|
"build",
|
|
"lib",
|
|
"src",
|
|
"umd"
|
|
],
|
|
"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.git"
|
|
},
|
|
"scripts": {
|
|
"start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --hot --env development --env platform=web --progress",
|
|
"build": "pnpm run build:lib && pnpm run build:web && pnpm run build:umd && pnpm run build:umd:min",
|
|
"build:lib": "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",
|
|
"build:web": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --env platform=web",
|
|
"build:umd": "node buildUmd.mjs --dev",
|
|
"build:umd:min": "node buildUmd.mjs",
|
|
"clean": "rimraf build lib umd",
|
|
"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": {
|
|
"@redux-devtools/app-core": "^1.0.0",
|
|
"@redux-devtools/ui": "^1.3.2",
|
|
"localforage": "^1.10.0",
|
|
"jsan": "^3.1.14",
|
|
"lodash": "^4.17.21",
|
|
"react-redux": "^8.1.3",
|
|
"redux": "^4.2.1",
|
|
"redux-persist": "^6.0.0",
|
|
"socketcluster-client": "^19.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.24.7",
|
|
"@babel/core": "^7.24.7",
|
|
"@babel/eslint-parser": "^7.24.7",
|
|
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
"@babel/preset-env": "^7.24.7",
|
|
"@babel/preset-react": "^7.24.7",
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
"@emotion/react": "^11.11.4",
|
|
"@rjsf/core": "^4.2.3",
|
|
"@types/jsan": "^3.1.5",
|
|
"@types/json-schema": "^7.0.15",
|
|
"@types/lodash": "^4.17.4",
|
|
"@types/node": "^20.14.2",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/socketcluster-client": "^19.1.0",
|
|
"@types/styled-components": "^5.1.34",
|
|
"@types/webpack-env": "^1.18.5",
|
|
"@typescript-eslint/eslint-plugin": "^7.12.0",
|
|
"@typescript-eslint/parser": "^7.12.0",
|
|
"babel-loader": "^9.1.3",
|
|
"cross-env": "^7.0.3",
|
|
"css-loader": "^7.1.2",
|
|
"esbuild": "^0.21.4",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-react": "^7.34.2",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"fork-ts-checker-webpack-plugin": "^9.0.2",
|
|
"html-loader": "^5.0.0",
|
|
"html-webpack-plugin": "^5.6.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"rimraf": "^5.0.7",
|
|
"style-loader": "^4.0.0",
|
|
"styled-components": "^5.3.11",
|
|
"ts-jest": "^29.1.4",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "~5.4.5",
|
|
"webpack": "^5.91.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-dev-server": "^5.0.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@emotion/react": "^11.11.4",
|
|
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
"@types/styled-components": "^5.1.34",
|
|
"react": "^16.8.4 || ^17.0.0 || ^18.0.0",
|
|
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0",
|
|
"styled-components": "^5.3.11"
|
|
}
|
|
}
|