Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

package.json 977B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "ansi-escapes",
  3. "version": "5.0.0",
  4. "description": "ANSI escape codes for manipulating the terminal",
  5. "license": "MIT",
  6. "repository": "sindresorhus/ansi-escapes",
  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"
  17. },
  18. "scripts": {
  19. "test": "xo && ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "ansi",
  27. "terminal",
  28. "console",
  29. "cli",
  30. "string",
  31. "tty",
  32. "escape",
  33. "escapes",
  34. "formatting",
  35. "shell",
  36. "xterm",
  37. "log",
  38. "logging",
  39. "command-line",
  40. "text",
  41. "vt100",
  42. "sequence",
  43. "control",
  44. "code",
  45. "codes",
  46. "cursor",
  47. "iterm",
  48. "iterm2"
  49. ],
  50. "dependencies": {
  51. "type-fest": "^1.0.2"
  52. },
  53. "devDependencies": {
  54. "@types/node": "^14.14.41",
  55. "ava": "^3.15.0",
  56. "tsd": "^0.14.0",
  57. "xo": "^0.38.2"
  58. }
  59. }