markdown-it-graph
Version:
A markdown-it plugin that parses custom graph syntax like ```graph bar and outputs structured graph data
56 lines (55 loc) • 1.27 kB
JSON
{
"name": "markdown-it-graph",
"version": "0.1.1",
"description": "A markdown-it plugin that parses custom graph syntax like ```graph bar and outputs structured graph data",
"repository": {
"type": "git",
"url": "https://github.com/roylory/markdown-it-graph"
},
"author": "Royce Joe",
"license": "MIT",
"keywords": [
"markdown-it",
"markdown",
"markdown-it-plugin",
"chart",
"graph",
"custom-syntax",
"bar-chart",
"line-chart"
],
"main": "dist/index.cjs.js",
"module": "index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./index.mjs",
"types": "./index.d.ts"
}
},
"files": [
"index.mjs",
"lib/",
"dist/",
"index.d.ts"
],
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"build": "rollup -c",
"prepublishOnly": "npm run lint && npm run build"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"markdown-it": "^13.0.2",
"markdown-it-testgen": "^0.1.6",
"rollup": "^4.6.1"
},
"peerDependencies": {
"markdown-it": "^14.0.0"
}
}