{
  "name": "remark-flexible-markers",
  "version": "1.3.5",
  "description": "Remark plugin to add custom mark element with customizable properties in markdown",
  "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": "vitest run",
    "test:watch": "vitest",
    "test:file": "vitest test.plugin.spec.ts",
    "test-coverage": "vitest run --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/remark-flexible-markers.git"
  },
  "keywords": [
    "unified",
    "mdast",
    "markdown",
    "MDX",
    "remark",
    "plugin",
    "remark plugin",
    "remark marker",
    "remark markers",
    "remark flexible markers"
  ],
  "author": "ipikuka <talatkuyuk@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/ipikuka/remark-flexible-markers#readme",
  "bugs": {
    "url": "https://github.com/ipikuka/remark-flexible-markers/issues"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^24.12.4",
    "@vitest/coverage-v8": "^4.1.7",
    "@vitest/eslint-plugin": "^1.6.18",
    "dedent": "^1.7.2",
    "eslint": "^10.4.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.5",
    "globals": "^17.6.0",
    "prettier": "^3.8.3",
    "rehype-format": "^5.0.1",
    "rehype-stringify": "^10.0.1",
    "remark-gfm": "^4.0.1",
    "remark-parse": "^11.0.0",
    "remark-rehype": "^11.1.2",
    "rimraf": "^6.1.3",
    "type-coverage": "^2.29.7",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.60.0",
    "unified": "^11.0.5",
    "vfile": "^6.0.3",
    "vitest": "^4.1.7"
  },
  "dependencies": {
    "@types/mdast": "^4.0.4",
    "unist-builder": "^4.0.0",
    "unist-util-find-after": "^5.0.0",
    "unist-util-find-all-after": "^5.0.0",
    "unist-util-find-all-before": "^5.0.0",
    "unist-util-find-between": "^1.2.1",
    "unist-util-visit": "^5.1.0"
  },
  "peerDependencies": {
    "unified": "^11"
  },
  "sideEffects": false,
  "typeCoverage": {
    "atLeast": 100,
    "detail": true,
    "ignoreAsAssertion": true,
    "ignoreCatch": true,
    "strict": true
  }
}
