-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.82 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-error-sentinel",
"version": "0.3.1",
"description": "Lightweight error tracking and crash reporting for React applications",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./react": {
"require": "./dist/react.js",
"import": "./dist/react.mjs",
"types": "./dist/react.d.ts"
},
"./dashboard": {
"require": "./dist/dashboard.js",
"import": "./dist/dashboard.mjs",
"types": "./dist/dashboard.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"peerDependenciesMeta": {
"redux": {
"optional": true
},
"zustand": {
"optional": true
},
"axios": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"typescript": "^5.3.0",
"tsup": "^8.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
},
"keywords": [
"error-tracking",
"sentry",
"react",
"redux",
"zustand",
"error-monitoring",
"crash-reporting",
"console-capture",
"debugging"
],
"author": "mrwick",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrwick1/react-error-sentinel"
},
"bugs": {
"url": "https://github.com/mrwick1/react-error-sentinel/issues"
},
"homepage": "https://github.com/mrwick1/react-error-sentinel#readme"
}