{
  "name": "md-to-quill-delta",
  "version": "2.0.0",
  "description": "Markdown to Quill Delta",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsup",
    "clean": "rm -rf dist",
    "lint": "biome check src/",
    "lint:fix": "biome check --write src/",
    "format": "biome check --write src/ test/",
    "typecheck": "tsc --noEmit",
    "check": "biome check src/ && tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "postversion": "npm run check && npm run build && git push && npm publish && npm run clean",
    "prepare": "git config core.hooksPath .githooks"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/volser/md-to-quill-delta.git"
  },
  "keywords": [
    "quill",
    "delta",
    "markdown",
    "quilljs",
    "markdown-to-delta",
    "markdown-converter"
  ],
  "author": "Sergiy VOloshyn <sergey.voloshyn@gmail.com>",
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/volser/md-to-quill-delta/issues"
  },
  "homepage": "https://github.com/volser/md-to-quill-delta#readme",
  "devDependencies": {
    "@biomejs/biome": "^2.3.14",
    "@types/node": "^20.12.12",
    "tsup": "^8.4.0",
    "typescript": "^5.4.5",
    "vitest": "^3.0.0"
  },
  "dependencies": {
    "mdast-util-from-markdown": "^2.0.0",
    "mdast-util-gfm-strikethrough": "^2.0.0",
    "mdast-util-gfm-table": "^2.0.0",
    "mdast-util-gfm-task-list-item": "^2.0.0",
    "micromark-extension-gfm-strikethrough": "^2.0.0",
    "micromark-extension-gfm-table": "^2.0.0",
    "micromark-extension-gfm-task-list-item": "^2.0.1",
    "quill-delta": "^4.2.1"
  }
}
