- Remove DaisyUI dependency from package.json - Implement custom CSS components (btn, badge, navbar, menu, card, footer) - Add dark/light theme toggle with localStorage persistence - Update color scheme to dark blue palette (primary: blue, secondary: cyan, accent: electric blue) - Make blog pages full-width by removing max-width constraints - Restore sidebar navigation for clqms posts with full-width layout - Fix navbar menu alignment issues with flexbox BREAKING CHANGE: DaisyUI classes replaced with custom implementations
30 lines
816 B
JSON
30 lines
816 B
JSON
{
|
|
"name": "5panda.11ty",
|
|
"version": "1.0.0",
|
|
"description": "5Panda Portfolio, Blog & Documentation site built with 11ty and Tailwind CSS v4",
|
|
"scripts": {
|
|
"dev": "npm-run-all --parallel dev:*",
|
|
"dev:11ty": "eleventy --serve",
|
|
"dev:css": "postcss src/css/style.css -o _site/css/style.css --watch",
|
|
"build": "npm-run-all build:css build:11ty",
|
|
"build:11ty": "eleventy",
|
|
"build:css": "postcss src/css/style.css -o _site/css/style.css"
|
|
},
|
|
"keywords": [
|
|
"portfolio",
|
|
"blog",
|
|
"docs",
|
|
"11ty",
|
|
"tailwindcss"
|
|
],
|
|
"author": "5Panda",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@11ty/eleventy": "^3.1.2",
|
|
"@tailwindcss/postcss": "^4.1.18",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.5.6",
|
|
"postcss-cli": "^11.0.1",
|
|
"tailwindcss": "^4.1.18"
|
|
}
|
|
} |