ts-pkgx
Version:
A library & CLI for managing packages
77 lines • 2.68 kB
TypeScript
/**
* **neofetch** - 🖼️ A command-line system information tool written in bash 3.2+
*
* @domain `github.com/dylanaraps/neofetch`
* @programs `neofetch`
* @version `7.1.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install neofetch`
* @name `neofetch`
* @dependencies `darwin:github.com/jhford/screenresolution` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.neofetch
* // Or access via domain
* const samePkg = pantry.githubcomdylanarapsneofetch
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "neofetch"
* console.log(pkg.description) // "🖼️ A command-line system information tool wri..."
* console.log(pkg.programs) // ["neofetch"]
* console.log(pkg.versions[0]) // "7.1.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/dylanaraps/neofetch.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const neofetchPackage: {
/**
* The display name of this package.
*/
name: 'neofetch';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/dylanaraps/neofetch';
/**
* Brief description of what this package does.
*/
description: '🖼️ A command-line system information tool written in bash 3.2+';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/dylanaraps/neofetch/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install neofetch';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['neofetch'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['darwin:github.com/jhford/screenresolution'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['7.1.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) neofetch -- $SHELL -i';
launchpadInstallCommand: 'launchpad install neofetch'
};
export type NeofetchPackage = typeof neofetchPackage