-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.14 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
{
"name": "throttlr",
"version": "1.0.0",
"description": "High-performance adaptive distributed rate limiting API gateway powered by Redis Lua, two-tier in-memory leasing, and graceful degradation.",
"type": "module",
"main": "src/gateway/server.js",
"bin": {
"throttlr": "src/gateway/server.js"
},
"files": [
"src",
"README.md",
"tech.md",
"LICENSE"
],
"scripts": {
"start": "node src/gateway/server.js",
"test": "node tests/verification.js",
"benchmark": "node tests/benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hami9/Throttlr.git"
},
"keywords": [
"rate-limiter",
"api-gateway",
"redis",
"lua",
"token-bucket",
"sliding-window",
"adaptive-concurrency",
"reverse-proxy",
"traffic-shaping",
"dos-protection"
],
"author": "hami9",
"license": "MIT",
"bugs": {
"url": "https://github.com/hami9/Throttlr/issues"
},
"homepage": "https://github.com/hami9/Throttlr#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"express": "^4.21.2",
"ioredis": "^5.4.2",
"ws": "^8.18.0"
}
}