/** * **xc** - Markdown defined task runner. * * @domain `xcfile.dev` * @programs `xc` * @version `0.8.6` (28 versions available) * @versions From newest version to oldest. * * @install `launchpad install xcfile.dev` * @homepage https://xcfile.dev/ * @buildDependencies `go.dev` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xcfiledev * console.log(pkg.name) // "xc" * console.log(pkg.description) // "Markdown defined task runner." * console.log(pkg.programs) // ["xc"] * console.log(pkg.versions[0]) // "0.8.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/xcfile-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xcfiledevPackage: { /** * The display name of this package. */ name: 'xc'; /** * The canonical domain name for this package. */ domain: 'xcfile.dev'; /** * Brief description of what this package does. */ description: 'Markdown defined task runner.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/xcfile.dev/package.yml'; homepageUrl: 'https://xcfile.dev/'; githubUrl: 'https://github.com/joerdav/xc'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xcfile.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +xcfile.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xcfile.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xc']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.8.6', '0.8.5', '0.8.4', '0.8.3', '0.8.2', '0.8.1', '0.8.0', '0.7.0', '0.6.0', '0.5.0', '0.4.1', '0.4.0', '0.3.0', '0.2.0', '0.1.181', '0.1.180', '0.0.180', '0.0.175', '0.0.169', '0.0.159', '0.0.154', '0.0.152', '0.0.148', '0.0.146', '0.0.144', '0.0.142', '0.0.111', '0.0.110']; aliases: readonly [] }; export type XcfiledevPackage = typeof xcfiledevPackage