/** * **mask** - 🎭 A CLI task runner defined by a simple markdown file * * @domain `crates.io/mask` * @programs `mask` * @version `0.11.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/mask` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiomask * console.log(pkg.name) // "mask" * console.log(pkg.description) // "🎭 A CLI task runner defined by a simple markdo..." * console.log(pkg.programs) // ["mask"] * console.log(pkg.versions[0]) // "0.11.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/mask.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiomaskPackage: { /** * The display name of this package. */ name: 'mask'; /** * The canonical domain name for this package. */ domain: 'crates.io/mask'; /** * Brief description of what this package does. */ description: '🎭 A CLI task runner defined by a simple markdown file'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/mask/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/jakedeichert/mask'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/mask'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/mask -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/mask'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mask']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.11.3']; aliases: readonly [] }; export type CratesiomaskPackage = typeof cratesiomaskPackage