{
  "name": "hackmd-to-html-cli",
  "version": "2.0.0",
  "description": "A node.js CLI tool for converting HackMD markdown to HTML.",
  "keywords": [
    "hackmd",
    "markdown",
    "html",
    "cli",
    "converter"
  ],
  "homepage": "https://github.com/ksw2000/hackmd-to-html-cli.git",
  "repository": {
    "type": "git",
    "url": "https://github.com/ksw2000/hackmd-to-html-cli.git"
  },
  "bugs": {
    "url": "https://github.com/ksw2000/hackmd-to-html-cli/issues"
  },
  "bin": {
    "hmd2html": "dist/cli.js"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build:node": "npx tsc",
    "build:web": "npx webpack",
    "build": "npm run build:node && npm run build:web",
    "example": "npx ts-node src/cli.ts -i ./example/*",
    "example_dark": "npx ts-node src/cli.ts -i ./example/index.md -o output/index.dark.html --dark",
    "test": "npx jest",
    "lint": "npx eslint src/**/*.ts --fix"
  },
  "author": "Kashiwa",
  "license": "MIT",
  "dependencies": {
    "commander": "^11.1.0",
    "deflate-js": "^0.2.3",
    "glob": "^10.3.10",
    "markdown-it": "^14.1.0",
    "markdown-it-abbr": "^2.0.0",
    "markdown-it-anchor": "^9.2.0",
    "markdown-it-deflist": "^3.0.0",
    "markdown-it-emoji": "^3.0.0",
    "markdown-it-footnote": "^4.0.0",
    "markdown-it-imsize": "^2.0.1",
    "markdown-it-ins": "^4.0.0",
    "markdown-it-mark": "^4.0.0",
    "markdown-it-mathjax3": "4.3.1",
    "markdown-it-ruby": "^1.1.1",
    "markdown-it-sub": "^2.0.0",
    "markdown-it-sup": "^2.0.0",
    "markdown-it-table-of-contents": "^0.8.0",
    "papaparse": "^5.4.1",
    "yaml": "^2.2.1"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@types/deflate-js": "^0.2.2",
    "@types/markdown-it-emoji": "^3.0.1",
    "@types/node": "^16.18.119",
    "@types/papaparse": "^5.3.15",
    "globals": "^15.12.0",
    "ts-jest": "^29.1.0",
    "ts-loader": "^9.5.1",
    "typescript": "^5.6.3",
    "typescript-eslint": "^8.13.0",
    "webpack": "^5.96.1",
    "webpack-cli": "^5.1.4"
  }
}
