package.json 1023 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "log-symbols",
  3. "version": "6.0.0",
  4. "description": "Colored symbols for various log levels. Example: `✔︎ Success`",
  5. "license": "MIT",
  6. "repository": "sindresorhus/log-symbols",
  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. "node": "./index.js",
  17. "default": "./browser.js"
  18. },
  19. "engines": {
  20. "node": ">=18"
  21. },
  22. "scripts": {
  23. "test": "xo && ava && tsd"
  24. },
  25. "files": [
  26. "index.js",
  27. "index.d.ts",
  28. "browser.js"
  29. ],
  30. "keywords": [
  31. "unicode",
  32. "cli",
  33. "cmd",
  34. "command-line",
  35. "characters",
  36. "symbol",
  37. "symbols",
  38. "figure",
  39. "figures",
  40. "fallback",
  41. "windows",
  42. "log",
  43. "logging",
  44. "terminal",
  45. "stdout"
  46. ],
  47. "dependencies": {
  48. "chalk": "^5.3.0",
  49. "is-unicode-supported": "^1.3.0"
  50. },
  51. "devDependencies": {
  52. "ava": "^5.3.1",
  53. "strip-ansi": "^7.1.0",
  54. "tsd": "^0.29.0",
  55. "xo": "^0.56.0"
  56. }
  57. }