package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "micromark-util-decode-string",
  3. "version": "2.0.1",
  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.map",
  37. "index.d.ts",
  38. "index.js"
  39. ],
  40. "exports": {
  41. "development": "./dev/index.js",
  42. "default": "./index.js"
  43. },
  44. "dependencies": {
  45. "micromark-util-character": "^2.0.0",
  46. "micromark-util-decode-numeric-character-reference": "^2.0.0",
  47. "micromark-util-symbol": "^2.0.0",
  48. "decode-named-character-reference": "^1.0.0"
  49. },
  50. "scripts": {
  51. "build": "micromark-build"
  52. },
  53. "xo": {
  54. "envs": [
  55. "shared-node-browser"
  56. ],
  57. "prettier": true,
  58. "rules": {
  59. "unicorn/prefer-code-point": "off",
  60. "unicorn/prefer-string-replace-all": "off"
  61. }
  62. }
  63. }