ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.41 kB
TypeScript
/**
* **fusermount3** - The reference implementation of the Linux FUSE (Filesystem in Userspace) interface
*
* @domain `github.com/libfuse/libfuse`
* @programs `fusermount3`
* @version `3.17.4` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install fusermount3`
* @name `fusermount3`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.fusermount3
* // Or access via domain
* const samePkg = pantry.githubcomlibfuselibfuse
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "fusermount3"
* console.log(pkg.description) // "The reference implementation of the Linux FUSE ..."
* console.log(pkg.programs) // ["fusermount3"]
* console.log(pkg.versions[0]) // "3.17.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/libfuse/libfuse.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const fusermount3Package: {
/**
* The display name of this package.
*/
name: 'fusermount3';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/libfuse/libfuse';
/**
* Brief description of what this package does.
*/
description: 'The reference implementation of the Linux FUSE (Filesystem in Userspace) interface';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/libfuse/libfuse/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install fusermount3';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['fusermount3'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.17.4', '3.17.3', '3.17.2', '3.17.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) fusermount3 -- $SHELL -i';
launchpadInstallCommand: 'launchpad install fusermount3'
};
export type Fusermount3Package = typeof fusermount3Package