package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "micromark-util-combine-extensions",
  3. "version": "2.0.1",
  4. "description": "micromark utility to combine syntax or html extensions",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "util",
  9. "utility",
  10. "extension",
  11. "combine",
  12. "merge"
  13. ],
  14. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-util-combine-extensions",
  15. "bugs": "https://github.com/micromark/micromark/issues",
  16. "funding": [
  17. {
  18. "type": "GitHub Sponsors",
  19. "url": "https://github.com/sponsors/unifiedjs"
  20. },
  21. {
  22. "type": "OpenCollective",
  23. "url": "https://opencollective.com/unified"
  24. }
  25. ],
  26. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  27. "contributors": [
  28. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  29. ],
  30. "sideEffects": false,
  31. "type": "module",
  32. "files": [
  33. "index.d.ts.map",
  34. "index.d.ts",
  35. "index.js"
  36. ],
  37. "exports": "./index.js",
  38. "dependencies": {
  39. "micromark-util-chunked": "^2.0.0",
  40. "micromark-util-types": "^2.0.0"
  41. },
  42. "xo": {
  43. "envs": [
  44. "shared-node-browser"
  45. ],
  46. "prettier": true,
  47. "rules": {
  48. "guard-for-in": "off",
  49. "unicorn/prefer-code-point": "off"
  50. }
  51. }
  52. }