@muxik/md-viewer
Version:
A CLI tool for rendering Markdown files with syntax highlighting and pagination, optimized for AI output content display
69 lines (68 loc) • 1.58 kB
JSON
{
"name": "@muxik/md-viewer",
"version": "1.0.2",
"description": "A CLI tool for rendering Markdown files with syntax highlighting and pagination, optimized for AI output content display",
"main": "dist/index.js",
"bin": {
"mdview": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "jest",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"markdown",
"cli",
"terminal",
"viewer",
"syntax-highlighting",
"ai",
"terminal-markdown",
"markdown-viewer",
"github-style",
"one-dark",
"pagination"
],
"author": {
"name": "muxik",
"email": "muxikf4@gmail.com",
"url": "https://github.com/muxik"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/muxik/md-viewer.git"
},
"bugs": {
"url": "https://github.com/muxik/md-viewer/issues"
},
"homepage": "https://github.com/muxik/md-viewer#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.1",
"highlight.js": "^11.9.0",
"marked": "^4.3.0",
"node-emoji": "^1.11.0",
"cli-table3": "^0.6.3"
},
"devDependencies": {
"@types/node": "^18.19.0",
"@types/marked": "^4.0.8",
"typescript": "^4.9.5",
"jest": "^29.7.0",
"@types/jest": "^29.5.5"
}
}