-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.57 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "koishi-plugin-mediawiki",
"version": "3.1.0",
"description": "MediaWiki for koishijs",
"author": "Dragon-Fish <824399619@qq.com>",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --fix",
"build": "tsc --build --force",
"prepublish": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"tslib": "^2.7.0",
"wiki-saikou": "^3.4.0"
},
"devDependencies": {
"@types/node": "^22.6.1",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"koishi": "^4.18.0",
"koishi-plugin-puppeteer": "^3.9.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"peerDependencies": {
"koishi": "^4.18.0",
"koishi-plugin-puppeteer": "^3.9.0"
},
"repository": "https://github.com/koishijs/koishi-plugin-mediawiki",
"keywords": [
"koishi",
"koishi-plugin",
"mediawiki",
"mediawiki-bot",
"mediawiki-api",
"subscribe",
"chatbot"
],
"koishi": {
"description": {
"en": "MediaWiki for Koishi.js - tightly connect your chat channel with your wiki site!",
"zh": "Koishi.js 的 MediaWiki 插件,将您的群聊与 wiki 站点紧密连接!"
},
"service": {
"required": [
"database"
],
"optional": [
"puppeteer"
],
"implements": []
},
"locales": [
"zh"
]
}
}