package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "micromark-util-chunked",
  3. "version": "2.0.0",
  4. "description": "micromark utility to splice and push with giant arrays",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "util",
  9. "utility",
  10. "chunk",
  11. "splice",
  12. "push"
  13. ],
  14. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-util-chunked",
  15. "bugs": "https://github.com/micromark/micromark/issues",
  16. "funding": [
  17. {
  18. "type": "GitHub Sponsors",
  19. "url": "https://github.com/sponsors/unifiedjs"
  20. },
  21. {
  22. "type": "OpenCollective",
  23. "url": "https://opencollective.com/unified"
  24. }
  25. ],
  26. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  27. "contributors": [
  28. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  29. ],
  30. "sideEffects": false,
  31. "type": "module",
  32. "files": [
  33. "dev/",
  34. "index.d.ts",
  35. "index.js"
  36. ],
  37. "exports": {
  38. "development": "./dev/index.js",
  39. "default": "./index.js"
  40. },
  41. "dependencies": {
  42. "micromark-util-symbol": "^2.0.0"
  43. },
  44. "scripts": {
  45. "build": "micromark-build"
  46. },
  47. "xo": false
  48. }