Files
indiekit-blog/package.json
svemagie 9254487c2a
All checks were successful
Build & Deploy / build-and-deploy (push) Successful in 1m21s
fix: remove duplicate OG image generation in build script
build:og was running before eleventy, then eleventy.before ran it again —
two full generation passes per build. Since eleventy.before handles OG
generation, the standalone pre-step is redundant.

Also fix build:og path: was passing .cache (parent dir) which after the
ogDir rename wrote PNGs to the wrong location. Now uses OG_CACHE_DIR env
var with .cache/og as fallback, matching eleventy.config.js behaviour.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-01 10:04:56 +02:00

56 lines
1.9 KiB
JSON

{
"name": "indiekit-eleventy-theme",
"version": "1.0.0",
"description": "Eleventy theme for Indiekit — IndieWeb-ready personal website",
"type": "module",
"scripts": {
"build:og": "node lib/og-cli.js content ${OG_CACHE_DIR:-.cache/og} 'giersig.'",
"build": "eleventy",
"dev": "eleventy --serve --watch",
"build:css": "postcss css/tailwind.css -o css/style.css",
"check:upstream-widgets": "node scripts/check-upstream-widget-drift.mjs",
"check:upstream-widgets:strict": "node scripts/check-upstream-widget-drift.mjs --strict",
"postinstall": ""
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-img": "^6.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@11ty/is-land": "^5.0.1",
"@alpinejs/collapse": "^3.15.8",
"@atproto/api": "^0.12.0",
"@chrisburnell/eleventy-cache-webmentions": "^2.2.7",
"@fontsource/inter": "^5.2.8",
"@fontsource/lora": "^5.2.8",
"@kevingimbel/eleventy-plugin-mermaid": "^3.0.1",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"@resvg/resvg-js": "^2.6.2",
"@rknightuk/eleventy-plugin-post-graph": "^1.0.8",
"@zachleat/filter-container": "^4.0.0",
"@zachleat/table-saw": "^1.0.7",
"alpinejs": "^3.15.8",
"eleventy-plugin-embed-everything": "^1.21.0",
"eleventy-plugin-footnotes": "^0.11.0",
"gray-matter": "^4.0.3",
"html-minifier-terser": "^7.0.0",
"lite-youtube-embed": "^0.3.2",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-footnote": "^4.0.0",
"pagefind": "^1.3.0",
"rss-parser": "^3.13.0",
"satori": "^0.19.2",
"unfurl.js": "^6.4.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"postcss-cli": "^11.0.0",
"posthtml": "^0.16.7",
"tailwindcss": "^3.4.0"
}
}