package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "get-east-asian-width",
  3. "version": "1.3.0",
  4. "description": "Determine the East Asian Width of a Unicode character",
  5. "license": "MIT",
  6. "repository": "sindresorhus/get-east-asian-width",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": {
  15. "types": "./index.d.ts",
  16. "default": "./index.js"
  17. },
  18. "sideEffects": false,
  19. "engines": {
  20. "node": ">=18"
  21. },
  22. "scripts": {
  23. "test": "xo && ava && tsc index.d.ts",
  24. "build": "node scripts/build.js",
  25. "prepublish": "npm run build"
  26. },
  27. "files": [
  28. "index.js",
  29. "index.d.ts",
  30. "lookup.js"
  31. ],
  32. "keywords": [
  33. "unicode",
  34. "east-asian-width",
  35. "eastasianwidth",
  36. "character",
  37. "string",
  38. "width",
  39. "text",
  40. "layout",
  41. "alignment",
  42. "fullwidth",
  43. "halfwidth",
  44. "ambiguous",
  45. "narrow",
  46. "wide",
  47. "neutral",
  48. "typography",
  49. "japanese",
  50. "chinese",
  51. "korean",
  52. "codepoint",
  53. "text-processing",
  54. "i18n",
  55. "l10n"
  56. ],
  57. "devDependencies": {
  58. "ava": "^5.3.1",
  59. "indent-string": "^5.0.0",
  60. "outdent": "^0.8.0",
  61. "simplify-ranges": "^0.1.0",
  62. "typescript": "^5.2.2",
  63. "xo": "^0.56.0"
  64. },
  65. "xo": {
  66. "ignores": [
  67. "lookup.js"
  68. ]
  69. }
  70. }