forked from neplextech/commandkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 922 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 922 Bytes
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": "@commandkit/redis",
"version": "1.2.1",
"description": "Redis cache provider for CommandKit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"check-types": "tsc --noEmit",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neplextech/commandkit.git",
"directory": "packages/redis"
},
"keywords": [
"commandkit",
"redis",
"cache"
],
"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"
},
"devDependencies": {
"@commandkit/cache": "workspace:*",
"commandkit": "workspace:*",
"tsconfig": "workspace:*",
"typescript": "catalog:build"
}
}