package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "micromark",
  3. "version": "4.0.0",
  4. "description": "small commonmark compliant markdown parser with positional info and concrete tokens",
  5. "license": "MIT",
  6. "keywords": [
  7. "commonmark",
  8. "compiler",
  9. "gfm",
  10. "html",
  11. "lexer",
  12. "markdown",
  13. "markup",
  14. "md",
  15. "unified",
  16. "parse",
  17. "parser",
  18. "plugin",
  19. "process",
  20. "remark",
  21. "render",
  22. "renderer",
  23. "token",
  24. "tokenizer"
  25. ],
  26. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark",
  27. "bugs": "https://github.com/micromark/micromark/issues",
  28. "funding": [
  29. {
  30. "type": "GitHub Sponsors",
  31. "url": "https://github.com/sponsors/unifiedjs"
  32. },
  33. {
  34. "type": "OpenCollective",
  35. "url": "https://opencollective.com/unified"
  36. }
  37. ],
  38. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  39. "contributors": [
  40. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  41. ],
  42. "sideEffects": false,
  43. "type": "module",
  44. "files": [
  45. "dev/",
  46. "lib/",
  47. "index.d.ts",
  48. "index.js",
  49. "stream.d.ts",
  50. "stream.js"
  51. ],
  52. "exports": {
  53. ".": {
  54. "development": "./dev/index.js",
  55. "default": "./index.js"
  56. },
  57. "./stream": {
  58. "development": "./dev/stream.js",
  59. "default": "./stream.js"
  60. }
  61. },
  62. "dependencies": {
  63. "@types/debug": "^4.0.0",
  64. "debug": "^4.0.0",
  65. "decode-named-character-reference": "^1.0.0",
  66. "devlop": "^1.0.0",
  67. "micromark-core-commonmark": "^2.0.0",
  68. "micromark-factory-space": "^2.0.0",
  69. "micromark-util-character": "^2.0.0",
  70. "micromark-util-chunked": "^2.0.0",
  71. "micromark-util-combine-extensions": "^2.0.0",
  72. "micromark-util-decode-numeric-character-reference": "^2.0.0",
  73. "micromark-util-encode": "^2.0.0",
  74. "micromark-util-normalize-identifier": "^2.0.0",
  75. "micromark-util-resolve-all": "^2.0.0",
  76. "micromark-util-sanitize-uri": "^2.0.0",
  77. "micromark-util-subtokenize": "^2.0.0",
  78. "micromark-util-symbol": "^2.0.0",
  79. "micromark-util-types": "^2.0.0"
  80. },
  81. "scripts": {
  82. "build": "micromark-build"
  83. },
  84. "xo": false
  85. }