-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "koishi-plugin-html-renderer",
"description": "使用EJS和playwright实现的Koishi平台原生HTML渲染插件",
"version": "1.0.0",
"contributors": [
"WhitePaper233 <1423634265@qq.com>"
],
"homepage": "https://github.com/WhitePaper233/koishi-plugin-html-renderer",
"repository": {
"type": "git",
"url": "git+https://github.com/WhitePaper233/koishi-plugin-html-renderer.git"
},
"koishi": {
"description": {
"en": "A service using EJS and Playwright to render html template to picture buffer",
"zh": "使用EJS和playwright实现的Koishi平台原生HTML渲染服务插件"
}
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"license": "MIT",
"keywords": [
"chatbot",
"koishi",
"plugin",
"html",
"renderer",
"ejs"
],
"peerDependencies": {
"koishi": "^4.17.9"
},
"dependencies": {
"ejs": "^3.1.9",
"playwright": "^1.40.1"
},
"devDependencies": {
"@types/ejs": "^3"
}
}