2019-04-29 19:46:11 +03:00
|
|
|
{
|
2020-09-24 05:14:38 +03:00
|
|
|
"name": "ruby",
|
2020-09-30 10:29:12 +03:00
|
|
|
"description": "A Ghost theme",
|
2020-10-19 04:07:54 +03:00
|
|
|
"version": "1.0.0",
|
2020-09-24 05:14:38 +03:00
|
|
|
"engines": {
|
2021-03-04 05:16:27 +02:00
|
|
|
"ghost": ">=4.0.0",
|
|
|
|
"ghost-api": "v4"
|
2020-09-24 05:14:38 +03:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"author": {
|
|
|
|
"name": "Ghost Foundation",
|
|
|
|
"email": "hello@ghost.org",
|
|
|
|
"url": "https://ghost.org"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"ghost",
|
|
|
|
"theme",
|
|
|
|
"ghost-theme"
|
|
|
|
],
|
|
|
|
"config": {
|
|
|
|
"posts_per_page": 9,
|
|
|
|
"image_sizes": {
|
|
|
|
"xs": {
|
|
|
|
"width": 150
|
|
|
|
},
|
|
|
|
"s": {
|
|
|
|
"width": 400
|
|
|
|
},
|
|
|
|
"m": {
|
|
|
|
"width": 750
|
|
|
|
},
|
|
|
|
"l": {
|
|
|
|
"width": 960
|
|
|
|
},
|
|
|
|
"xl": {
|
|
|
|
"width": 1140
|
|
|
|
},
|
|
|
|
"xxl": {
|
|
|
|
"width": 1920
|
|
|
|
}
|
2021-11-05 10:21:16 +02:00
|
|
|
},
|
|
|
|
"custom": {
|
|
|
|
"title_font": {
|
|
|
|
"type": "select",
|
|
|
|
"options": ["Modern sans-serif", "Elegant serif"],
|
|
|
|
"default": "Modern sans-serif"
|
|
|
|
},
|
|
|
|
"body_font": {
|
|
|
|
"type": "select",
|
|
|
|
"options": ["Modern sans-serif", "Elegant serif"],
|
|
|
|
"default": "Modern sans-serif"
|
|
|
|
},
|
|
|
|
"show_sidebar_on_homepage": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"group": "homepage"
|
|
|
|
},
|
|
|
|
"show_related_posts": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"group": "post"
|
|
|
|
},
|
|
|
|
"show_sidebar_on_post": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"group": "post"
|
|
|
|
},
|
|
|
|
"show_share_links": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"group": "post"
|
|
|
|
},
|
|
|
|
"show_author": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"group": "post"
|
|
|
|
}
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"dev": "gulp",
|
|
|
|
"test": "gscan .",
|
2021-01-11 05:31:12 +02:00
|
|
|
"test:ci": "gscan --fatal --verbose .",
|
2020-09-30 10:08:26 +03:00
|
|
|
"lint": "gulp lint",
|
|
|
|
"zip": "gulp zip"
|
2020-09-24 05:14:38 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-28 14:16:08 +03:00
|
|
|
"autoprefixer": "10.4.0",
|
2021-05-20 05:56:45 +03:00
|
|
|
"beeper": "2.1.0",
|
2021-11-16 20:33:25 +02:00
|
|
|
"cssnano": "5.0.11",
|
2021-11-19 01:56:37 +02:00
|
|
|
"gscan": "4.11.0",
|
2020-09-24 05:14:38 +03:00
|
|
|
"gulp": "4.0.2",
|
|
|
|
"gulp-concat": "2.6.1",
|
|
|
|
"gulp-livereload": "4.0.2",
|
2021-08-30 04:43:02 +03:00
|
|
|
"gulp-postcss": "9.0.1",
|
2021-01-11 05:05:45 +02:00
|
|
|
"gulp-stylelint": "13.0.0",
|
2020-09-24 05:14:38 +03:00
|
|
|
"gulp-uglify": "3.0.2",
|
2021-03-10 10:25:03 +02:00
|
|
|
"gulp-zip": "5.1.0",
|
2021-10-21 16:58:35 +03:00
|
|
|
"postcss": "8.3.11",
|
2020-09-24 05:14:38 +03:00
|
|
|
"postcss-easy-import": "3.0.0",
|
|
|
|
"pump": "3.0.0",
|
2021-11-15 04:31:46 +02:00
|
|
|
"stylelint": "14.1.0",
|
2021-11-15 06:42:50 +02:00
|
|
|
"stylelint-config-standard": "24.0.0",
|
2021-10-21 23:00:44 +03:00
|
|
|
"stylelint-order": "5.0.0"
|
2019-04-29 19:46:11 +03:00
|
|
|
}
|
|
|
|
}
|