first commit

This commit is contained in:
kbe
2025-08-18 15:31:01 +02:00
commit 316e12b98a
10 changed files with 788 additions and 0 deletions

17
docs/package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "hugo-wordpress-blog",
"version": "1.0.0",
"description": "Hugo static site with WordPress content",
{
"scripts": {
"fetch-data": "node scripts/fetch-wordpress.js",
"generate-content": "node scripts/generate-content.js",
"prebuild": "npm run fetch-data && npm run generate-content",
"build": "hugo --minify",
"dev": "npm run fetch-data && npm run generate-content && hugo server -D",
"clean": "rm -rf data/wordpress content/posts public"
}
"dependencies": {
"node-fetch": "^3.3.2"
}
}