-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 824 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
43
44
{
"name": "koishi-plugin-redis",
"packageManager": "yarn@4.9.4",
"version": "1.0.0",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"license": "MIT",
"scripts": {
"build": "yakumo build"
},
"keywords": [
"chatbot",
"koishi",
"plugin",
"redis"
],
"peerDependencies": {
"koishi": "^4.18.7"
},
"dependencies": {
"@redis/client": "5.0.0-next.7",
"redis": "5.0.0-next.7"
},
"devDependencies": {
"@types/node": "^22.1.0",
"esbuild": "^0.23.0",
"koishi": "^4.18.7",
"typescript": "^5.5.3",
"yakumo": "^1.0.0-beta.16",
"yakumo-esbuild": "^1.0.0-beta.6",
"yakumo-tsc": "^1.0.0-beta.3",
"yml-register": "^1.2.5"
},
"koishi": {
"service": {
"implements": [
"redis"
]
}
}
}