package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "micromark-util-character",
  3. "version": "2.1.0",
  4. "description": "micromark utility to handle character codes",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "util",
  9. "utility",
  10. "character"
  11. ],
  12. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-util-character",
  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. "lib/",
  33. "index.d.ts.map",
  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. "micromark-util-types": "^2.0.0"
  44. },
  45. "scripts": {
  46. "build": "micromark-build"
  47. },
  48. "xo": {
  49. "envs": [
  50. "shared-node-browser"
  51. ],
  52. "prettier": true,
  53. "rules": {
  54. "unicorn/prefer-code-point": "off"
  55. }
  56. }
  57. }