package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "remark-stringify",
  3. "version": "11.0.0",
  4. "description": "remark plugin to add support for serializing markdown",
  5. "license": "MIT",
  6. "keywords": [
  7. "abstract",
  8. "ast",
  9. "compile",
  10. "markdown",
  11. "markdown",
  12. "mdast",
  13. "plugin",
  14. "remark",
  15. "remark-plugin",
  16. "serialize",
  17. "stringify",
  18. "syntax",
  19. "tree",
  20. "unified"
  21. ],
  22. "homepage": "https://remark.js.org",
  23. "repository": "https://github.com/remarkjs/remark/tree/main/packages/remark-stringify",
  24. "bugs": "https://github.com/remarkjs/remark/issues",
  25. "funding": {
  26. "type": "opencollective",
  27. "url": "https://opencollective.com/unified"
  28. },
  29. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  30. "contributors": [
  31. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  32. "Eugene Sharygin <eush77@gmail.com>"
  33. ],
  34. "sideEffects": false,
  35. "type": "module",
  36. "exports": "./index.js",
  37. "files": [
  38. "lib/",
  39. "index.d.ts",
  40. "index.js"
  41. ],
  42. "dependencies": {
  43. "@types/mdast": "^4.0.0",
  44. "mdast-util-to-markdown": "^2.0.0",
  45. "unified": "^11.0.0"
  46. },
  47. "scripts": {},
  48. "typeCoverage": {
  49. "atLeast": 100,
  50. "detail": true,
  51. "ignoreCatch": true,
  52. "strict": true
  53. },
  54. "xo": {
  55. "overrides": [
  56. {
  57. "files": [
  58. "**/*.ts"
  59. ],
  60. "rules": {
  61. "@typescript-eslint/ban-types": "off",
  62. "@typescript-eslint/consistent-type-definitions": "off"
  63. }
  64. }
  65. ],
  66. "prettier": true,
  67. "rules": {
  68. "unicorn/no-this-assignment": "off"
  69. }
  70. }
  71. }