-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.21 KB
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
{
"name": "gitbook-plugin-donate",
"version": "1.0.2",
"description": "Gitbook 捐赠打赏按钮插件",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/willin/gitbook-plugin-donate.git"
},
"keywords": ["gitbook", "plugin", "donate", "alipay", "wechat"],
"author": "Willin Wang",
"license": "MIT",
"bugs": {
"url": "https://github.com/willin/gitbook-plugin-donate/issues"
},
"homepage": "https://github.com/willin/gitbook-plugin-donate#readme",
"engines": {
"gitbook": "*"
},
"gitbook": {
"properties": {
"title": {
"type": "string",
"title": "Text above donate button",
"required": false,
"default": ""
},
"button": {
"type": "string",
"title": "Button Text",
"required": true,
"default": "Donate"
},
"wechat": {
"type": "string",
"title": "Wechat QR URL",
"default": ""
},
"alipay": {
"type": "string",
"title": "Alipay QR URL",
"default": ""
},
"wechatText": {
"type": "string",
"title": "Wechat QR text",
"default": "微信打赏"
},
"alipayText": {
"type": "string",
"title": "Alipay QR Text",
"default": "支付宝打赏"
}
}
}
}