scp.js 398 B

1234567891011121314151617181920212223242526272829303132333435
  1. module.exports = {
  2. key: 'scp',
  3. title: 'SCP (SSH)',
  4. props: {
  5. host: String,
  6. port: {
  7. type: Number,
  8. default: 22
  9. },
  10. username: String,
  11. privateKeyPath: String,
  12. basePath: {
  13. type: String,
  14. default: '~'
  15. }
  16. },
  17. activate() {
  18. },
  19. deactivate() {
  20. },
  21. created(opts) {
  22. },
  23. updated(opts) {
  24. },
  25. deleted(opts) {
  26. },
  27. renamed(opts) {
  28. }
  29. }