-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
176 lines (176 loc) · 5.76 KB
/
package.json
File metadata and controls
176 lines (176 loc) · 5.76 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
{
"name": "logly",
"description": "Logly is a minimalistic open-source theme designed for Ghost blogs.",
"demo": "https://github.com/frontendweb3/logly",
"version": "2.0.8",
"engines": {
"ghost": ">=6.0.0"
},
"license": "MIT",
"screenshots": {
"desktop": "assets/images/screenshot-desktop.png",
"mobile": "assets/images/screenshot-mobile.png"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch --mode development",
"preview": "vite preview",
"format": "prettier .",
"format-fix": "prettier --write .",
"test": "pnpm dlx gscan@5.2.5 . --v6",
"pretest": "npm run build",
"clean": "rm -rf dist"
},
"author": {
"name": "Rajdeep Singh",
"email": "officialrajdeepsingh@gmail.com",
"url": "https://github.com/frontendweb3"
},
"gpm": {
"type": "theme",
"categories": [
"Minimal",
"blog"
]
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"repository": {
"type": "git",
"url": "https://github.com/frontendweb3/logly.git"
},
"bugs": "https://github.com/frontendweb3/logly/issues",
"contributors": [
"https://github.com/frontendweb3/logly/graphs/contributors"
],
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^22.0.0",
"highlight.js": "^11.11.1",
"highlightjs-copy": "^1.0.6",
"highlightjs-line-numbers.js": "^2.9.1",
"prettier": "^3.7.3",
"prettier-plugin-handlebars": "^0.0.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"sharp": "^0.34.0",
"svgo": "^4.0.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"vite": "^6.2.0",
"vite-plugin-image-optimizer": "^1.1.9",
"vite-plugin-zip-pack": "^1.2.4"
},
"browserslist": [
"defaults"
],
"config": {
"card_assets": true,
"posts_per_page": 10,
"image_sizes": {
"xxs": {
"width": 30
},
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1200
},
"xl": {
"width": 2000
}
},
"custom": {
"logo_dark": {
"type": "image",
"default": "",
"description": "Logo used in dark mode"
},
"layout": {
"type": "select",
"options": [
"two_columns",
"three_columns"
],
"default": "two_columns",
"description": "Choose whether post grids render in two or three columns."
},
"card_style": {
"type": "select",
"options": [
"card-first",
"card-second",
"card-third"
],
"default": "card-first",
"description": "Choose which post card to use see on across the site"
},
"enable_breadcrumb": {
"type": "boolean",
"default": true,
"description": "Enable or disable breadcrumbs navigation in the header"
},
"font_color_for_light_mode": {
"type": "color",
"default": "#000000",
"description": "Change the font color for the whole website in light mode."
},
"font_color_for_dark_mode": {
"type": "color",
"default": "#ffffff",
"description": "Change the font color for the whole website in dark mode."
},
"background_color_for_light_mode": {
"type": "color",
"default": "#ffffff",
"description": "Change the background color for the whole website in light mode."
},
"background_color_for_dark_mode": {
"type": "color",
"default": "#000000",
"description": "Change the background color for the whole website in dark mode."
},
"copyright_enabled": {
"type": "boolean",
"default": true,
"description": "Show or hide the footer copyright text"
},
"copyright_text": {
"type": "text",
"default": "",
"description": "Optional custom copyright message; leave blank to use the default"
},
"enable_title_and_description": {
"type": "boolean",
"default": true,
"description": "Show or hide the title and description on index page"
},
"title": {
"type": "text",
"default": "Logly Editorial",
"description": "Optional custom title for the website; leave blank to use the default"
},
"description": {
"type": "text",
"default": "Exploring the intersection of modern code and premium design. A curated journal for developers who value aesthetic excellence as much as functional logic.",
"description": "Optional custom description for the website; leave blank to use the default"
}
}
},
"type": "module",
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"alpinejs": "^3.15.8",
"lucide": "^0.577.0"
}
}