Init project

This commit is contained in:
Cédric OLIVIER
2026-06-04 08:30:34 +02:00
commit 1265beefb8
1625 changed files with 208085 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"name": "markdowrender",
"version": "1.0.0",
"description": "CLI Markdown to HTML converter with live reload",
"main": "index.js",
"bin": {
"md-render": "./index.js"
},
"scripts": {
"start": "node index.js"
},
"keywords": ["markdown", "html", "converter", "cli", "live-reload"],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"chokidar": "^5.0.0",
"highlight.js": "^11.11.1",
"marked": "^18.0.4",
"marked-highlight": "^2.2.4",
"minimist": "^1.2.8"
}
}