package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "yoctocolors",
  3. "version": "2.1.1",
  4. "description": "The smallest and fastest command-line coloring package on the internet",
  5. "license": "MIT",
  6. "repository": "sindresorhus/yoctocolors",
  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. "base.js",
  29. "base.d.ts"
  30. ],
  31. "keywords": [
  32. "color",
  33. "colour",
  34. "colors",
  35. "terminal",
  36. "console",
  37. "cli",
  38. "string",
  39. "ansi",
  40. "style",
  41. "styles",
  42. "tty",
  43. "formatting",
  44. "shell",
  45. "xterm",
  46. "log",
  47. "logging",
  48. "command-line",
  49. "text"
  50. ],
  51. "devDependencies": {
  52. "@jonahsnider/benchmark": "^5.0.3",
  53. "ansi-colors": "^4.1.3",
  54. "ava": "^6.1.3",
  55. "chalk": "^5.3.0",
  56. "cli-color": "^2.0.4",
  57. "colorette": "^2.0.20",
  58. "kleur": "^4.1.5",
  59. "nanocolors": "^0.2.13",
  60. "picocolors": "^1.0.1",
  61. "tsd": "^0.31.0",
  62. "xo": "^0.58.0"
  63. },
  64. "ava": {
  65. "environmentVariables": {
  66. "FORCE_COLOR": "1"
  67. }
  68. }
  69. }