-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 925 Bytes
/
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
{
"name": "rehox",
"version": "1.7.0",
"description": "使用Hooks实现react全局多store状态管理",
"main": "lib/index.js",
"module": "es/index.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"author": {
"name": "linjc",
"url": "https://github.com/linjc"
},
"files": [
"dist",
"lib",
"es",
"README.md"
],
"keywords": [
"rehox",
"react",
"redux",
"mobx",
"flux",
"状态管理"
],
"homepage": "https://github.com/linjc/rehox",
"repository": {
"type": "git",
"url": "https://github.com/linjc/rehox.git"
},
"bugs": {
"url": "https://github.com/linjc/rehox/issues"
},
"license": "MIT",
"scripts": {
"watch": "father-build --watch",
"build": "father-build"
},
"devDependencies": {
"@types/react": "^16.9.56",
"father-build": "^1.18.5"
},
"peerDependencies": {
"react": "*"
}
}