package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "terminus-ssh",
  3. "version": "1.0.135-nightly.1",
  4. "description": "SSH connection manager for Terminus",
  5. "keywords": [
  6. "terminus-builtin-plugin"
  7. ],
  8. "main": "dist/index.js",
  9. "typings": "typings/index.d.ts",
  10. "scripts": {
  11. "build": "webpack --progress --color",
  12. "watch": "webpack --progress --color --watch",
  13. "postinstall": "run-script-os",
  14. "postinstall:darwin:linux": "exit",
  15. "postinstall:win32": "xcopy /i /y node_modules\\ssh2\\util\\pagent.exe util\\"
  16. },
  17. "files": [
  18. "dist",
  19. "util/pagent.exe"
  20. ],
  21. "author": "Eugene Pankov",
  22. "license": "MIT",
  23. "devDependencies": {
  24. "@types/node": "14.14.31",
  25. "@types/ssh2": "^0.5.35",
  26. "ansi-colors": "^4.1.1",
  27. "cli-spinner": "^0.2.10",
  28. "clone-deep": "^4.0.1",
  29. "ssh2": "^0.8.9",
  30. "ssh2-streams": "Eugeny/ssh2-streams#75f6d3425d071ac73a18fd46e2f5e738bfe897c5",
  31. "sshpk": "^1.16.1",
  32. "strip-ansi": "^6.0.0",
  33. "temp": "^0.9.1"
  34. },
  35. "dependencies": {
  36. "run-script-os": "^1.1.3",
  37. "socksv5": "^0.0.6"
  38. },
  39. "peerDependencies": {
  40. "@angular/animations": "^9.1.9",
  41. "@angular/common": "^9.1.11",
  42. "@angular/core": "^9.1.9",
  43. "@angular/forms": "^9.1.11",
  44. "@angular/platform-browser": "^9.1.11",
  45. "@ng-bootstrap/ng-bootstrap": "^6.1.0",
  46. "rxjs": "^6.5.5",
  47. "terminus-core": "*",
  48. "terminus-settings": "*",
  49. "terminus-terminal": "*"
  50. }
  51. }