{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@logue/markdown-wasm",
  "type": "module",
  "version": "1.6.2",
  "license": "MIT",
  "description": "Markdown parser and html generator implemented in WebAssembly",
  "homepage": "https://github.com/logue/markdown-wasm",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/logue/markdown-wasm.git"
  },
  "author": {
    "name": "Logue",
    "email": "logue@hotmail.co.jp",
    "url": "https://logue.dev"
  },
  "contributors": [
    {
      "name": "rsms",
      "url": "https://rsms.me/"
    }
  ],
  "main": "dist/markdown.umd.js",
  "module": "dist/markdown.es.js",
  "unpkg": "dist/markdown.iife.js",
  "types": "markdown.d.ts",
  "exports": {
    ".": {
      "types": "./markdown.d.ts",
      "import": "./dist/markdown.es.js",
      "require": "./dist/markdown.cjs.js"
    },
    "./umd": "./dist/markdown.umd.js",
    "./iife": "./dist/markdown.iife.js"
  },
  "files": [
    "src/markdown.wasm",
    "src/markdown.js",
    "src/markdown.d.ts",
    "src/index.js",
    "src/cli.js",
    "bin",
    "dist",
    "markdown.d.ts",
    "README.md",
    "LICENSE"
  ],
  "bin": {
    "md2html": "./bin/md2html.js"
  },
  "engines": {
    "node": ">=24"
  },
  "packageManager": "pnpm@11.0.9",
  "scripts": {
    "dev": "vite",
    "clean": "rimraf node_modules/.vite",
    "build": "run-s build-wasm build-only",
    "build:clean": "rimraf dist",
    "build-wasm": "cd src && ./build",
    "build-only": "vite build",
    "build-docs": "vite build --mode=docs",
    "benchmark": "pnpm --filter markdown-wasm-benchmarks bench",
    "benchmark:graph": "pnpm --filter markdown-wasm-benchmarks graph",
    "lint": "eslint . --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint && prettier . --write",
    "test": "vitest --root src",
    "test:spec": "node test/spec/spec.js",
    "test:example": "node example/example.js",
    "prepare": "husky",
    "version": "auto-changelog -p && git add CHANGELOG.md"
  },
  "dependencies": {
    "commander": "^14.0.3"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@rollup/pluginutils": "^5.3.0",
    "@types/emscripten": "^1.41.5",
    "@types/node": "^25.6.2",
    "commonmark-spec": "^0.31.2",
    "esbuild": "^0.28.0",
    "eslint": "^10.3.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-custom-alias": "^1.3.2",
    "eslint-plugin-import-x": "^4.16.2",
    "eslint-plugin-jsdoc": "^62.9.0",
    "globals": "^17.6.0",
    "husky": "^9.1.7",
    "lint-staged": "^17.0.4",
    "npm-run-all2": "^8.0.4",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "vite": "^8.0.11",
    "vite-plugin-banner": "^0.8.1",
    "vite-plugin-checker": "^0.13.0",
    "vite-plugin-static-copy": "^4.1.0",
    "vite-plugin-wasm": "^3.6.0",
    "vitest": "^4.1.5"
  },
  "preferUnplugged": [
    "markdown-wasm"
  ],
  "lint-staged": {
    "*.{js,ts,json,htm,html}": "eslint --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint",
    "*": "prettier -w -u"
  },
  "resolutions": {
    "form-data": ">=3.0.4",
    "json5": ">=2.2.3",
    "yaml": ">=2.3.2",
    "rollup": ">=4.60.2"
  }
}
