-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1018 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1018 Bytes
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
{
"name": "@limetric/sentry-integrations",
"version": "2.1.0",
"type": "module",
"exports": {
".": {
"default": "./dist/entry.js"
}
},
"scripts": {
"build": "tsc",
"test": "tsc --noEmit && eslint lib/"
},
"author": {
"name": "Limetric",
"email": "sentry-integrations@limetric.email",
"url": "https://limetric.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Limetric/sentry-integrations.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"dist/"
],
"devDependencies": {
"@eslint/js": "^8.56.0",
"@sentry/types": "^7.114.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.12.10",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"browserslist": "^4.23.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"peerDependencies": {
"@sentry/core": "^7.101.1",
"@sentry/utils": "^7.101.1"
}
}