UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

56 lines 1.79 kB
/** * **macfuse.github.io** - macFUSE umbrella repository * * @domain `macfuse.github.io` * @version `4.10.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install macfuse.github.io` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.macfusegithubio * console.log(pkg.name) // "macfuse.github.io" * console.log(pkg.description) // "macFUSE umbrella repository" * console.log(pkg.versions[0]) // "4.10.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/macfuse-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const macfusegithubioPackage: { /** * The display name of this package. */ name: 'macfuse.github.io'; /** * The canonical domain name for this package. */ domain: 'macfuse.github.io'; /** * Brief description of what this package does. */ description: 'macFUSE umbrella repository'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/macfuse.github.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/macfuse/macfuse'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install macfuse.github.io'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.10.2']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +macfuse.github.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install macfuse.github.io' }; export type MacfusegithubioPackage = typeof macfusegithubioPackage