carta/packages/plugin-tikz/package.json
BearToCode 342c8d24d0 feat: use unified+rehype for parsing markdown
`marked` has been replaced with a more modern setup involving Unified JS, Rehype and various
plugins.

BREAKING CHANGE: Replaced `marked` with `unified` and `rehype`
2024-04-12 08:24:46 +02:00

54 lines
970 B
JSON

{
"name": "@cartamd/plugin-tikz",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BearToCode/carta.git"
},
"exports": {
".": {
"import": "./dist/index.js"
},
"./fonts.css": "./dist/fonts.css"
},
"scripts": {
"build": "vite build"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/md5": "^2.3.2",
"carta-md": "workspace:*",
"md5": "^2.3.0",
"typescript": "^5.0.4",
"unified": "^11.0.4",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3",
"vite-raw-plugin": "^1.0.2"
},
"peerDependencies": {
"carta-md": "^4.0.0"
},
"files": [
"dist"
],
"version": "3.0.0",
"keywords": [
"carta",
"markdown",
"editor",
"marked",
"text editor",
"marked editor",
"slash",
"syntax highlighting",
"emoji",
"katex"
],
"dependencies": {
"hast-util-from-dom": "^5.0.0",
"unist-util-visit": "^5.0.0"
}
}