-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "@iobroker/plugin-sentry",
"version": "2.0.4",
"description": "Sentry module for plugins for js-controller and adapters",
"author": {
"name": "Ingo Fischer",
"email": "[email protected]"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"LICENSE"
],
"scripts": {
"prebuild": "rimraf ./build",
"build": "tsc -p tsconfig.json",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioBroker/plugin-sentry.git"
},
"keywords": [
"iobroker",
"adapter",
"plugins",
"Sentry"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ioBroker/plugin-sentry/issues"
},
"homepage": "https://github.com/ioBroker/plugin-sentry#readme",
"dependencies": {
"@iobroker/plugin-base": "^2.0.1",
"@sentry/integrations": "^7.55.2",
"@sentry/node": "^7.55.2",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@alcalzone/release-script": "^3.5.9",
"@alcalzone/release-script-plugin-license": "^3.5.9",
"@alcalzone/release-script-plugin-manual-review": "^3.7.0",
"@foxriver76/eslint-config": "^1.0.4",
"@iobroker/types": "^6.0.0",
"@types/node": "^20.3.1",
"rimraf": "^5.0.7",
"typescript": "^5.4.5"
}
}