-
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) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "@synapsmedia/sentry-rate-limiter",
"version": "1.0.2",
"description": "In-memory rate limiter for Sentry error reporting to better handling error quota",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"sentry",
"rate-limit",
"error-tracking",
"monitoring",
"deduplication"
],
"author": "Synaps Media",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/synapsmedia/sentry-rate-limiter.git"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@sentry/node": "^8.0.0 || ^9.0.0 || ^10.0.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@sentry/node": "^10.31.0",
"@types/node": "^22.0.0",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3"
}
}