{
  "name": "marked-hook-frontmatter",
  "description": "A sequential hook for marked to support frontmatter",
  "version": "1.4.5",
  "publishConfig": {
    "access": "public"
  },
  "author": "Beni Arisandi (https://stilearning.com)",
  "repository": "https://github.com/bent10/marked-extensions",
  "homepage": "https://github.com/bent10/marked-extensions/tree/main/packages/hook-frontmatter",
  "license": "MIT",
  "keywords": [
    "marked",
    "marked-extension",
    "marked-hooks",
    "frontmatter",
    "yaml",
    "yml",
    "toml",
    "markdown",
    "stilearning-marked-extensions"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "browser": "./dist/index.umd.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "changelog.md",
    "readme.md"
  ],
  "scripts": {
    "start": "vite",
    "dev": "vite build --watch",
    "build": "vite build && npm run types",
    "test": "vitest",
    "coverage": "vitest run --coverage",
    "types": "tsc -d --emitDeclarationOnly --outDir ./dist",
    "lint": "tsc --noEmit && eslint . --cache --cache-location ../../node_modules/.eslint",
    "format": "prettier . --write --cache-location ../../node_modules/.prettier --ignore-path ../../.prettierignore"
  },
  "dependencies": {
    "@types/js-yaml": "^4.0.9",
    "js-yaml": "^4.1.0",
    "moo": "^0.5.2"
  },
  "peerDependencies": {
    "marked": ">=7.0.0"
  },
  "optionalDependencies": {
    "marked-sequential-hooks": "1.2.2"
  }
}
