{
  "name": "@astrojs/micromark-extension-mdx-jsx",
  "version": "1.0.3",
  "description": "Less strict version of micromark-extension-mdx-jsx.",
  "license": "MIT",
  "keywords": [
    "micromark",
    "micromark-extension",
    "mdx",
    "mdxjs",
    "jsx",
    "js",
    "javascript",
    "es",
    "ecmascript",
    "markdown",
    "unified"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/withastro/micromark-extension-mdx-jsx.git"
  },
  "homepage": "https://astro.build",
  "author": "withastro",
  "contributors": [
    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  ],
  "sideEffects": false,
  "type": "module",
  "main": "index.js",
  "types": "index.d.ts",
  "files": [
    "dev/",
    "lib/",
    "index.d.ts",
    "index.js"
  ],
  "exports": {
    "development": "./dev/index.js",
    "default": "./index.js"
  },
  "dependencies": {
    "@types/acorn": "^4.0.0",
    "estree-util-is-identifier-name": "^2.0.0",
    "micromark-factory-mdx-expression": "^1.0.0",
    "micromark-factory-space": "^1.0.0",
    "micromark-util-character": "^1.0.0",
    "micromark-util-symbol": "^1.0.0",
    "micromark-util-types": "^1.0.0",
    "uvu": "^0.5.0",
    "vfile-message": "^3.0.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.22.0",
    "@types/mdast": "^3.0.0",
    "@types/tape": "^4.0.0",
    "@typescript-eslint/eslint-plugin": "^5.27.1",
    "@typescript-eslint/parser": "^5.27.1",
    "acorn": "^8.0.0",
    "acorn-jsx": "^5.0.0",
    "c8": "^7.0.0",
    "eslint": "^8.17.0",
    "mdast-zone": "^5.0.0",
    "micromark": "^3.0.0",
    "micromark-build": "^1.0.0",
    "prettier": "^2.0.0",
    "remark-cli": "^10.0.0",
    "remark-preset-wooorm": "^9.0.0",
    "rimraf": "^3.0.0",
    "tape": "^5.0.0",
    "type-coverage": "^2.0.0",
    "typescript": "^4.0.0"
  },
  "packageManager": "pnpm@7.0.1",
  "prettier": {
    "tabWidth": 2,
    "useTabs": false,
    "singleQuote": true,
    "bracketSpacing": false,
    "semi": false,
    "trailingComma": "none"
  },
  "remarkConfig": {
    "plugins": [
      "preset-wooorm",
      "./script/grammar.js"
    ]
  },
  "typeCoverage": {
    "atLeast": 100,
    "detail": true,
    "strict": true,
    "ignoreCatch": true
  },
  "scripts": {
    "build": "rimraf \"dev/**/*.d.ts\" \"script/**/*.d.ts\" \"test/**/*.d.ts\" && tsc && type-coverage && micromark-build && npm run format",
    "format": "prettier ./index.{js,d.ts} ./lib -w --loglevel warn",
    "test-api": "node --conditions development test/index.js",
    "test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov node --conditions development test/index.js",
    "test": "npm run build && npm run test-coverage"
  }
}