-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 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
{
"name": "@iobroker/plugin-sentry",
"version": "3.0.4",
"description": "Sentry module for plugins for js-controller and adapters",
"author": {
"name": "Ingo Fischer",
"email": "iobroker@fischer-ka.de"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/",
"LICENSE"
],
"scripts": {
"lint": "eslint -c eslint.config.mjs",
"test:integration": "node -e \"process.exit(0)\"",
"test:package": "node -e \"process.exit(0)\"",
"test": "npm run test:integration",
"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": "^3.0.3",
"@sentry/integrations": "^7.114.0",
"@sentry/node": "^10.32.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@alcalzone/release-script": "^5.0.0",
"@alcalzone/release-script-plugin-license": "^4.0.0",
"@alcalzone/release-script-plugin-manual-review": "^4.0.0",
"@iobroker/db-objects-redis": "^7.1.0",
"@iobroker/db-states-redis": "^7.1.0",
"@iobroker/eslint-config": "^2.2.0",
"@iobroker/js-controller-common-db": "^7.1.0",
"@iobroker/types": "^7.1.0",
"@types/node": "^25.0.3",
"baseline-browser-mapping": "^2.9.11",
"rimraf": "^6.1.2",
"typescript": "^5.9.3"
}
}