{
    "name": "jspdf-md-renderer",
    "version": "4.1.0",
    "description": "A jsPDF utility to render Markdown directly into formatted PDFs with custom designs.",
    "main": "dist/index.js",
    "module": "dist/index.mjs",
    "types": "dist/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.mjs",
            "require": "./dist/index.js"
        },
        "./types": "./dist/types/index.d.ts"
    },
    "files": [
        "dist",
        "types",
        "LICENSE",
        "README.md"
    ],
    "scripts": {
        "dev": "npm run format && npm run lint:fix && npm run build",
        "build": "tsdown",
        "lint": "eslint src/**",
        "lint:fix": "eslint src/** --fix",
        "format": "prettier --write .",
        "test": "echo \"Error: no test specified\" && exit 1",
        "watch": "tsdown --watch"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/JeelGajera/jspdf-md-renderer.git"
    },
    "keywords": [
        "jspdf",
        "markdown",
        "pdf",
        "renderer"
    ],
    "author": {
        "name": "Jeel Gajera",
        "url": "https://github.com/JeelGajera"
    },
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/JeelGajera/jspdf-md-renderer/issues"
    },
    "homepage": "https://jeelgajera.github.io/jspdf-md-renderer/",
    "dependencies": {
        "jspdf": "^4.2.1",
        "jspdf-autotable": "^5.0.7",
        "marked": "^18.0.2"
    },
    "devDependencies": {
        "@eslint/js": "^10.0.1",
        "@types/node": "^25.6.0",
        "@typescript-eslint/eslint-plugin": "^8.58.2",
        "@typescript-eslint/parser": "^8.58.2",
        "eslint": "^10.2.1",
        "eslint-config-prettier": "^10.1.8",
        "eslint-plugin-prettier": "^5.5.5",
        "globals": "^17.5.0",
        "prettier": "^3.8.3",
        "typescript": "^6.0.3",
        "typescript-eslint": "^8.58.2",
        "tsdown": "^0.22.0"
    },
    "unpkg": "dist/index.umd.js",
    "jsdelivr": "dist/index.umd.js"
}
