forked from reduxjs/redux-devtools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@redux-devtools/remote",
"version": "0.9.3",
"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 <[email protected]> (https://github.com/zalmoxisus)",
"files": [
"lib",
"src"
],
"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": {
"build": "yarn build:esm && yarn 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",
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit",
"prepack": "yarn clean && yarn build",
"prepublish": "yarn type-check && yarn lint"
},
"dependencies": {
"@babel/runtime": "^7.24.8",
"@redux-devtools/instrument": "^2.2.0",
"@redux-devtools/utils": "^3.0.0",
"jsan": "^3.1.14",
"rn-host-detect": "^1.2.0",
"socketcluster-client": "^19.2.1",
"redux-devtools": "^3.7.0",
"@redux-devtools/cli": "^4.0.0"
},
"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-typescript": "^7.24.7",
"@types/jsan": "^3.1.5",
"@types/node": "^20.14.10",
"@types/rn-host-detect": "^1.2.2",
"@types/socketcluster-client": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"redux": "^4.2.1",
"rimraf": "^6.0.1",
"typescript": "~5.5.3"
},
"peerDependencies": {
"redux": "^3.5.2 || ^4.0.0 || ^5.0.0"
}
}