package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "rehype-katex",
  3. "version": "7.0.1",
  4. "description": "rehype plugin to transform inline and block math with KaTeX",
  5. "license": "MIT",
  6. "keywords": [
  7. "hast",
  8. "html",
  9. "katex",
  10. "latex",
  11. "markdown",
  12. "math",
  13. "mdast",
  14. "plugin",
  15. "rehype",
  16. "rehype-plugin",
  17. "remark",
  18. "tex",
  19. "unified"
  20. ],
  21. "repository": "https://github.com/remarkjs/remark-math/tree/main/packages/rehype-katex",
  22. "bugs": "https://github.com/remarkjs/remark-math/issues",
  23. "funding": {
  24. "type": "opencollective",
  25. "url": "https://opencollective.com/unified"
  26. },
  27. "author": "Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)",
  28. "contributors": [
  29. "Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)",
  30. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  31. ],
  32. "sideEffects": false,
  33. "type": "module",
  34. "exports": "./index.js",
  35. "files": [
  36. "lib/",
  37. "index.d.ts.map",
  38. "index.d.ts",
  39. "index.js"
  40. ],
  41. "dependencies": {
  42. "@types/hast": "^3.0.0",
  43. "@types/katex": "^0.16.0",
  44. "hast-util-from-html-isomorphic": "^2.0.0",
  45. "hast-util-to-text": "^4.0.0",
  46. "katex": "^0.16.0",
  47. "unist-util-visit-parents": "^6.0.0",
  48. "vfile": "^6.0.0"
  49. },
  50. "scripts": {
  51. "test-api": "node --conditions development test.js",
  52. "test": "npm run build && npm run test-api"
  53. },
  54. "xo": {
  55. "prettier": true,
  56. "rules": {
  57. "unicorn/prefer-at": "off"
  58. }
  59. }
  60. }