redux-devtools/packages/redux-devtools-remote/package.json

75 lines
2.2 KiB
JSON
Raw Normal View History

2021-10-28 23:39:47 +03:00
{
"name": "@redux-devtools/remote",
"version": "0.9.0",
2021-10-28 23:39:47 +03:00
"description": "Relay Redux actions to remote Redux DevTools.",
"keywords": [
"redux",
"devtools",
"flux",
"react",
"hot reloading",
"time travel",
"live edit"
],
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-remote",
"bugs": {
"url": "https://github.com/reduxjs/redux-devtools/issues"
},
"license": "MIT",
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
"files": [
"lib",
"src"
2021-10-28 23:39:47 +03:00
],
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"sideEffects": false,
2021-10-28 23:39:47 +03:00
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/redux-devtools.git"
},
"scripts": {
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
"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",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf lib",
2021-10-28 23:39:47 +03:00
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit",
"prepack": "pnpm run clean && pnpm run build",
"prepublish": "pnpm run type-check && pnpm run lint"
2021-10-28 23:39:47 +03:00
},
"dependencies": {
"@babel/runtime": "^7.23.5",
"@redux-devtools/instrument": "^2.2.0",
"@redux-devtools/utils": "^2.1.0",
"jsan": "^3.1.14",
2021-10-28 23:39:47 +03:00
"querystring": "^0.2.1",
"rn-host-detect": "^1.2.0",
"socketcluster-client": "^17.2.2"
2021-10-28 23:39:47 +03:00
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@types/jsan": "^3.1.5",
"@types/node": "^20.10.4",
"@types/rn-host-detect": "^1.2.2",
"@types/socketcluster-client": "^16.0.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"redux": "^4.2.1",
"rimraf": "^5.0.5",
"typescript": "~5.3.3"
2021-10-28 23:39:47 +03:00
},
"peerDependencies": {
"redux": "^3.5.2 || ^4.0.0 || ^5.0.0"
2021-10-28 23:39:47 +03:00
}
}