package.json 1.2 KB

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