-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
80 lines (80 loc) · 2.07 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "scriptor",
"description": "A minimal Ghost blogging theme for writers",
"demo": "https://scriptor.justgoodthemes.com/",
"version": "2.1.1",
"engines": {
"ghost": ">=5.0.0"
},
"license": "MIT",
"screenshots": {
"desktop": "assets/screenshot-desktop.jpg",
"mobile": "assets/screenshot-mobile.jpg"
},
"author": {
"name": "Just Good Themes",
"email": "[email protected]",
"url": "https://justgoodthemes.com"
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"repository": {
"type": "git",
"url": "https://github.com/JustGoodThemes/Scriptor-Ghost-Theme.git"
},
"config": {
"posts_per_page": 6,
"card_assets": {
"exclude": [
"blockquote",
"bookmark",
"gallery"
]
},
"image_sizes": {
"xs": {
"width": 120
},
"s": {
"width": 400
},
"m": {
"width": 600
},
"l": {
"width": 800
},
"xl": {
"width": 1200
}
},
"custom": {
"instagram_profile": {
"type": "text",
"description": "URL of your personal Instagram Profile"
},
"bluesky_profile": {
"type": "text",
"description": "URL of your personal Bluesky Profile"
},
"linkedin_profile": {
"type": "text",
"description": "URL of your personal LinkedIn Profile"
},
"enable_disqus": {
"type": "boolean",
"default": false,
"group": "post"
},
"disqus_shortname": {
"type": "text",
"default": "",
"group": "post",
"visibility": "enable_disqus:true"
}
}
}
}