97 lines
2.9 KiB
JSON
97 lines
2.9 KiB
JSON
{
|
|
"name": "zenless-column-flow",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Zenless Column Flow Ghost theme for editorial three-column blogs.",
|
|
"keywords": [
|
|
"ghost-theme",
|
|
"ghost",
|
|
"theme"
|
|
],
|
|
"author": {
|
|
"name": "zenn",
|
|
"email": "zenn.message@gmail.com"
|
|
},
|
|
"config": {
|
|
"posts_per_page": 10,
|
|
"card_assets": true,
|
|
"image_sizes": {
|
|
"xxs": {
|
|
"width": 30
|
|
},
|
|
"xs": {
|
|
"width": 100
|
|
},
|
|
"s": {
|
|
"width": 300
|
|
},
|
|
"m": {
|
|
"width": 600
|
|
},
|
|
"l": {
|
|
"width": 1000
|
|
},
|
|
"xl": {
|
|
"width": 2000
|
|
}
|
|
},
|
|
"custom": {
|
|
"footer_primary_link": {
|
|
"type": "text",
|
|
"default": "Portal"
|
|
},
|
|
"footer_primary_url": {
|
|
"type": "text",
|
|
"default": "/"
|
|
},
|
|
"footer_secondary_link": {
|
|
"type": "text",
|
|
"default": "Docs"
|
|
},
|
|
"footer_secondary_url": {
|
|
"type": "text",
|
|
"default": "/"
|
|
},
|
|
"footer_tertiary_link": {
|
|
"type": "text",
|
|
"default": "Get theme"
|
|
},
|
|
"footer_tertiary_url": {
|
|
"type": "text",
|
|
"default": "/"
|
|
},
|
|
"footer_quaternary_link": {
|
|
"type": "text",
|
|
"default": "Changelog"
|
|
},
|
|
"footer_quaternary_url": {
|
|
"type": "text",
|
|
"default": "/"
|
|
},
|
|
"show_admin_link": {
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build:alpine": "cp ./node_modules/alpinejs/dist/cdn.min.js ./assets/built/alpine.js",
|
|
"build:tailwind": "tailwindcss -c ./tailwind.config.js -i ./assets/styles/tailwind.css -o ./assets/built/tailwind.css --minify",
|
|
"dev": "npm run dev:ghost:start",
|
|
"dev:prepare": "npm run build:alpine && npm run build:tailwind && npm run dev:sync",
|
|
"dev:watch": "node ./scripts/dev-watch.js",
|
|
"dev:sync": "sh ./scripts/sync-theme.sh",
|
|
"dev:seed": "node ./scripts/build-sample-content.js",
|
|
"dev:seed:zip": "npm run dev:seed && cd seed && zip -q -r zcf-sample-content.ghost.zip zcf-sample-content.ghost.json",
|
|
"dev:ghost:start": "npm run dev:prepare && docker compose up -d && printf '\\nGhost local: http://localhost:2368\\nGhost admin: http://localhost:2368/ghost\\nMailpit UI: http://localhost:8025\\nMailpit SMTP: localhost:1025\\n\\n'",
|
|
"dev:ghost:restart": "npm run dev:prepare && docker compose restart ghost && printf '\\nGhost local: http://localhost:2368\\nGhost admin: http://localhost:2368/ghost\\nMailpit UI: http://localhost:8025\\nMailpit SMTP: localhost:1025\\n\\n'",
|
|
"dev:ghost:stop": "docker compose down",
|
|
"zip": "zip -r theme.zip . -x '*.git*' -x 'node_modules/*' -x 'theme.zip'",
|
|
"zip:version": "rm -f ZCF-v$npm_package_version.zip && git ls-files | zip -q ZCF-v$npm_package_version.zip -@"
|
|
},
|
|
"devDependencies": {
|
|
"alpinejs": "^3.14.9",
|
|
"tailwindcss": "^3.4.17"
|
|
}
|
|
}
|