UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.23 kB
/** * **horcrux** - Split your file into encrypted fragments so that you don't need to remember a passcode * * @domain `github.com/jesseduffield/horcrux` * @programs `horcrux` * @version `0.3.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install horcrux` * @name `horcrux` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.horcrux * // Or access via domain * const samePkg = pantry.githubcomjesseduffieldhorcrux * console.log(pkg === samePkg) // true * console.log(pkg.name) // "horcrux" * console.log(pkg.description) // "Split your file into encrypted fragments so tha..." * console.log(pkg.programs) // ["horcrux"] * console.log(pkg.versions[0]) // "0.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/jesseduffield/horcrux.md * @see https://ts-pkgx.netlify.app/usage */ export declare const horcruxPackage: { /** * The display name of this package. */ name: 'horcrux'; /** * The canonical domain name for this package. */ domain: 'github.com/jesseduffield/horcrux'; /** * Brief description of what this package does. */ description: 'Split your file into encrypted fragments so that you don\'t need to remember a passcode'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jesseduffield/horcrux/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install horcrux'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['horcrux']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type HorcruxPackage = typeof horcruxPackage