-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
145 lines (145 loc) · 3.77 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
{
"name": "fastest",
"description": "Fastest ghost cms base theme. Fastest is lite wight, modern open-source theme",
"version": "1.0.8",
"engines": {
"ghost": ">=5.0.0"
},
"license": "MIT",
"scripts": {
"gulp": "gulp main",
"start": "npx tailwindcss -i ./assets/css/dev.css -o ./assets/build/css/build.css --watch"
},
"author": {
"name": "Rajdeep Singh",
"email": "[email protected]",
"url": "https://officialrajdeepsingh.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/frontendweb3/fastest"
},
"keywords": [
"ghost",
"theme",
"blog",
"light wight",
"ghost-theme"
],
"screenshots": {
"desktop": [
"assets/light.png",
"assets/desktop.png"
],
"mobile": "assets/mobile.png"
},
"config": {
"docs": "https://officialrajdeepsingh.dev",
"posts_per_page": 5,
"card_assets": true,
"custom": {
"background_color": {
"type": "color",
"default": "#ffffff",
"description": "Change the background color of your blog."
},
"text_color": {
"type": "color",
"default": "#000000",
"description": "Change the text color of your blog."
},
"icons_text_color": {
"type": "color",
"default": "#000000",
"description": "Change the text color of your blog."
},
"text_primary_color": {
"type": "color",
"default": "#000000",
"description": "Change the primary text color of your blog and page."
},
"text_secondary_color": {
"type": "color",
"default": "#000000",
"description": "Change the primary text color of your blog."
},
"text_accent_color": {
"type": "color",
"default": "#000000",
"description": "Change the primary text color of your blog."
},
"copyright": {
"type": "text",
"default": "Copy right by frontend web.",
"description": "Add copy right message in footer."
},
"newsletter_size": {
"type": "select",
"group": "homepage",
"options": [
"sm",
"md",
"lg",
"xl"
],
"default": "lg"
},
"prismjs_code_highlight": {
"type": "select",
"group": "post",
"options": [
"Default Theme",
"Dark Theme",
"Okaidia Theme",
"Twilight Theme",
"Tomorrow Theme"
],
"default": "Default Theme"
},
"newsletter_show": {
"type": "boolean",
"default": true,
"group": "homepage",
"description": "Show the newsletter."
},
"newsletter_title": {
"type": "text",
"default": "We invest in the worlds potential.",
"group": "homepage",
"description": "title for the newsletter."
},
"newsletter_description": {
"type": "text",
"default": "We focus on markets where technology, innovation, and capital can unlock long-term value and drive economic growth.",
"group": "homepage",
"description": "description for the newsletter."
},
"newsletter_button_text": {
"type": "text",
"default": "Subscribe",
"group": "homepage",
"description": "button for the newsletter."
}
}
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.17",
"gscan": "^4.42.0",
"gulp": "4.0.2",
"gulp-concat": "^2.6.1",
"gulp-livereload": "4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1"
},
"renovate": {
"extends": [
"@tryghost:theme"
]
},
"dependencies": {
"tailwindcss-animate": "^1.0.7"
}
}