serve-marked
Version:
Serve markdown file as index.html
31 lines (30 loc) • 706 B
JSON
{
"name": "serve-marked",
"version": "5.0.0",
"description": "Serve markdown file as index.html",
"repository": "amio/serve-marked",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Amio <amio.cn@gmail.com>",
"license": "ISC",
"scripts": {
"build": "esbuild --bundle src/index.ts --minify --loader:.css=text --outdir=dist --platform=node --external:marked",
"prepack": "npm run build"
},
"dependencies": {
"insane": "^2.6.2",
"marked": "^12.0.1"
},
"keywords": [
"serve",
"markdown",
"single",
"index",
"html"
],
"devDependencies": {
"@types/node": "^18.19.26",
"esbuild": "^0.20.2",
"typescript": "^5.4.2"
}
}