-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "@bug-catch/browser",
"version": "4.3.5",
"homepage": "https://github.com/bug-catch/browser#readme",
"description": "Catch all errors and log custom events within any website.",
"author": {
"name": "Harry Merritt",
"url": "https://github.com/hmerritt"
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"perfume.js": "^6.3.0",
"react-device-detect": "^2.2.3"
},
"devDependencies": {
"@types/node": "^20.4.8",
"happy-dom": "^10.8.0",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vite-plugin-dts": "^3.5.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.1"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist",
"src"
],
"keywords": [
"bugs",
"bug-catch"
],
"bugs": {
"url": "https://github.com/bug-catch/browser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bug-catch/browser.git"
},
"license": "Apache-2.0"
}