package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "log-update",
  3. "version": "6.1.0",
  4. "description": "Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.",
  5. "license": "MIT",
  6. "repository": "sindresorhus/log-update",
  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. "log",
  31. "logger",
  32. "logging",
  33. "cli",
  34. "terminal",
  35. "term",
  36. "console",
  37. "shell",
  38. "update",
  39. "refresh",
  40. "overwrite",
  41. "output",
  42. "stdout",
  43. "progress",
  44. "bar",
  45. "animation"
  46. ],
  47. "dependencies": {
  48. "ansi-escapes": "^7.0.0",
  49. "cli-cursor": "^5.0.0",
  50. "slice-ansi": "^7.1.0",
  51. "strip-ansi": "^7.1.0",
  52. "wrap-ansi": "^9.0.0"
  53. },
  54. "devDependencies": {
  55. "@types/node": "^20.14.12",
  56. "ava": "^6.1.3",
  57. "terminal.js": "^1.0.11",
  58. "tsd": "^0.31.1",
  59. "wcwidth": "^1.0.1",
  60. "xo": "^0.59.2"
  61. },
  62. "xo": {
  63. "rules": {
  64. "@typescript-eslint/no-unsafe-argument": "off"
  65. }
  66. }
  67. }