-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "fensr",
"version": "1.0.0",
"description": "Fensr – Throttle wisely. Protect efficiently. A fast, Redis-powered rate limiting middleware for Node.js and Express.",
"main": "index.js",
"scripts": {
"start": "tsx src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Victorthread/fensr.git"
},
"keywords": [
"rate-limit",
"redis",
"express",
"middleware",
"api-protection",
"throttling",
"fensr"
],
"author": "Victor Enwereuzor",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/Victorthread/fensr/issues"
},
"homepage": "https://github.com/Victorthread/fensr#readme",
"dependencies": {
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"rate-limit-redis": "^4.2.1",
"redis": "^5.6.0",
"tsx": "^4.20.3"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/express-rate-limit": "^5.1.3",
"@types/node": "^24.0.15",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}