The documentation here shows a package.json
that comes with a theme can have engines
option:
{
"name": "your-theme-name",
"description": "A brief explanation of your theme",
"version": "0.5.0",
"engines": {
"ghost-api": "v2"
},
I’m wondering what’s it for? At first I thought I could define engines for the site app, but it seems that site app always uses express-handlebars. So does it simply control the API version for the server the theme is activated on?