Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "cli-cursor",
  3. "version": "4.0.0",
  4. "description": "Toggle the CLI cursor",
  5. "license": "MIT",
  6. "repository": "sindresorhus/cli-cursor",
  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. "cli",
  27. "cursor",
  28. "ansi",
  29. "toggle",
  30. "display",
  31. "show",
  32. "hide",
  33. "term",
  34. "terminal",
  35. "console",
  36. "tty",
  37. "shell",
  38. "command-line"
  39. ],
  40. "dependencies": {
  41. "restore-cursor": "^4.0.0"
  42. },
  43. "devDependencies": {
  44. "@types/node": "^16.7.1",
  45. "ava": "^3.15.0",
  46. "tsd": "^0.17.0",
  47. "xo": "^0.44.0"
  48. }
  49. }