-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1005 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
{
"name": "immex",
"description": "React hooks friendly state management lib build on immer.js",
"version": "0.2.7",
"main": "lib/immex.js",
"umd:main": "lib/immex.umd.js",
"module": "lib/immex.module.js",
"jsnext:main": "lib/immex.module.js",
"react-native": "lib/immex.module.js",
"typings": "lib/index.d.ts",
"source": "src/index.ts",
"scripts": {
"build": "microbundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ye-will/immex.git"
},
"files": [
"lib/",
"src/"
],
"keywords": [
"immer",
"react",
"hooks",
"state"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ye-will/immex/issues"
},
"homepage": "https://github.com/ye-will/immex#readme",
"peerDependencies": {
"immer": ">=9.0.0",
"react": ">=16.8.0"
},
"devDependencies": {
"@types/react": "^16.9.35",
"immer": "^9.0.15",
"microbundle": "^0.12.0",
"react": "^16.13.1",
"typescript": "^3.9.2"
}
}