You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "log-update",
  3. "version": "5.0.1",
  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": "./index.js",
  15. "engines": {
  16. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  17. },
  18. "scripts": {
  19. "test": "xo && ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "log",
  27. "logger",
  28. "logging",
  29. "cli",
  30. "terminal",
  31. "term",
  32. "console",
  33. "shell",
  34. "update",
  35. "refresh",
  36. "overwrite",
  37. "output",
  38. "stdout",
  39. "progress",
  40. "bar",
  41. "animation"
  42. ],
  43. "dependencies": {
  44. "ansi-escapes": "^5.0.0",
  45. "cli-cursor": "^4.0.0",
  46. "slice-ansi": "^5.0.0",
  47. "strip-ansi": "^7.0.1",
  48. "wrap-ansi": "^8.0.1"
  49. },
  50. "devDependencies": {
  51. "@types/node": "^17.0.25",
  52. "ava": "^4.2.0",
  53. "terminal.js": "^1.0.11",
  54. "tsd": "^0.20.0",
  55. "wcwidth": "^1.0.1",
  56. "xo": "^0.48.0"
  57. }
  58. }