{
  "name": "nuxt-markdown-render",
  "version": "2.1.0",
  "description": "A simple, lightweight markdown-it wrapper for Nuxt written in pure typescript.",
  "keywords": [
    "nuxt",
    "nuxt-module",
    "md",
    "markdown",
    "markdown-it"
  ],
  "repository": "https://github.com/sandros94/nuxt-markdown-render",
  "license": "MIT",
  "type": "module",
  "author": {
    "name": "Sandro Circi",
    "email": "sandro.circi@digitoolmedia.com"
  },
  "build": {
    "externals": [
      "defu"
    ]
  },
  "exports": {
    ".": {
      "types": "./dist/types.d.ts",
      "import": "./dist/module.mjs",
      "require": "./dist/module.cjs"
    }
  },
  "main": "./dist/module.cjs",
  "types": "./dist/types.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "prepack": "nuxt-module-build build",
    "dev": "nuxi dev playground",
    "dev:build": "nuxi build playground",
    "dev:preview": "nuxi preview playground",
    "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
    "release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "vitest run",
    "test:watch": "vitest watch"
  },
  "dependencies": {
    "@nuxt/kit": "^3.11.1",
    "@shikijs/markdown-it": "^1.2.0",
    "@vueuse/core": "^10.9.0",
    "markdown-it": "14.0.0",
    "markdown-it-anchor": "^8.6.7",
    "markdown-it-github-alerts": "^0.3.0",
    "markdown-it-mdc": "^0.2.3"
  },
  "devDependencies": {
    "@nuxt/devtools": "latest",
    "@nuxt/eslint-config": "^0.2.0",
    "@nuxt/module-builder": "^0.5.5",
    "@nuxt/schema": "^3.11.1",
    "@nuxt/test-utils": "^3.12.0",
    "@types/markdown-it": "^14.0.1",
    "@types/node": "^20.11.30",
    "changelogen": "^0.5.5",
    "eslint": "^8.57.0",
    "nuxt": "^3.11.1",
    "vitest": "^1.4.0"
  },
  "pnpm": {
    "overrides": {
      "uc.micro": "2.0.0"
    }
  }
}