{
  "name": "md-to-pdf-ts",
  "version": "1.0.1",
  "description": "CLI tool to convert Markdown files to beautifully formatted PDF documents with syntax highlighting",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "md-to-pdf": "./dist/cli.js"
  },
  "scripts": {
    "build": "bun run tsc",
    "start": "bun dist/cli.js",
    "md-to-pdf": "bun dist/cli.js",
    "dev": "bun run tsc --watch",
    "clean": "bunx rimraf dist",
    "prepublishOnly": "bun run clean && bun run build",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "test:coverage": "bun test --coverage"
  },
  "keywords": [
    "markdown",
    "pdf",
    "converter",
    "cli",
    "syntax-highlighting",
    "github-style"
  ],
  "author": "Jonas Pfalzgraf <j.pfalzgraf@leuchtturm.com>",
  "license": "MIT",
  "type": "module",
  "engines": {
    "bun": ">=1.3.0"
  },
  "files": [
    "dist/**/*"
  ],
  "dependencies": {
    "@types/node": "^24.10.2",
    "commander": "^14.0.2",
    "gray-matter": "^4.0.3",
    "highlight.js": "^11.11.1",
    "marked": "^17.0.1",
    "puppeteer": "^24.32.1",
    "twemoji-parser": "^14.0.0",
    "typescript": "^5.9.3"
  },
  "devDependencies": {
    "@types/marked": "^5.0.2"
  }
}
