{
  "name": "@mdx-js/react",
  "version": "3.1.1",
  "description": "React context for MDX",
  "license": "MIT",
  "keywords": [
    "jsx",
    "markdown",
    "mdx",
    "react",
    "remark"
  ],
  "homepage": "https://mdxjs.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/mdx-js/mdx",
    "directory": "packages/react/"
  },
  "bugs": "https://github.com/mdx-js/mdx/issues",
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/unified"
  },
  "author": "John Otander <johnotander@gmail.com> (https://johno.com)",
  "contributors": [
    "John Otander <johnotander@gmail.com> (https://johno.com)",
    "Tim Neutkens <tim@vercel.com>",
    "Matija Marohnić <matija.marohnic@gmail.com>",
    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
    "JounQin <admin@1stg.me> (https://www.1stg.me)",
    "Christian Murphy <christian.murphy.42@gmail.com>"
  ],
  "type": "module",
  "sideEffects": false,
  "exports": "./index.js",
  "files": [
    "lib/",
    "index.d.ts.map",
    "index.d.ts",
    "index.js"
  ],
  "dependencies": {
    "@types/mdx": "^2.0.0"
  },
  "peerDependencies": {
    "@types/react": ">=16",
    "react": ">=16"
  },
  "devDependencies": {},
  "scripts": {
    "test": "npm run test-coverage",
    "test-api": "node --conditions development --loader=../../script/jsx-loader.js test/index.jsx",
    "test-coverage": "c8 --100 --reporter lcov npm run test-api"
  },
  "xo": {
    "overrides": [
      {
        "extends": "xo-react",
        "files": [
          "**/*.jsx"
        ],
        "rules": {
          "react/jsx-no-bind": "off",
          "react/react-in-jsx-scope": "off"
        }
      }
    ],
    "prettier": true,
    "rules": {
      "n/file-extension-in-import": "off"
    }
  }
}
