{
  "name": "next-markdown",
  "version": "1.8.0",
  "description": "Static pages generated from markdown files for your Next.js website.",
  "source": "src/index.ts",
  "main": "dist/main.js",
  "types": "dist/types.d.ts",
  "type": "module",
  "files": [
    "dist/**/*"
  ],
  "scripts": {
    "dev": "parcel watch",
    "build": "npm run clear && parcel build",
    "clear": "rm -rf .parcel-cache && rm -rf dist/",
    "test": "jest",
    "test:watch": "jest --watch",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "tslint -p tsconfig.json",
    "install:examples": "npm --prefix examples/blogging i && npm --prefix examples/dynamic-routes i && npm --prefix examples/remote-content i && npm --prefix examples/mdx i && npm --prefix examples/custom-remark-rehype-plugins i && npm --prefix examples/documentation i && npm --prefix examples/blog i",
    "prepare": "npm run build",
    "prepublishOnly": "npm run format:check && npm test && npm run lint",
    "preversion": "npm run format:check && npm test && npm run lint",
    "version": "npm run install:examples && git add .",
    "postversion": "git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/frouo/next-markdown.git"
  },
  "keywords": [
    "nextjs",
    "markdown",
    "git",
    "generator",
    "static",
    "pages"
  ],
  "author": "François Rouault <francois.rouault@cocoricostudio.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/frouo/next-markdown/issues"
  },
  "homepage": "https://github.com/frouo/next-markdown#readme",
  "devDependencies": {
    "@parcel/packager-ts": "2.4.0",
    "@parcel/transformer-typescript-types": "2.4.0",
    "@types/github-slugger": "1.3.0",
    "@types/jest": "27.4.1",
    "@types/node": "17.0.23",
    "jest": "27.5.1",
    "parcel": "2.4.0",
    "prettier": "2.5.1",
    "ts-jest": "27.1.4",
    "ts-node": "10.7.0",
    "tslint": "6.1.3",
    "tslint-config-prettier": "1.18.0",
    "typescript": "4.6.3"
  },
  "dependencies": {
    "github-slugger": "1.4.0",
    "gray-matter": "4.0.3",
    "next-mdx-remote": "4.0.2",
    "rehype-remark": "9.1.2",
    "rehype-slug": "^5.0.1",
    "rehype-stringify": "9.0.3",
    "remark-parse": "10.0.1",
    "remark-rehype": "10.1.0",
    "unified": "10.1.1",
    "unist-util-visit": "4.1.0"
  }
}
