{
  "name": "recma-mdx-interpolate",
  "version": "1.1.8",
  "description": "Recma plugin to enable interpolation of identifiers wrapped in curly braces within the `alt`, `src`, `href`, and `title` attributes of markdown link and image syntax in MDX",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "rimraf dist && tsc --build tsconfig.build.json && type-coverage",
    "format": "npm run prettier && npm run lint",
    "prettier": "prettier --write .",
    "lint": "eslint .",
    "test": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.config.cjs",
    "test:watch": "npm run test -- --watch",
    "test:main": "npm run test:watch -- main.spec.ts",
    "test:jsx": "npm run test:watch -- main.jsx.spec.ts",
    "test:integration": "npm run test:watch -- main.integration.spec.ts",
    "test:reference": "npm run test:watch -- main.reference.spec.ts",
    "test:code": "npm run test -- code.spec.ts",
    "test:codx": "npm run test -- code.jsx.spec.ts",
    "test:codi": "npm run test -- code.integration.spec.ts",
    "test-coverage": "npm run test -- --coverage",
    "prepack": "npm run build",
    "prepublishOnly": "npm run format && npm run test-coverage"
  },
  "files": [
    "dist/",
    "LICENSE",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ipikuka/recma-mdx-interpolate.git"
  },
  "keywords": [
    "unified",
    "estree",
    "esast",
    "mdx",
    "mdxjs",
    "plugin",
    "recma",
    "recma plugin",
    "recma mdx",
    "interpolate identifiers",
    "mdx interpolate",
    "jsx interpolate",
    "recma mdx interpolate"
  ],
  "author": "ipikuka <talatkuyuk@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/ipikuka/recma-mdx-interpolate#readme",
  "bugs": {
    "url": "https://github.com/ipikuka/recma-mdx-interpolate/issues"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@mdx-js/mdx": "^3.1.1",
    "@types/dedent": "^0.7.2",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.12.4",
    "@types/parse-srcset": "^1.0.0",
    "@types/react-dom": "^18.3.7",
    "dedent": "^1.7.2",
    "eslint": "^10.4.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-jest": "^29.15.2",
    "eslint-plugin-prettier": "^5.5.6",
    "globals": "^17.6.0",
    "jest": "^30.4.2",
    "mdast-util-from-markdown": "^2.0.3",
    "mdast-util-mdx": "^3.0.0",
    "micromark-extension-mdxjs": "^3.0.0",
    "next-mdx-remote-client": "^1.1.7",
    "prettier": "^3.8.3",
    "react-dom": "^18.3.1",
    "rehype-highlight": "^7.0.2",
    "rehype-raw": "^7.0.0",
    "rimraf": "^6.1.3",
    "ts-jest": "^29.4.11",
    "type-coverage": "^2.29.7",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.60.0",
    "unified": "^11.0.5",
    "unified-log-tree": "^1.1.6",
    "unist-util-remove-position": "^5.0.0"
  },
  "dependencies": {
    "@types/estree": "^1.0.9",
    "@types/estree-jsx": "^1.0.5",
    "estree-util-visit": "^2.0.0"
  },
  "peerDependencies": {
    "unified": "^11"
  },
  "sideEffects": false,
  "typeCoverage": {
    "atLeast": 100,
    "detail": true,
    "ignoreAsAssertion": true,
    "strict": true
  }
}
