package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "terminus-ssh",
  3. "version": "1.0.0-alpha.48",
  4. "description": "SSH connection manager for Terminus",
  5. "keywords": [
  6. "terminus-builtin-plugin"
  7. ],
  8. "main": "dist/index.js",
  9. "typings": "dist/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/ssh2": "^0.5.35",
  21. "@types/webpack-env": "^1.13.0",
  22. "electron": "^1.6.11",
  23. "ngx-toastr": "^8.0.0",
  24. "rxjs": "^5.4.0",
  25. "typescript": "^2.2.2",
  26. "webpack": "^2.3.3"
  27. },
  28. "peerDependencies": {
  29. "@angular/common": "^4.1.3",
  30. "@angular/core": "^4.1.3",
  31. "@angular/forms": "^4.1.3",
  32. "@ng-bootstrap/ng-bootstrap": "^1.0.0-alpha.29",
  33. "terminus-core": "*",
  34. "terminus-settings": "*",
  35. "terminus-terminal": "*"
  36. },
  37. "optionalDependencies": {
  38. "wincredmgr": "^2.0.0",
  39. "xkeychain": "^0.0.6"
  40. },
  41. "dependencies": {
  42. "ssh2": "^0.5.5"
  43. }
  44. }