/** * **pls** - pls is a prettier and powerful ls(1) for the pros. * * @domain `dhruvkb.dev/pls` * @programs `pls` * @version `2023.12.22` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install dhruvkb.dev/pls` * @homepage https://pls.cli.rs/ * @dependencies `libgit2.org~1.7 # links to libgit2.so.1.7` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.dhruvkbdevpls * console.log(pkg.name) // "pls" * console.log(pkg.description) // "pls is a prettier and powerful ls(1) for the pros." * console.log(pkg.programs) // ["pls"] * console.log(pkg.versions[0]) // "2023.12.22" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/dhruvkb-dev/pls.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dhruvkbdevplsPackage: { /** * The display name of this package. */ name: 'pls'; /** * The canonical domain name for this package. */ domain: 'dhruvkb.dev/pls'; /** * Brief description of what this package does. */ description: 'pls is a prettier and powerful ls(1) for the pros.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dhruvkb.dev/pls/package.yml'; homepageUrl: 'https://pls.cli.rs/'; githubUrl: 'https://github.com/pls-rs/pls'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dhruvkb.dev/pls'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +dhruvkb.dev/pls -- $SHELL -i'; launchpadInstallCommand: 'launchpad install dhruvkb.dev/pls'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pls']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['libgit2.org~1.7 # links to libgit2.so.1.7']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2023.12.22']; aliases: readonly [] }; export type DhruvkbdevplsPackage = typeof dhruvkbdevplsPackage