您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "strip-ansi",
  3. "version": "7.1.0",
  4. "description": "Strip ANSI escape codes from a string",
  5. "license": "MIT",
  6. "repository": "chalk/strip-ansi",
  7. "funding": "https://github.com/chalk/strip-ansi?sponsor=1",
  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. "strip",
  27. "trim",
  28. "remove",
  29. "ansi",
  30. "styles",
  31. "color",
  32. "colour",
  33. "colors",
  34. "terminal",
  35. "console",
  36. "string",
  37. "tty",
  38. "escape",
  39. "formatting",
  40. "rgb",
  41. "256",
  42. "shell",
  43. "xterm",
  44. "log",
  45. "logging",
  46. "command-line",
  47. "text"
  48. ],
  49. "dependencies": {
  50. "ansi-regex": "^6.0.1"
  51. },
  52. "devDependencies": {
  53. "ava": "^3.15.0",
  54. "tsd": "^0.17.0",
  55. "xo": "^0.44.0"
  56. }
  57. }