solo/package.json
m_assaleh 6bc8c8092c New update: 1.0.1
* Updated the theme’s description
* Added more custom settings
1) text_color: Option to choose the website’s font color
2) link_of_lottie_json_file: Option to upload a Lottie file as an animated logo
3) show_site_title: Option to show the website’s title beside the logo
4) show_description: Option to show the website’s description beside the logo
5) show_search_icon: Option to hide the search icon
6) flip_columns: Option to flip the main columns in the side-by-side layout
* Added the meta tag theme-color and set its value to match the accent color
* General improvements
2023-01-22 02:24:02 +01:00

132 lines
3.7 KiB
JSON

{
"name": "solo",
"description": "A clean, minimal personal Theme for the Ghost publishing platform",
"version": "1.0.1",
"private": true,
"engines": {
"ghost": ">=5.0.0"
},
"license": "MIT",
"author": {
"name": "Ghost Foundation",
"email": "hello@ghost.org",
"url": "https://ghost.org"
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"docs": "https://solo.ghost.io/about/",
"config": {
"posts_per_page": 6,
"image_sizes": {
"xs": {
"width": 150
},
"s": {
"width": 300
},
"m": {
"width": 720
},
"l": {
"width": 960
},
"xl": {
"width": 1200
},
"xxl": {
"width": 2000
}
},
"card_assets": true,
"custom": {
"background_color": {
"type": "color",
"default": "#ffffff"
},
"text_color": {
"type": "color",
"default": "#000000"
},
"link_of_lottie_json_file": {
"type": "text",
"default": ""
},
"show_site_title": {
"type": "boolean",
"default": false
},
"show_site_description": {
"type": "boolean",
"default": false
},
"navigation_layout": {
"type": "select",
"options": ["Logo on the left", "Logo in the middle", "Stacked"],
"default": "Logo on the left"
},
"typography": {
"type": "select",
"options": ["Modern sans-serif", "Elegant serif", "Consistent mono"],
"default": "Modern sans-serif"
},
"footer_text": {
"type": "text"
},
"header_section_layout": {
"type": "select",
"options": ["Side by side", "Large background", "Typographic profile"],
"default": "Large background",
"group": "homepage"
},
"primary_header": {
"type": "text",
"default": "Welcome to my site",
"group": "homepage"
},
"secondary_header": {
"type": "text",
"default": "Subscribe below to receive my latest posts directly in your inbox",
"group": "homepage"
},
"post_feed_layout": {
"type": "select",
"options": ["Classic", "Typographic", "Parallax"],
"default": "Classic",
"group": "homepage"
},
"show_search_icon": {
"type": "boolean",
"default": true
},
"flip_columns": {
"type": "boolean",
"default": false,
"group": "homepage"
}
}
},
"scripts": {
"dev": "gulp",
"test": "gscan .",
"zip": "gulp zip"
},
"devDependencies": {
"@tryghost/shared-theme-assets": "2.0.1",
"autoprefixer": "10.4.13",
"beeper": "2.1.0",
"cssnano": "5.1.14",
"gscan": "4.36.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.21",
"postcss-easy-import": "4.0.0",
"pump": "3.0.0"
}
}