-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "redux-kangking",
"version": "0.11.0",
"description": "Make Redux development easier",
"main": "./index.js",
"module": "./esm/index.js",
"typings": "./index.d.ts",
"repository": "https://github.com/x-wk/redux-kangking",
"homepage": "https://github.com/x-wk/redux-kangking",
"scripts": {
"clean": "rimraf lib",
"dev": "npm-run-all clean package \"compile -- -w\"",
"compile": "tsc -b ./tsconfig.json ./tsconfig.esm.json",
"build": "npm-run-all clean compile package",
"package": "node ./tools/copy-files.js && node ./tools/generate-alias.js"
},
"keywords": [
"react",
"redux",
"action",
"reducer",
"state",
"handler",
"processor",
"predictable",
"functional",
"immutable",
"flux",
"king"
],
"author": "Kang King <whtsir@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/redux": "^3.6.0",
"fs-extra": "^9.1.0",
"immer": "^8.0.1",
"npm-run-all": "^4.1.5",
"redux": "^4.0.5",
"rimraf": "^3.0.2",
"rxjs": "^6.6.6",
"shx": "^0.3.3",
"typescript": "^4.2.2"
},
"peerDependencies": {
"immer": ">=7.x",
"redux": ">=4.x"
},
"dependencies": {}
}