/** * **ots** - 🔐 Share end-to-end encrypted secrets with others via a one-time URL * * @domain `ots.sniptt.com` * @programs `ots` * @version `0.3.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install ots.sniptt.com` * @homepage https://ots.sniptt.com * @buildDependencies `go.dev@^1.19` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.otssnipttcom * console.log(pkg.name) // "ots" * console.log(pkg.description) // "🔐 Share end-to-end encrypted secrets with othe..." * console.log(pkg.programs) // ["ots"] * console.log(pkg.versions[0]) // "0.3.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ots-sniptt-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const otssnipttcomPackage: { /** * The display name of this package. */ name: 'ots'; /** * The canonical domain name for this package. */ domain: 'ots.sniptt.com'; /** * Brief description of what this package does. */ description: '🔐 Share end-to-end encrypted secrets with others via a one-time URL'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ots.sniptt.com/package.yml'; homepageUrl: 'https://ots.sniptt.com'; githubUrl: 'https://github.com/sniptt-official/ots'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ots.sniptt.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +ots.sniptt.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ots.sniptt.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ots']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.19']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.1', '0.3.0', '0.2.0']; aliases: readonly [] }; export type OtssnipttcomPackage = typeof otssnipttcomPackage