Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

package.json 837B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "is-fullwidth-code-point",
  3. "version": "4.0.0",
  4. "description": "Check if the character represented by a given Unicode code point is fullwidth",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-fullwidth-code-point",
  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": "./index.js",
  15. "engines": {
  16. "node": ">=12"
  17. },
  18. "scripts": {
  19. "test": "xo && ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "fullwidth",
  27. "full-width",
  28. "full",
  29. "width",
  30. "unicode",
  31. "character",
  32. "string",
  33. "codepoint",
  34. "code",
  35. "point",
  36. "is",
  37. "detect",
  38. "check"
  39. ],
  40. "devDependencies": {
  41. "ava": "^3.15.0",
  42. "tsd": "^0.14.0",
  43. "xo": "^0.38.2"
  44. }
  45. }