package.json 746 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "is-interactive",
  3. "version": "2.0.0",
  4. "description": "Check if stdout or stderr is interactive",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-interactive",
  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. "interactive",
  27. "stdout",
  28. "stderr",
  29. "detect",
  30. "is",
  31. "terminal",
  32. "shell",
  33. "tty"
  34. ],
  35. "devDependencies": {
  36. "@types/node": "^15.0.1",
  37. "ava": "^3.15.0",
  38. "tsd": "^0.14.0",
  39. "xo": "^0.39.1"
  40. }
  41. }