-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.31 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
52
53
54
55
56
57
58
{
"name": "rate-limit-valkey",
"version": "0.1.0",
"description": "A Valkey store for the express-rate-limit middleware",
"author": "Srinu Desetti",
"license": "MIT",
"homepage": "https://github.com/webdevelopersrinu/rate-limit-valkey",
"repository": {
"type": "git",
"url": "git+https://github.com/webdevelopersrinu/rate-limit-valkey.git"
},
"bugs": {
"url": "https://github.com/webdevelopersrinu/rate-limit-valkey/issues"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"keywords": [
"valkey",
"express-rate-limit",
"rate-limit",
"store",
"iovalkey"
],
"engines": {
"node": ">= 16"
},
"scripts": {
"build": "pkgroll --src source/",
"test": "pkgroll --src source/ && node --test"
},
"peerDependencies": {
"express-rate-limit": ">= 8.6.0"
},
"devDependencies": {
"@types/node": "^20.6.1",
"express-rate-limit": "^8.6.0",
"iovalkey": "^0.3.0",
"pkgroll": "^2.20.1",
"typescript": "^5.2.2"
}
}