/** * **mas** - :package: Mac App Store command line interface * * @domain `github.com/mas-cli/mas` * @programs `mas` * @version `4.1.0` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/mas-cli/mas` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcommasclimas * console.log(pkg.name) // "mas" * console.log(pkg.description) // ":package: Mac App Store command line interface" * console.log(pkg.programs) // ["mas"] * console.log(pkg.versions[0]) // "4.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/mas-cli/mas.md * @see https://ts-pkgx.netlify.app/usage */ export declare const masPackage: { /** * The display name of this package. */ name: 'mas'; /** * The canonical domain name for this package. */ domain: 'github.com/mas-cli/mas'; /** * Brief description of what this package does. */ description: ':package: Mac App Store command line interface'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/mas-cli/mas/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/mas-cli/mas'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/mas-cli/mas'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/mas-cli/mas -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/mas-cli/mas'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mas']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.1.0', '4.0.0', '3.1.0', '3.0.1', '3.0.0', '2.3.0', '2.2.2', '2.2.1', '2.2.0', '2.1.0', '2.0.0', '1.9.0', '1.8.8', '1.8.7']; aliases: readonly [] }; export type MasPackage = typeof masPackage