forked from TryGhost/Casper
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
182 lines (182 loc) · 5.26 KB
/
Copy pathpackage.json
File metadata and controls
182 lines (182 loc) · 5.26 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
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
{
"name": "bellimal",
"description": "Minimalist Ghost theme with an interactive terminal homepage. Coral on slate, Atkinson Hyperlegible Mono everywhere, projects-first content.",
"demo": "https://alessandrobelli.it",
"version": "2.0.0",
"engines": {
"ghost": ">=6.0.0"
},
"license": "MIT",
"scripts": {
"dev": "gulp",
"zip": "gulp zip",
"all": "gulp all",
"test": "gscan .",
"test:ci": "gscan --fatal --verbose .",
"pretest": "gulp build",
"preship": "yarn test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version && git push --follow-tags; else echo \"Uncomitted changes found.\" && exit 1; fi",
"build:css": "tailwindcss build assets/css/input.css -o assets/css/main.css",
"dev:css": "tailwindcss build assets/css/input.css -o assets/css/main.css --watch"
},
"author": {
"name": "Alessandro Belli",
"email": "alessandrobelli90@gmail.com",
"url": "https://alessandrobelli.it"
},
"gpm": {
"type": "theme",
"categories": [
"Minimal"
]
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"autoprefixer": "^10.4.7",
"beeper": "2.1.0",
"cssnano": "5.1.12",
"gscan": "^6.0.0",
"gulp": "4.0.2",
"gulp-concat": "2.6.1",
"gulp-livereload": "4.0.2",
"gulp-postcss": "9.0.1",
"gulp-uglify": "3.0.2",
"gulp-zip": "5.1.0",
"postcss": "8.4.*",
"postcss-color-mod-function": "3.0.3",
"postcss-easy-import": "4.0.0",
"postcss-nesting": "^12.1.5",
"pump": "3.0.0",
"tailwindcss": "^3.4.3"
},
"browserslist": [
"defaults"
],
"config": {
"posts_per_page": 25,
"image_sizes": {
"xxs": {
"width": 30
},
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1000
},
"xl": {
"width": 2000
}
},
"card_assets": true,
"custom": {
"hero_title": {
"type": "text",
"group": "homepage",
"default": "Welcome to Bellimal"
},
"hero_description": {
"type": "text",
"group": "homepage",
"description": "Homepage hero description text (HTML allowed)",
"default": "Software engineer. Writing about tech, productivity, and side projects."
},
"featured_tag": {
"type": "text",
"group": "homepage",
"description": "Optional tag slug to constrain the featured section (e.g. 'projects'). Leave empty to show any post marked as featured.",
"default": ""
},
"projects_tag": {
"type": "text",
"group": "homepage",
"description": "Tag slug used to identify project posts on the homepage (Featured + More projects bands pull from this tag; Latest writing excludes it).",
"default": "projects"
},
"cta_primary_label": {
"type": "text",
"group": "homepage",
"description": "Label for the filled (primary) CTA button on the homepage",
"default": "./projects"
},
"cta_primary_url": {
"type": "text",
"group": "homepage",
"description": "URL the primary CTA button links to (e.g. /tag/projects/)",
"default": "/tag/projects/"
},
"cta_secondary_label": {
"type": "text",
"group": "homepage",
"description": "Label for the outlined (secondary) CTA button on the homepage",
"default": "./blog"
},
"cta_secondary_url": {
"type": "text",
"group": "homepage",
"description": "URL the secondary CTA button links to",
"default": "/"
},
"sidebar_status": {
"type": "text",
"group": "sidebar",
"description": "Short status line shown below your name in the sidebar (falls back to site description)",
"default": "available for work"
},
"contact_email": {
"type": "text",
"group": "site-wide",
"description": "Contact email used by the terminal `contact` command on the homepage. Leave empty to use a generic placeholder.",
"default": ""
},
"sidebar_link1_text": {
"type": "text",
"group": "sidebar",
"description": "Text for the first sidebar link",
"default": "Home"
},
"sidebar_link1_url": {
"type": "text",
"group": "sidebar",
"description": "URL for the first sidebar link",
"default": "/"
},
"sidebar_link2_text": {
"type": "text",
"group": "sidebar",
"description": "Text for the second sidebar link",
"default": "About"
},
"sidebar_link2_url": {
"type": "text",
"group": "sidebar",
"description": "URL for the second sidebar link",
"default": "/about/"
},
"sidebar_link3_text": {
"type": "text",
"group": "sidebar",
"description": "Text for the third sidebar link",
"default": "Contact"
},
"sidebar_link3_url": {
"type": "text",
"group": "sidebar",
"description": "URL for the third sidebar link",
"default": "/contact/"
}
}
}
}