package.json 847 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "is-unicode-supported",
  3. "version": "2.1.0",
  4. "description": "Detect whether the terminal supports Unicode",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-unicode-supported",
  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 && tsd"
  24. },
  25. "files": [
  26. "index.js",
  27. "index.d.ts"
  28. ],
  29. "keywords": [
  30. "terminal",
  31. "unicode",
  32. "detect",
  33. "utf8",
  34. "console",
  35. "shell",
  36. "support",
  37. "supports",
  38. "supported",
  39. "check",
  40. "detection"
  41. ],
  42. "devDependencies": {
  43. "ava": "^6.1.3",
  44. "tsd": "^0.31.2",
  45. "xo": "^0.59.3"
  46. }
  47. }