UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

53 lines 1.54 kB
/** * **frei0r.dyne.org** - pkgx package * * @domain `frei0r.dyne.org` * @version `1.8.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +frei0r.dyne.org -- $SHELL -i` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.frei0rdyneorg * console.log(pkg.name) // "frei0r.dyne.org" * console.log(pkg.versions[0]) // "1.8.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/frei0r-dyne-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const frei0rdyneorgPackage: { /** * The display name of this package. */ name: 'frei0r.dyne.org'; /** * The canonical domain name for this package. */ domain: 'frei0r.dyne.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/frei0r.dyne.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +frei0r.dyne.org -- $SHELL -i'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.8.0']; aliases: readonly [] }; export type Frei0rdyneorgPackage = typeof frei0rdyneorgPackage