UNPKG

@eightshone/sshman

Version:
38 lines β€’ 1.31 kB
import { homedir } from "os"; import packageJson from "../../package.json" with { type: "json" }; export const VERSION = packageJson.version; export const DEFAULT_CONFIG = { servers: [], recentServers: [], defaults: { privateKey: `${homedir()}/.ssh/id_rsa`, port: 22, autoSavePrefix: "auto-save", }, }; export const GOODBYES = [ "Thanks for stopping by! Take care! 😊", "See you next time! πŸ‘‹", "Bye for now! Stay awesome! 🌟", "Take care and have a great day! 🌈", "Catch you later! πŸ‘‹βœ¨", "Farewell, and don’t forget to smile! πŸ˜„", "Until we meet again! 🐾", "Thanks for chatting! Bye-bye! πŸ’¬", "Wishing you all the best! πŸ™Œ", "Goodbye and stay safe! ❀️", "See you later, alligator! 🐊", "Peace out! ✌️", "Take it easy! Bye! πŸ§˜β€β™€οΈ", "Au revoir! Keep smiling! 😊", "Bye-bye! Keep shining! ✨", "Goodbye! Have a fantastic day! πŸ₯³", ]; export const CONFIG_DIR = `${homedir()}/.sshman`; export const CONNECTION_REGEX = /^(.*?)(?::(.*?))?@(.*?)(?::(\d+))?$/; export const UPDATE_COMMANDS = { yarn: "yarn global add @eightshone/sshman", npm: "npm install -g @eightshone/sshman", pnpm: "pnpm add -g @eightshone/sshman", }; //# sourceMappingURL=consts.js.map