package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "remark",
  3. "version": "15.0.1",
  4. "description": "markdown processor powered by plugins part of the unified collective",
  5. "license": "MIT",
  6. "keywords": [
  7. "abstract",
  8. "ast",
  9. "compile",
  10. "markdown",
  11. "mdast",
  12. "parse",
  13. "process",
  14. "remark",
  15. "serialize",
  16. "stringify",
  17. "syntax",
  18. "tree",
  19. "unified"
  20. ],
  21. "homepage": "https://remark.js.org",
  22. "repository": "https://github.com/remarkjs/remark/tree/main/packages/remark",
  23. "bugs": "https://github.com/remarkjs/remark/issues",
  24. "funding": {
  25. "type": "opencollective",
  26. "url": "https://opencollective.com/unified"
  27. },
  28. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  29. "contributors": [
  30. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  31. ],
  32. "sideEffects": false,
  33. "type": "module",
  34. "exports": "./index.js",
  35. "files": [
  36. "index.d.ts",
  37. "index.js"
  38. ],
  39. "dependencies": {
  40. "@types/mdast": "^4.0.0",
  41. "remark-parse": "^11.0.0",
  42. "remark-stringify": "^11.0.0",
  43. "unified": "^11.0.0"
  44. },
  45. "scripts": {},
  46. "typeCoverage": {
  47. "atLeast": 100,
  48. "detail": true,
  49. "ignoreCatch": true,
  50. "strict": true
  51. },
  52. "xo": {
  53. "overrides": [
  54. {
  55. "files": [
  56. "**/*.ts"
  57. ],
  58. "rules": {
  59. "@typescript-eslint/triple-slash-reference": "off"
  60. }
  61. }
  62. ],
  63. "prettier": true
  64. }
  65. }