distributed-limiter 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +12 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "distributed-limiter",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Distributed token bucket rate limiter using Redis and Lua",
|
|
5
5
|
"homepage": "https://github.com/Toxic209/distributed-rate-limiter#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -11,9 +11,16 @@
|
|
|
11
11
|
"url": "git+https://github.com/Toxic209/distributed-rate-limiter.git"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
|
-
"author": "
|
|
14
|
+
"author": "Rohit Pandey",
|
|
15
15
|
"type": "module",
|
|
16
|
-
"main": "index.js",
|
|
16
|
+
"main": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"import": "./dist/index.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
17
24
|
"scripts": {
|
|
18
25
|
"dev": "nodemon --watch src --ext ts --exec tsx src/index.ts",
|
|
19
26
|
"build": "tsup src/index.ts --format esm --dts"
|
|
@@ -32,7 +39,8 @@
|
|
|
32
39
|
},
|
|
33
40
|
"files": [
|
|
34
41
|
"dist",
|
|
35
|
-
"
|
|
42
|
+
"README.md",
|
|
43
|
+
"LICENSE"
|
|
36
44
|
],
|
|
37
45
|
"keywords": [
|
|
38
46
|
"rate-limiter",
|