remark-code-title
Version:
remark plugin to add titles to code blocks
51 lines • 1.2 kB
JSON
{
"name": "remark-code-title",
"version": "0.2.5",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/kevinzunigacuellar/remark-code-title"
},
"bugs": {
"url": "https://github.com/kevinzunigacuellar/remark-code-title/issues"
},
"homepage": "https://github.com/kevinzunigacuellar/remark-code-title#README",
"description": "remark plugin to add titles to code blocks",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"CHANGELOG.md"
],
"author": {
"name": "Kevin Zuniga Cuellar",
"url": "https://twitter.com/kevinzunigacuel"
},
"keywords": [
"remark-plugin",
"remark",
"mdast"
],
"license": "MIT",
"devDependencies": {
"@types/mdast": "^3.0.10",
"remark": "^14.0.2",
"tsup": "^6.5.0",
"typescript": "^4.9.3",
"unified": "^10.1.2",
"vite": "^3.2.4",
"vitest": "^0.25.3"
},
"dependencies": {
"unist-util-visit": "^4.1.1"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "vitest",
"test": "vitest run"
}
}