-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1020 Bytes
/
package.json
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": "cutz-redis-ratelimit",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"ratelimit",
"redis",
"upstash",
"typescript",
"cutz"
],
"author": "cvs0",
"license": "ISC",
"description": "A library for API ratelimiting using Upstash and Redis.",
"repository": {
"type": "git",
"url": "https://github.com/CutzTeam/cutz-redis-ratelimit"
},
"bugs": {
"url": "https://github.com/CutzTeam/cutz-redis-ratelimit/issues"
},
"homepage": "https://github.com/CutzTeam/cutz-redis-ratelimit#readme",
"devDependencies": {
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.4",
"gulp": "^5.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^29.7.0",
"nock": "^13.5.5",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"dependencies": {
"@upstash/ratelimit": "^2.0.2",
"@upstash/redis": "^1.34.0"
}
}