package.json 990 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "kleur",
  3. "version": "4.1.5",
  4. "repository": "lukeed/kleur",
  5. "description": "The fastest Node.js library for formatting terminal text with ANSI colors~!",
  6. "module": "index.mjs",
  7. "types": "index.d.ts",
  8. "main": "index.js",
  9. "license": "MIT",
  10. "exports": {
  11. ".": {
  12. "types": "./index.d.ts",
  13. "import": "./index.mjs",
  14. "require": "./index.js"
  15. },
  16. "./colors": {
  17. "types": "./colors.d.ts",
  18. "import": "./colors.mjs",
  19. "require": "./colors.js"
  20. }
  21. },
  22. "files": [
  23. "*.d.ts",
  24. "colors.*",
  25. "index.*"
  26. ],
  27. "author": {
  28. "name": "Luke Edwards",
  29. "email": "luke.edwards05@gmail.com",
  30. "url": "https://lukeed.com"
  31. },
  32. "scripts": {
  33. "build": "node build",
  34. "test": "uvu -r esm -i utils -i xyz"
  35. },
  36. "engines": {
  37. "node": ">=6"
  38. },
  39. "keywords": [
  40. "ansi",
  41. "cli",
  42. "color",
  43. "colors",
  44. "console",
  45. "terminal"
  46. ],
  47. "devDependencies": {
  48. "esm": "3.2.25",
  49. "uvu": "0.3.3"
  50. }
  51. }