-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.51 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
59
60
61
62
63
64
65
{
"name": "@commandkit/ratelimit",
"version": "0.0.0",
"description": "CommandKit plugin that provides advanced rate limiting",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./redis": {
"import": "./dist/providers/redis.js",
"types": "./dist/providers/redis.d.ts"
},
"./memory": {
"import": "./dist/providers/memory.js",
"types": "./dist/providers/memory.d.ts"
},
"./fallback": {
"import": "./dist/providers/fallback.js",
"types": "./dist/providers/fallback.d.ts"
}
},
"scripts": {
"check-types": "tsc --noEmit",
"build": "tsc",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neplextech/commandkit.git",
"directory": "packages/ratelimit"
},
"keywords": [
"commandkit",
"ratelimit",
"rate limiting"
],
"contributors": [
"Twilight <hello@twlite.dev>",
"Avraj <avraj@underctrl.io>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/neplextech/commandkit/issues"
},
"homepage": "https://commandkit.dev",
"dependencies": {
"ioredis": "^5.10.0",
"ms": "^2.1.3"
},
"devDependencies": {
"@types/ms": "^2.1.0",
"commandkit": "workspace:*",
"discord.js": "catalog:discordjs",
"directive-to-hof": "^0.0.3",
"tsconfig": "workspace:*",
"typescript": "catalog:build",
"vitest": "^4.0.18"
}
}