forked from TryGhost/Source
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
183 lines (183 loc) · 5.21 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "ghost-source-theme",
"description": "Fork of the default theme of Ghost publishing platform, customized for sredevops.org",
"demo": "https://sredevops.org",
"version": "1.6.8",
"engines": {
"ghost": ">=5.0.0"
},
"license": "MIT",
"scripts": {
"dev": "gulp",
"test": "gscan .",
"test:dev": "npx gscan --verbose .",
"test:ci": "gscan --fatal --verbose .",
"build": "gulp build"
},
"author": {
"name": "Ghost Foundation",
"email": "[email protected]",
"url": "https://ghost.org/"
},
"gpm": {
"type": "theme",
"categories": [
"Minimal",
"Magazine"
]
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"repository": {
"type": "git",
"url": "https://github.com/sredevopsorg/ghost-source-theme"
},
"bugs": "https://github.com/sredevopsorg/ghost-source-theme/issues",
"contributors": [
"Ghost Foundation",
"SREDevOps.org"
],
"devDependencies": {
"autoprefixer": "10.4.20",
"cssnano": "7.0.5",
"gulp": "^5.0.0",
"gulp-concat": "2.6.1",
"gulp-livereload": "4.0.2",
"gulp-postcss": "10.0.0",
"gulp-uglify": "3.0.2",
"postcss": "8.4.41",
"postcss-easy-import": "4.0.0",
"pump": "3.0.0",
"tailwindcss": "^3.4.10",
"@tailwindcss/typography": "^0.5.15"
},
"browserslist": [
"defaults"
],
"config": {
"posts_per_page": 28,
"image_sizes": {
"xs": {
"width": 80
},
"s": {
"width": 320
},
"m": {
"width": 600
},
"l": {
"width": 960
},
"xl": {
"width": 1200
},
"xxl": {
"width": 2000
}
},
"card_assets": {
"exclude": [
"nft"
]
},
"custom": {
"navigation_layout": {
"type": "select",
"options": [
"Logo in the middle",
"Logo on the left",
"Stacked"
],
"default": "Logo in the middle"
},
"site_background_color": {
"type": "color",
"default": "#000000"
},
"header_and_footer_color": {
"type": "select",
"options": [
"Background color",
"Accent color"
],
"default": "Background color"
},
"header_style": {
"type": "select",
"options": [
"Landing",
"Highlight",
"Magazine",
"Search",
"Off"
],
"description": "Landing is recommended for all sites, Highlight & Magazine for those with more content",
"default": "Landing",
"group": "homepage"
},
"header_text": {
"type": "text",
"group": "homepage",
"description": "Defaults to site description when empty",
"visibility": "header_style:[Landing, Search]"
},
"background_image": {
"type": "boolean",
"default": true,
"description": "Use the publication cover set on the Brand tab as your background",
"group": "homepage",
"visibility": "header_style:[Landing, Search]"
},
"show_featured_posts": {
"type": "boolean",
"default": false,
"group": "homepage",
"visibility": "header_style:[Highlight, Magazine]"
},
"post_feed_style": {
"type": "select",
"options": [
"List",
"Grid"
],
"default": "Grid",
"group": "homepage"
},
"show_images_in_feed": {
"type": "boolean",
"default": true,
"group": "homepage",
"visibility": "post_feed_style:List"
},
"show_author": {
"type": "boolean",
"default": true,
"group": "homepage"
},
"show_publish_date": {
"type": "boolean",
"default": true,
"group": "homepage"
},
"show_publication_info_sidebar": {
"type": "boolean",
"default": false,
"group": "homepage"
},
"show_post_metadata": {
"type": "boolean",
"default": true,
"group": "post"
},
"show_related_articles": {
"type": "boolean",
"default": true,
"group": "post"
}
}
}
}