UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.18 kB
/** * **pakku** - pakku is a declarative approach to your system package managers. * * @domain `github.com/mycreepy/pakku` * @programs `pakku` * @version `0.5.0` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install pakku` * @name `pakku` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pakku * // Or access via domain * const samePkg = pantry.githubcommycreepypakku * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pakku" * console.log(pkg.description) // "pakku is a declarative approach to your system ..." * console.log(pkg.programs) // ["pakku"] * console.log(pkg.versions[0]) // "0.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/mycreepy/pakku.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pakkuPackage: { /** * The display name of this package. */ name: 'pakku'; /** * The canonical domain name for this package. */ domain: 'github.com/mycreepy/pakku'; /** * Brief description of what this package does. */ description: 'pakku is a declarative approach to your system package managers.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/mycreepy/pakku/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/mycreepy/pakku'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pakku'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pakku']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.0', '0.4.2', '0.4.1', '0.4.0', '0.3.1', '0.3.0', '0.2.0', '0.1.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type PakkuPackage = typeof pakkuPackage