package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "micromark-core-commonmark",
  3. "version": "2.0.0",
  4. "description": "The CommonMark markdown constructs",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "core",
  9. "commonmark"
  10. ],
  11. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-core-commonmark",
  12. "bugs": "https://github.com/micromark/micromark/issues",
  13. "funding": [
  14. {
  15. "type": "GitHub Sponsors",
  16. "url": "https://github.com/sponsors/unifiedjs"
  17. },
  18. {
  19. "type": "OpenCollective",
  20. "url": "https://opencollective.com/unified"
  21. }
  22. ],
  23. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  24. "contributors": [
  25. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  26. ],
  27. "sideEffects": false,
  28. "type": "module",
  29. "files": [
  30. "dev/",
  31. "lib/",
  32. "index.d.ts",
  33. "index.js"
  34. ],
  35. "exports": {
  36. "development": "./dev/index.js",
  37. "default": "./index.js"
  38. },
  39. "dependencies": {
  40. "decode-named-character-reference": "^1.0.0",
  41. "devlop": "^1.0.0",
  42. "micromark-factory-destination": "^2.0.0",
  43. "micromark-factory-label": "^2.0.0",
  44. "micromark-factory-space": "^2.0.0",
  45. "micromark-factory-title": "^2.0.0",
  46. "micromark-factory-whitespace": "^2.0.0",
  47. "micromark-util-character": "^2.0.0",
  48. "micromark-util-chunked": "^2.0.0",
  49. "micromark-util-classify-character": "^2.0.0",
  50. "micromark-util-html-tag-name": "^2.0.0",
  51. "micromark-util-normalize-identifier": "^2.0.0",
  52. "micromark-util-resolve-all": "^2.0.0",
  53. "micromark-util-subtokenize": "^2.0.0",
  54. "micromark-util-symbol": "^2.0.0",
  55. "micromark-util-types": "^2.0.0"
  56. },
  57. "scripts": {
  58. "build": "micromark-build"
  59. },
  60. "xo": false
  61. }