-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 KB
/
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
48
{
"name": "react-native-error-helper",
"version": "0.2.2",
"description": "A helper for React Native to catch global JS errors and provide some ways to resolve error boundaries",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && yarn tsc",
"clean": "rm -rf dist/*",
"lint": "eslint src --ext .ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iChengbo/react-native-error-helper.git"
},
"keywords": [
"react",
"native",
"error",
"helper",
"boundary",
"hoc"
],
"peerDependencies": {
"react": ">= 16.8",
"react-native": "*"
},
"author": "iChengbo",
"license": "MIT",
"bugs": {
"url": "https://github.com/iChengbo/react-native-error-helper/issues"
},
"homepage": "https://github.com/iChengbo/react-native-error-helper#readme",
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.1",
"@types/react": "^18.0.21",
"@types/react-native": "^0.64.4",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"react": "^18.2.0",
"react-native": "^0.64.0",
"typescript": "^4.2.4"
}
}