package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "tabby-ssh",
  3. "version": "1.0.197-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. "typings"
  21. ],
  22. "author": "Eugene Pankov",
  23. "license": "MIT",
  24. "devDependencies": {
  25. "@types/node": "20.3.1",
  26. "@types/ssh2": "^0.5.46",
  27. "ansi-colors": "^4.1.1",
  28. "diffie-hellman": "^5.0.3",
  29. "sshpk": "Eugeny/node-sshpk#c2b71d1243714d2daf0988f84c3323d180817136",
  30. "strip-ansi": "^7.0.0"
  31. },
  32. "dependencies": {
  33. "@luminati-io/socksv5": "^0.0.7",
  34. "run-script-os": "^1.1.3",
  35. "tmp-promise": "^3.0.3"
  36. },
  37. "peerDependencies": {
  38. "@angular/animations": "^15",
  39. "@angular/common": "^15",
  40. "@angular/core": "^15",
  41. "@angular/forms": "^15",
  42. "@angular/platform-browser": "^15",
  43. "@ng-bootstrap/ng-bootstrap": "^14",
  44. "rxjs": "^7",
  45. "tabby-core": "*",
  46. "tabby-settings": "*",
  47. "tabby-terminal": "*"
  48. }
  49. }