forked from koishijs/koishi-plugin-otp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 915 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
43
44
45
46
47
48
49
50
{
"name": "koishi-plugin-otp",
"description": "one time password",
"version": "0.0.3",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": {
"name": "Lipraty",
"email": "[email protected]"
},
"files": [
"lib",
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/koishijs/koishi-plugin-otp.git"
},
"bugs": {
"url": "https://github.com/koishijs/koishi-plugin-otp/issues"
},
"koishi": {
"description": {
"zh_CN": "OTP 验证码服务",
"en_US": "the one time password service"
},
"service": {
"implements": [
"otp"
],
"required": [
"database"
]
}
},
"keywords": [
"chatbot",
"koishi",
"plugin",
"otp",
"one time password",
"authenticator",
"totp",
"hotp"
],
"peerDependencies": {
"koishi": "^4.12.0"
}
}