carta/packages/plugin-math/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

46 lines
737 B
JSON

{
"name": "@cartamd/plugin-math",
"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"
}
},
"scripts": {
"build": "tsc"
},
"devDependencies": {
"carta-md": "workspace:*",
"typescript": "^5.0.4"
},
"peerDependencies": {
"carta-md": "^4.0.0"
},
"files": [
"dist"
],
"dependencies": {
"rehype-katex": "^7.0.0",
"remark-math": "^6.0.0"
},
"version": "3.0.0",
"keywords": [
"carta",
"markdown",
"editor",
"marked",
"text editor",
"marked editor",
"slash",
"syntax highlighting",
"emoji",
"katex"
]
}