/** * **libfyaml** - pkgx package * * @domain `github.com/pantoniou/libfyaml` * @version `0.9.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/pantoniou/libfyaml` * @buildDependencies `linux:gnu.org/m4` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcompantonioulibfyaml * console.log(pkg.name) // "libfyaml" * console.log(pkg.versions[0]) // "0.9.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/pantoniou/libfyaml.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libfyamlPackage: { /** * The display name of this package. */ name: 'libfyaml'; /** * The canonical domain name for this package. */ domain: 'github.com/pantoniou/libfyaml'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/pantoniou/libfyaml/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/pantoniou/libfyaml'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/pantoniou/libfyaml -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/pantoniou/libfyaml'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['linux:gnu.org/m4']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.0']; aliases: readonly [] }; export type LibfyamlPackage = typeof libfyamlPackage