Files
imxv__pretty-mermaid-skills/package.json
T
imxv e234ab73c2 feat: add native PNG output (#9)
Add native PNG rendering with validated sizing, CSS-variable preparation for beautiful-mermaid output, batch support, documentation, and cross-version regression coverage. Includes fixes from all CodeRabbit review rounds.
2026-08-23 00:40:04 +08:00

24 lines
555 B
JSON

{
"name": "pretty-mermaid-skill",
"version": "1.0.0",
"private": true,
"type": "module",
"bin": {
"render-mermaid": "./scripts/render.mjs",
"batch-mermaid": "./scripts/batch.mjs",
"list-mermaid-themes": "./scripts/themes.mjs"
},
"engines": {
"node": ">=16"
},
"scripts": {
"gallery": "node scripts/generate-theme-gallery.mjs",
"test": "node scripts/smoke-test.mjs",
"validate": "node scripts/validate-docs.mjs"
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"beautiful-mermaid": "^1.1.3"
}
}