package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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": "16.0.1",
  26. "@types/ssh2": "^0.5.46",
  27. "ansi-colors": "^4.1.1",
  28. "sshpk": "Eugeny/node-sshpk#c2b71d1243714d2daf0988f84c3323d180817136",
  29. "strip-ansi": "^7.0.0"
  30. },
  31. "dependencies": {
  32. "@luminati-io/socksv5": "^0.0.7",
  33. "run-script-os": "^1.1.3",
  34. "tmp-promise": "^3.0.3"
  35. },
  36. "peerDependencies": {
  37. "@angular/animations": "^15",
  38. "@angular/common": "^15",
  39. "@angular/core": "^15",
  40. "@angular/forms": "^15",
  41. "@angular/platform-browser": "^15",
  42. "@ng-bootstrap/ng-bootstrap": "^14",
  43. "rxjs": "^7",
  44. "tabby-core": "*",
  45. "tabby-settings": "*",
  46. "tabby-terminal": "*"
  47. }
  48. }