forked from immerjs/use-immer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "use-immer",
"version": "0.3.1",
"description": "Use immer with React hooks",
"main": "dist/use-immer.js",
"umd:main": "dist/use-immer.umd.js",
"module": "dist/use-immer.module.js",
"jsnext:main": "dist/use-immer.module.js",
"react-native": "dist/use-immer.module.js",
"typings": "dist/index.d.ts",
"source": "src/index.ts",
"scripts": {
"build": "microbundle",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mweststrate/use-immer.git"
},
"files": [
"dist/"
],
"keywords": [
"immer",
"react",
"hooks"
],
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mweststrate/use-immer/issues"
},
"homepage": "https://github.com/mweststrate/use-immer#readme",
"peerDependencies": {
"immer": "^2.0.0 || ^3.0.0 || ^4.0.0",
"react": "^16.8.0"
},
"devDependencies": {
"@types/react": "^16.8.13",
"microbundle": "^0.11.0",
"typescript": "^3.4.3"
}
}