package.json 763 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "is-in-ssh",
  3. "version": "1.0.0",
  4. "description": "Check if the process is running in an SSH session",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-in-ssh",
  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": {
  15. "types": "./index.d.ts",
  16. "default": "./index.js"
  17. },
  18. "sideEffects": false,
  19. "engines": {
  20. "node": ">=20"
  21. },
  22. "scripts": {
  23. "test": "xo && node --test"
  24. },
  25. "files": [
  26. "index.js",
  27. "index.d.ts"
  28. ],
  29. "keywords": [
  30. "ssh",
  31. "detect",
  32. "detection",
  33. "session",
  34. "remote",
  35. "connection",
  36. "environment",
  37. "check",
  38. "is"
  39. ],
  40. "devDependencies": {
  41. "xo": "^1.2.3"
  42. }
  43. }