package.json 1008 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "remark-math",
  3. "version": "3.0.1",
  4. "description": "remark plugin to parse and stringify math",
  5. "license": "MIT",
  6. "keywords": [
  7. "unified",
  8. "remark",
  9. "remark-plugin",
  10. "plugin",
  11. "mdast",
  12. "markdown",
  13. "math",
  14. "katex",
  15. "latex",
  16. "tex"
  17. ],
  18. "repository": "https://github.com/remarkjs/remark-math/tree/main/packages/remark-math",
  19. "bugs": "https://github.com/remarkjs/remark-math/issues",
  20. "funding": {
  21. "type": "opencollective",
  22. "url": "https://opencollective.com/unified"
  23. },
  24. "author": "Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)",
  25. "contributors": [
  26. "Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)",
  27. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  28. ],
  29. "files": [
  30. "index.js",
  31. "block.js",
  32. "inline.js",
  33. "util.js",
  34. "types/index.d.ts"
  35. ],
  36. "main": "index.js",
  37. "types": "types/index.d.ts",
  38. "scripts": {
  39. "test-types": "dtslint types"
  40. },
  41. "xo": false
  42. }