UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.11 kB
/** * **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` * @aliases `ots` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.ots * // Or access via domain * const samePkg = pantry.otssnipttcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ots.sniptt.com" * 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 otsPackage: { /** * The display name of this package. */ name: 'ots.sniptt.com'; /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ots'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ots']; companions: readonly []; dependencies: readonly []; /** * 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']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['ots'] }; export type OtsPackage = typeof otsPackage