package.json 886 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "terminus-ssh",
  3. "version": "1.0.99-nightly.0",
  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. },
  14. "files": [
  15. "dist"
  16. ],
  17. "author": "Eugene Pankov",
  18. "license": "MIT",
  19. "devDependencies": {
  20. "@types/node": "12.7.3",
  21. "@types/ssh2": "^0.5.35",
  22. "ssh2": "^0.8.2",
  23. "ssh2-streams": "^0.4.2",
  24. "sshpk": "^1.16.1",
  25. "terminus-terminal": "^1.0.98-nightly.0"
  26. },
  27. "peerDependencies": {
  28. "@angular/common": "^7",
  29. "@angular/core": "^7",
  30. "@angular/forms": "^7",
  31. "@ng-bootstrap/ng-bootstrap": "^1",
  32. "rxjs": "^5",
  33. "terminus-core": "*",
  34. "terminus-settings": "*",
  35. "terminus-terminal": "*"
  36. }
  37. }