UNPKG

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.

62 lines (61 loc) 1.63 kB
{ "name": "remark-blockquote-alerts", "version": "0.0.7", "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": "nylon-bricks/remark-blockquote-highlights", "keywords": [ "gatsbyjs", "remark", "markdown", "plugin", "blockquote", "highlight", "remark-plugin", "markdown-styling", "custom-classes", "content-highlighting" ], "bugs": "https://github.com/nylon-bricks/remark-blockquote-highlights/issues", "author": "Hak Lee <me@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.1", "@rollup/plugin-node-resolve": "^15.3.0", "@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.1", "rollup": "^4.27.4", "rollup-plugin-typescript2": "^0.36.0", "typescript": "^5.7.2" }, "files": [ "lib", "styles" ] }