/** * **plakar** - pkgx package * * @domain `plakar.io` * @version `1.0.6` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install plakar.io` * @buildDependencies `go.dev@^1.23` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.plakario * console.log(pkg.name) // "plakar" * console.log(pkg.versions[0]) // "1.0.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/plakar-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const plakarioPackage: { /** * The display name of this package. */ name: 'plakar'; /** * The canonical domain name for this package. */ domain: 'plakar.io'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/plakar.io/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install plakar.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +plakar.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install plakar.io'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.23']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.0.6', '1.0.5', '1.0.4', '1.0.3', '1.0.2']; aliases: readonly [] }; export type PlakarioPackage = typeof plakarioPackage