UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.35 kB
/** * **paper** - Library and command-line tools for configuring and getting information on paper sizes * * @domain `github.com/rrthomas/libpaper` * @programs `paper` * @version `2.2.6` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install paper` * @name `paper` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.paper * // Or access via domain * const samePkg = pantry.githubcomrrthomaslibpaper * console.log(pkg === samePkg) // true * console.log(pkg.name) // "paper" * console.log(pkg.description) // "Library and command-line tools for configuring ..." * console.log(pkg.programs) // ["paper"] * console.log(pkg.versions[0]) // "2.2.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/rrthomas/libpaper.md * @see https://ts-pkgx.netlify.app/usage */ export declare const paperPackage: { /** * The display name of this package. */ name: 'paper'; /** * The canonical domain name for this package. */ domain: 'github.com/rrthomas/libpaper'; /** * Brief description of what this package does. */ description: 'Library and command-line tools for configuring and getting information on paper sizes'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/rrthomas/libpaper/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install paper'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['paper']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.2.6', '2.2.5', '2.2.4', '2.2.3', '2.1.3', '2.1.2', '2.1.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) paper -- $SHELL -i'; launchpadInstallCommand: 'launchpad install paper' }; export type PaperPackage = typeof paperPackage