-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 945 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
{
"name": "@daveyplate/next-rate-limit",
"homepage": "https://github.com/Daveyplate/next-rate-limit",
"version": "2.0.1",
"description": "NextJS Rate Limiting Middleware",
"module": "dist/index",
"types": "dist/index",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "rm -rf dist && npm run build"
},
"keywords": [
"NextJS",
"Rate Limit",
"Rate Limiting",
"Middleware"
],
"author": "daveycodez",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"next": "file:../daveyplate/node_modules/next",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@upstash/ratelimit": ">=2.0.5",
"next": ">=14.0.0",
"uuid": ">=10.0.0"
},
"dependencies": {
"express-rate-limit": "^7.4.1",
"install": "^0.13.0",
"lru-cache": "^11.0.2",
"npm": "^10.9.2"
}
}