package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "tabby-ssh",
  3. "version": "1.0.187-nightly.1",
  4. "description": "SSH connections for Tabby",
  5. "keywords": [
  6. "tabby-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": "16.0.1",
  25. "@types/ssh2": "^0.5.46",
  26. "ansi-colors": "^4.1.1",
  27. "sshpk": "Eugeny/node-sshpk#c2b71d1243714d2daf0988f84c3323d180817136",
  28. "strip-ansi": "^7.0.0"
  29. },
  30. "dependencies": {
  31. "@luminati-io/socksv5": "^0.0.7",
  32. "run-script-os": "^1.1.3",
  33. "tmp-promise": "^3.0.3"
  34. },
  35. "peerDependencies": {
  36. "@angular/animations": "^9.1.9",
  37. "@angular/common": "^9.1.11",
  38. "@angular/core": "^9.1.9",
  39. "@angular/forms": "^9.1.11",
  40. "@angular/platform-browser": "^9.1.11",
  41. "@ng-bootstrap/ng-bootstrap": "^6.1.0",
  42. "rxjs": "^6.5.5",
  43. "tabby-core": "*",
  44. "tabby-settings": "*",
  45. "tabby-terminal": "*"
  46. }
  47. }