{
  "name": "marked-directive",
  "description": "A marked extension to support directives syntax",
  "version": "1.0.7",
  "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/directive",
  "license": "MIT",
  "keywords": [
    "marked",
    "marked-extension",
    "directive",
    "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": {
    "attributes-parser": "^2.2.3"
  },
  "devDependencies": {
    "seedrandom": "^3.0.5"
  },
  "peerDependencies": {
    "marked": ">=7.0.0"
  }
}
