-
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.19 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.19 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": "distributed-limiter",
"version": "1.0.3",
"description": "Distributed token bucket rate limiter using Redis and Lua",
"homepage": "https://github.com/Toxic209/distributed-rate-limiter#readme",
"bugs": {
"url": "https://github.com/Toxic209/distributed-rate-limiter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Toxic209/distributed-rate-limiter.git"
},
"license": "MIT",
"author": "Rohit Pandey",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "nodemon --watch src --ext ts --exec tsx src/index.ts",
"build": "tsup src/index.ts --format esm --dts"
},
"devDependencies": {
"@types/node": "^25.9.1",
"ioredis": "^5.10.1",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
},
"peerDependencies": {
"ioredis": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"rate-limiter",
"redis",
"token-bucket",
"distributed-systems"
]
}