-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 KB
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
{
"name": "@redux-devtools/remote",
"version": "1.0.0",
"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"
],
"exports": "./lib/index.js",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/redux-devtools.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"prepack": "pnpm run clean && pnpm run build",
"prepublish": "pnpm run type-check && pnpm run lint"
},
"dependencies": {
"@redux-devtools/instrument": "workspace:^",
"@redux-devtools/utils": "workspace:^",
"jsan": "^3.1.14",
"rn-host-detect": "^1.2.0",
"socketcluster-client": "^20.0.1"
},
"devDependencies": {
"@types/jsan": "^3.1.5",
"@types/node": "^24.12.2",
"@types/rn-host-detect": "^1.2.2",
"@types/socketcluster-client": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"redux": "^5.0.1",
"rimraf": "^6.1.3",
"typescript": "~6.0.2"
},
"peerDependencies": {
"redux": "^3.5.2 || ^4.0.0 || ^5.0.0"
}
}