v0.1.20 태그 페이지 및 Alpine 적용

This commit is contained in:
2026-04-14 10:15:13 +09:00
parent c6901a0451
commit 892dd270bc
12 changed files with 209 additions and 39 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "ghost-theme-thred-clone",
"version": "0.1.19",
"version": "0.1.20",
"private": true,
"description": "A Ghost theme inspired by the Thred reference layout.",
"keywords": [
@@ -75,9 +75,10 @@
}
},
"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:tailwind && npm run dev:sync",
"dev:prepare": "npm run build:alpine && npm run build:tailwind && npm run dev:sync",
"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 thred-inspired-sample-content.ghost.zip thred-inspired-sample-content.ghost.json",
@@ -87,6 +88,7 @@
"zip": "zip -r theme.zip . -x '*.git*' -x 'node_modules/*' -x 'theme.zip'"
},
"devDependencies": {
"alpinejs": "^3.14.9",
"tailwindcss": "^3.4.17"
}
}