-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpublic.package.json
37 lines (37 loc) · 963 Bytes
/
public.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
{
"name": "react-use-error-boundary",
"version": "3.0.0",
"description": "A React error boundary hook for function components",
"license": "MIT",
"author": "Tate <[email protected]>",
"homepage": "https://github.com/tatethurston/react-use-error-boundary#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tatethurston/react-use-error-boundary.git"
},
"bugs": {
"url": "https://github.com/tatethurston/react-use-error-boundary/issues"
},
"sideEffects": false,
"types": "index.d.ts",
"peerDependencies": {
"react": ">= 16.8"
},
"main": "./cjs/index.js",
"module": "./index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./index.js",
"module": "./index.js",
"default": "./cjs/index.js"
}
},
"keywords": [
"componentDidCatch",
"error boundary hook",
"react error boundary",
"react hook",
"useErrorBoundary"
]
}