-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 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
{
"name": "bugsplat",
"version": "9.1.1",
"description": "error reporting for js",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist"
],
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:teamcity": "vitest run --reporter=teamcity",
"e2e": "vitest run --config vitest.e2e.config.ts",
"e2e:teamcity": "vitest run --config vitest.e2e.config.ts --reporter=teamcity",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"release": "npm run build && npm publish --access public",
"lint": "eslint --fix"
},
"keywords": [
"crash",
"report",
"reporting",
"unhandled",
"exception",
"error",
"err",
"bugsplat"
],
"homepage": "https://www.bugsplat.com",
"bugs": "https://github.com/BugSplat-Git/bugsplat-js/issues",
"repository": {
"type": "git",
"url": "https://github.com/BugSplat-Git/bugsplat-js"
},
"author": "@bobbyg603",
"license": "MIT",
"devDependencies": {
"@bugsplat/js-api-client": "^14.1.0",
"@eslint/js": "^9.28.0",
"@types/node": "^25.0.3",
"dotenv": "^17.2.3",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.7.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.33.1",
"vitest": "^4.0.16"
},
"dependencies": {}
}