forked from getsentry/sentry-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.38 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@sentry/electron",
"description": "Official Sentry SDK for Electron",
"version": "2.5.4",
"main": "./index.js",
"module": "./esm/main/index.js",
"browser": "./esm/renderer/index.js",
"exports": {
".": {
"node": {
"require": "./index.js",
"module": "./esm/main/index.js"
},
"default": "./esm/renderer/index.js"
},
"./main": {
"require": "./main/index.js",
"module": "./esm/main/index.js"
},
"./renderer": {
"require": "./renderer/index.js",
"module": "./esm/renderer/index.js"
},
"./preload": "./preload/index.js"
},
"repository": "https://github.com/getsentry/sentry-electron.git",
"author": "Sentry",
"contributors": [
"Tim Fish"
],
"license": "MIT",
"types": "./index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "node scripts/update-version.js",
"build": "run-p build:es6 build:esm build:preload",
"build:es6": "tsc -p tsconfig.build.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:preload": "node scripts/build-preload.js",
"build:watch": "run-p build:watch:es6 build:watch:esm",
"build:watch:es6": "tsc -p tsconfig.build.json -w --preserveWatchOutput",
"build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput",
"clean": "rimraf coverage esm main preload renderer index.* integrations.* ipc.*",
"preexample": "run-s clean build",
"example": "electron example",
"lint": "run-s lint:prettier lint:eslint",
"lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
"lint:eslint": "eslint . --cache --format stylish",
"fix": "run-s fix:eslint fix:prettier",
"fix:prettier": "prettier --write \"{src,test}/**/*.ts\"",
"fix:eslint": "eslint . --format stylish --fix",
"pretest": "run-s clean build",
"test": "cross-env TS_NODE_PROJECT=tsconfig.json xvfb-maybe electron-mocha --require ts-node/register/transpile-only --timeout 120000 ./test/unit/**/*.ts",
"pree2e": "run-s clean build",
"e2e": "cross-env TS_NODE_PROJECT=tsconfig.json xvfb-maybe mocha --require ts-node/register/transpile-only --timeout 30000 --retries 3 ./test/e2e/*.ts"
},
"dependencies": {
"@sentry/browser": "6.13.2",
"@sentry/core": "6.13.2",
"@sentry/node": "6.13.2",
"@sentry/types": "6.13.2",
"@sentry/utils": "6.13.2",
"deepmerge": "^4.2.2",
"tslib": "^2.3.0"
},
"devDependencies": {
"@sentry-internal/eslint-config-sdk": "6.13.2",
"@sentry-internal/typescript": "6.13.2",
"@sentry/tracing": "6.13.2",
"@types/busboy": "^0.2.3",
"@types/chai": "^4.2.10",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-datetime": "^0.0.33",
"@types/form-data": "^2.5.0",
"@types/koa": "^2.0.52",
"@types/koa-bodyparser": "^4.3.0",
"@types/mocha": "^5.2.5",
"busboy": "^0.3.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.0",
"eslint": "7.27.0",
"electron": "15.0.0",
"electron-download": "^4.1.1",
"electron-mocha": "^6.0.4",
"extract-zip": "^1.6.7",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-tree-router": "^0.7.0",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^2.6.2",
"temporary-directory": "^1.0.2",
"ts-node": "^8.5.4",
"typescript": "4.3.5",
"xvfb-maybe": "^0.2.1"
},
"sideEffects": false
}