package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "micromark-util-decode-string",
  3. "version": "2.0.0",
  4. "description": "micromark utility to decode markdown strings",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "util",
  9. "utility",
  10. "decode",
  11. "character",
  12. "reference",
  13. "escape",
  14. "string"
  15. ],
  16. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-util-decode-string",
  17. "bugs": "https://github.com/micromark/micromark/issues",
  18. "funding": [
  19. {
  20. "type": "GitHub Sponsors",
  21. "url": "https://github.com/sponsors/unifiedjs"
  22. },
  23. {
  24. "type": "OpenCollective",
  25. "url": "https://opencollective.com/unified"
  26. }
  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. "files": [
  35. "dev/",
  36. "index.d.ts",
  37. "index.js"
  38. ],
  39. "exports": {
  40. "development": "./dev/index.js",
  41. "default": "./index.js"
  42. },
  43. "dependencies": {
  44. "micromark-util-character": "^2.0.0",
  45. "micromark-util-decode-numeric-character-reference": "^2.0.0",
  46. "micromark-util-symbol": "^2.0.0",
  47. "decode-named-character-reference": "^1.0.0"
  48. },
  49. "scripts": {
  50. "build": "micromark-build"
  51. },
  52. "xo": false
  53. }