{
  "name": "mdx-bundler",
  "version": "9.2.1",
  "description": "Compile and bundle your MDX files and their dependencies. FAST.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "keywords": [
    "mdx",
    "bundler",
    "mdx-bundler",
    "esbuild"
  ],
  "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
  "license": "MIT",
  "engines": {
    "node": ">=14",
    "npm": ">=6"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/kentcdodds/mdx-bundler"
  },
  "bugs": {
    "url": "https://github.com/kentcdodds/mdx-bundler/issues"
  },
  "homepage": "https://github.com/kentcdodds/mdx-bundler#readme",
  "files": [
    "dist",
    "client"
  ],
  "scripts": {
    "build": "kcd-scripts build",
    "postbuild": "node ./other/cjs-ify.js",
    "lint": "kcd-scripts lint",
    "setup": "npm install && npm run validate -s",
    "test": "c8 -r text -r lcov uvu -i setup-tests.js src/__tests__",
    "typecheck": "kcd-scripts typecheck",
    "validate": "kcd-scripts validate"
  },
  "dependencies": {
    "@babel/runtime": "^7.16.3",
    "@esbuild-plugins/node-resolve": "^0.1.4",
    "@fal-works/esbuild-plugin-global-externals": "^2.1.2",
    "@mdx-js/esbuild": "^2.0.0",
    "gray-matter": "^4.0.3",
    "remark-frontmatter": "^4.0.1",
    "remark-mdx-frontmatter": "^1.1.1",
    "uuid": "^8.3.2",
    "vfile": "^5.3.2"
  },
  "peerDependencies": {
    "esbuild": "0.*"
  },
  "devDependencies": {
    "@testing-library/react": "^13.0.0",
    "@types/jsdom": "^16.2.14",
    "@types/mdx": "^2.0.1",
    "@types/react": "^17.0.34",
    "@types/react-dom": "^17.0.11",
    "@types/uuid": "^8.3.4",
    "babel-eslint": "^10.1.0",
    "c8": "^7.10.0",
    "cross-env": "^7.0.3",
    "esbuild": "^0.14.29",
    "jsdom": "^19.0.0",
    "kcd-scripts": "^11.2.2",
    "left-pad": "^1.3.0",
    "mdx-test-data": "^1.0.1",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "remark-mdx-images": "^1.0.3",
    "typescript": "^4.4.3",
    "uvu": "^0.5.2"
  },
  "eslintConfig": {
    "extends": "./node_modules/kcd-scripts/eslint.js",
    "rules": {
      "import/extensions": "off",
      "@typescript-eslint/no-unsafe-assignment": "off",
      "max-lines-per-function": "off"
    }
  },
  "eslintIgnore": [
    "node_modules",
    "coverage",
    "dist",
    "*.d.ts"
  ]
}
