UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.43 kB
/** * **neowofetch** - Fast, highly customisable system info script with LGBTQ+ pride flags * * @domain `github.com/hykilpikonna/hyfetch/neowofetch` * @programs `neowofetch` * @version `1.99.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install neowofetch` * @name `neowofetch` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.neowofetch * // Or access via domain * const samePkg = pantry.githubcomhykilpikonnahyfetchneowofetch * console.log(pkg === samePkg) // true * console.log(pkg.name) // "neowofetch" * console.log(pkg.description) // "Fast, highly customisable system info script wi..." * console.log(pkg.programs) // ["neowofetch"] * console.log(pkg.versions[0]) // "1.99.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/hykilpikonna/hyfetch/neowofetch.md * @see https://ts-pkgx.netlify.app/usage */ export declare const neowofetchPackage: { /** * The display name of this package. */ name: 'neowofetch'; /** * The canonical domain name for this package. */ domain: 'github.com/hykilpikonna/hyfetch/neowofetch'; /** * Brief description of what this package does. */ description: 'Fast, highly customisable system info script with LGBTQ+ pride flags'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/hykilpikonna/hyfetch/neowofetch/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install neowofetch'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['neowofetch']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.99.0', '1.4.11']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type NeowofetchPackage = typeof neowofetchPackage