markdown-it-regex
Version:
Plugin for markdown-it, replaces strings that match a regular expression pattern.
35 lines (34 loc) • 977 B
JSON
{
"name": "markdown-it-regex",
"version": "0.2.2",
"description": "Plugin for markdown-it, replaces strings that match a regular expression pattern.",
"repository": "git@github.com:tylingsoft/markdown-it-regex.git",
"author": "Tyler Liu <tyler4long@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.5",
"markdown-it": "^14.1.0",
"markdown-it-regex": "^0.2.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"yarn-upgrade-all": "^0.7.4"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"prepublishOnly": "tsup src/index.ts --format cjs,esm --dts --clean",
"postpublish": "rm -rf dist",
"test": "tsx test/index.ts"
},
"files": ["dist"]
}