package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "micromark-factory-destination",
  3. "version": "2.0.0",
  4. "description": "micromark factory to parse destinations (found in resources, definitions)",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "factory",
  9. "destination"
  10. ],
  11. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-factory-destination",
  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. "index.d.ts",
  32. "index.js"
  33. ],
  34. "exports": {
  35. "development": "./dev/index.js",
  36. "default": "./index.js"
  37. },
  38. "dependencies": {
  39. "micromark-util-character": "^2.0.0",
  40. "micromark-util-symbol": "^2.0.0",
  41. "micromark-util-types": "^2.0.0"
  42. },
  43. "scripts": {
  44. "build": "micromark-build"
  45. },
  46. "xo": false
  47. }