5panda.11ty/package.json
mahdahar 73f8d67ee3 feat: add TinyLink docs section and Mermaid diagram support
Wire TinyLink into Eleventy collections, homepage highlights, and project navigation so the new integration design page is discoverable.

Enable Mermaid code fence handling in markdown and client-side rendering in the base layout, and normalize the TinyLink diagram syntax for compatibility.
2026-04-07 14:18:51 +07:00

35 lines
922 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 --incremental",
"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"
},
"dependencies": {
"markdown-it": "^14.1.1",
"markdown-it-mermaid": "^0.2.5"
}
}