-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 802 Bytes
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
{
"name": "react-app-error-boundary",
"version": "1.0.5",
"description": "Allows to opt-out of react-error-overlay in your react-app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"keywords": [
"react",
"react-app",
"error",
"error-boundary",
"overlay",
"rewire"
],
"author": "Jeron Diovis <void.jeron.diovis@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/jeron-diovis/react-app-error-boundary.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.12",
"@types/react": ">=17",
"typescript": "^4.5.3"
},
"peerDependencies": {
"react": ">=16"
},
"dependencies": {
"react-error-boundary": ">=3.1.4"
},
"files": [
"dist"
]
}