{
  "name": "@muyajs/core",
  "version": "0.2.0",
  "description": "Core package for muya.",
  "author": "jocs <ransixi@gmail.com>",
  "license": "MIT",
  "keywords": [
    "markdown"
  ],
  "exports": {
    ".": {
      "import": "./lib/es/index.js",
      "require": "./lib/cjs/index.js",
      "types": "./lib/types/index.d.ts"
    },
    "./*": {
      "import": "./lib/es/*",
      "require": "./lib/cjs/*",
      "types": "./lib/types/index.d.ts"
    },
    "./lib/*": "./lib/*"
  },
  "main": "./lib/cjs/index.js",
  "module": "./lib/es/index.js",
  "types": "./lib/types/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "directories": {
    "lib": "lib"
  },
  "files": [
    "lib"
  ],
  "engines": {
    "node": ">=18.0.0",
    "npm": ">=8.0.0"
  },
  "dependencies": {
    "@floating-ui/dom": "^1.7.6",
    "@marktext/file-icons": "^1.0.4",
    "dompurify": "^3.4.5",
    "execall": "^3.0.0",
    "fast-diff": "^1.3.0",
    "fuse.js": "^7.3.0",
    "html-tags": "^5.1.0",
    "joplin-turndown-plugin-gfm": "^1.0.12",
    "katex": "0.16.47",
    "marked": "^16.4.2",
    "marked-highlight": "^2.2.4",
    "mermaid": "11.15.0",
    "ot-json1": "^1.0.2",
    "ot-text-unicode": "^4.0.0",
    "plantuml-encoder": "^1.4.0",
    "prismjs": "^1.30.0",
    "rxjs": "^7.8.2",
    "snabbdom": "^3.6.3",
    "snabbdom-to-html": "^7.1.0",
    "turndown": "^7.2.4",
    "vega": "^6.2.0",
    "vega-embed": "^7.1.0",
    "vega-lite": "^6.4.3"
  },
  "devDependencies": {
    "@types/katex": "^0.16.8",
    "@types/plantuml-encoder": "^1.4.2",
    "@types/prismjs": "^1.26.6",
    "@types/turndown": "^5.0.4",
    "@vitest/coverage-istanbul": "^4.1.6",
    "commonmark-spec": "^0.31.2",
    "happy-dom": "^15.11.7",
    "typescript": "^6.0.3",
    "vite": "^8.0.13",
    "vitest": "^4.1.6"
  },
  "scripts": {
    "lint:types": "tsc --noEmit",
    "build": "tsc && vite build",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:spec": "vitest run --config vitest.spec.config.ts",
    "test:spec:commonmark": "vitest run --config vitest.spec.config.ts test/spec/commonmark.spec.ts",
    "test:spec:gfm": "vitest run --config vitest.spec.config.ts test/spec/gfm.spec.ts",
    "coverage": "vitest run --coverage"
  }
}