package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "tabby-ssh",
  3. "version": "1.0.171-nightly.3",
  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#d92ddb8def1778e876703f90cd6ff2c90900f390",
  28. "strip-ansi": "^7.0.0"
  29. },
  30. "dependencies": {
  31. "run-script-os": "^1.1.3",
  32. "@luminati-io/socksv5": "^0.0.7"
  33. },
  34. "peerDependencies": {
  35. "@angular/animations": "^9.1.9",
  36. "@angular/common": "^9.1.11",
  37. "@angular/core": "^9.1.9",
  38. "@angular/forms": "^9.1.11",
  39. "@angular/platform-browser": "^9.1.11",
  40. "@ng-bootstrap/ng-bootstrap": "^6.1.0",
  41. "rxjs": "^6.5.5",
  42. "tabby-core": "*",
  43. "tabby-settings": "*",
  44. "tabby-terminal": "*"
  45. }
  46. }