-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.86 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
{
"name": "gitbook-plugin-sidebar-ads",
"version": "0.0.4",
"description": "GitBook plugin for adding small ads with a carousel in the sidebar of your book",
"engines": {
"gitbook": ">=3.0.0"
},
"license": "BSD",
"repository": {
"type": "git",
"url": "https://github.com/djangogirls/gitbook-plugin-sidebar-ads.git"
},
"gitbook": {
"properties": {
"your-ad": {
"imageUrl": {
"type": "string",
"description": "URL to image displayed in the ad",
"required": true
},
"url": {
"type": "string",
"description": "Promoted URL"
},
"description": {
"type": "string",
"description": "Description next to the image"
},
"btnText": {
"type": "string",
"description": "Text for the call to action button"
}
},
"sponsor-ads": [
{
"imageUrl": {
"type": "string",
"description": "URL to image displayed in the ad",
"required": true
},
"url": {
"type": "string",
"description": "Promoted URL"
},
"description": {
"type": "string",
"description": "Description next to the image"
},
"btnText": {
"type": "string",
"description": "Text for the call to action button"
}
}
]
}
}
}