tabby/tabby-ssh/package.json

47 lines
1.2 KiB
JSON
Raw Normal View History

{
2021-06-29 21:57:04 +00:00
"name": "tabby-ssh",
2021-08-01 08:17:35 +00:00
"version": "1.0.150",
2021-07-04 14:48:48 +00:00
"description": "SSH connections for Tabby",
"keywords": [
2021-06-29 21:57:04 +00:00
"tabby-builtin-plugin"
],
"main": "dist/index.js",
2019-06-06 11:45:15 +00:00
"typings": "typings/index.d.ts",
"scripts": {
"build": "webpack --progress --color",
"watch": "webpack --progress --color --watch",
2020-12-13 11:21:28 +00:00
"postinstall": "run-script-os",
"postinstall:darwin:linux": "exit",
"postinstall:win32": "xcopy /i /y ..\\node_modules\\ssh2\\util\\pagent.exe util\\"
},
"files": [
"dist",
"util/pagent.exe"
],
"author": "Eugene Pankov",
"license": "MIT",
"devDependencies": {
"@types/node": "16.0.1",
"@types/ssh2": "^0.5.46",
2020-02-16 20:26:01 +00:00
"ansi-colors": "^4.1.1",
2021-05-15 16:51:53 +00:00
"sshpk": "Eugeny/node-sshpk#89ed17dfae425a8b629873c8337e77d26838c04f",
"strip-ansi": "^7.0.0"
},
2020-12-24 17:18:07 +00:00
"dependencies": {
2021-03-10 19:51:50 +00:00
"run-script-os": "^1.1.3",
2020-12-24 17:18:07 +00:00
"socksv5": "^0.0.6"
},
"peerDependencies": {
"@angular/animations": "^9.1.9",
"@angular/common": "^9.1.11",
"@angular/core": "^9.1.9",
"@angular/forms": "^9.1.11",
"@angular/platform-browser": "^9.1.11",
"@ng-bootstrap/ng-bootstrap": "^6.1.0",
"rxjs": "^6.5.5",
2021-06-29 21:57:04 +00:00
"tabby-core": "*",
"tabby-settings": "*",
"tabby-terminal": "*"
}
}