UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.46 kB
/** * **ifacemaker** - Generate interfaces from structure methods. * * @domain `github.com/vburenin/ifacemaker` * @programs `ifacemaker` * @version `1.3.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install ifacemaker` * @name `ifacemaker` * @companions `go.dev` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.ifacemaker * // Or access via domain * const samePkg = pantry.githubcomvbureninifacemaker * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ifacemaker" * console.log(pkg.description) // "Generate interfaces from structure methods." * console.log(pkg.programs) // ["ifacemaker"] * console.log(pkg.versions[0]) // "1.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/vburenin/ifacemaker.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ifacemakerPackage: { /** * The display name of this package. */ name: 'ifacemaker'; /** * The canonical domain name for this package. */ domain: 'github.com/vburenin/ifacemaker'; /** * Brief description of what this package does. */ description: 'Generate interfaces from structure methods.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/vburenin/ifacemaker/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ifacemaker'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ifacemaker']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['go.dev']; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.0', '1.2.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) ifacemaker -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ifacemaker' }; export type IfacemakerPackage = typeof ifacemakerPackage