remark-blockquote-alerts
Version:
A remark plugin to add custom classes to blockquotes with titles like 'Note' and 'Warning,' highlighting important information in markdown content.
65 lines (64 loc) • 1.69 kB
JSON
{
"name": "remark-blockquote-alerts",
"version": "0.0.8",
"description": "A remark plugin to add custom classes to blockquotes with titles like 'Note' and 'Warning,' highlighting important information in markdown content.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nylonbricks/remark-blockquote-alerts.git"
},
"keywords": [
"gatsbyjs",
"remark",
"markdown",
"plugin",
"blockquote",
"highlight",
"remark-plugin",
"markdown-styling",
"custom-classes",
"content-highlighting"
],
"bugs": "https://github.com/nylon-bricks/remark-blockquote-alerts/issues",
"author": "Hak Lee <hi@haklee.me> (https://www.haklee.me)",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"default": "./lib/index.mjs",
"types": "./lib/index.d.ts"
},
"./styles/*.css": {
"import": "./styles/*.css",
"require": "./styles/*.css"
}
},
"scripts": {
"clean": "rm -rf lib",
"build": "rollup -c",
"test": "node ./test/index.mjs"
},
"dependencies": {
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^15.3.1",
"@types/mdast": "^4.0.4",
"@types/unist": "^3.0.3",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"rollup": "^4.44.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.8.3"
},
"files": [
"lib",
"styles"
]
}