/** * **slides** - Terminal based presentation tool * * @domain `maaslalani.com/slides` * @programs `slides` * @version `0.9.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install maaslalani.com/slides` * @homepage http://maaslalani.com/slides/ * @buildDependencies `go.dev@^1.18` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.maaslalanicomslides * console.log(pkg.name) // "slides" * console.log(pkg.description) // "Terminal based presentation tool" * console.log(pkg.programs) // ["slides"] * console.log(pkg.versions[0]) // "0.9.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/maaslalani-com/slides.md * @see https://ts-pkgx.netlify.app/usage */ export declare const maaslalanicomslidesPackage: { /** * The display name of this package. */ name: 'slides'; /** * The canonical domain name for this package. */ domain: 'maaslalani.com/slides'; /** * Brief description of what this package does. */ description: 'Terminal based presentation tool'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/maaslalani.com/slides/package.yml'; homepageUrl: 'http://maaslalani.com/slides/'; githubUrl: 'https://github.com/maaslalani/slides'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install maaslalani.com/slides'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +maaslalani.com/slides -- $SHELL -i'; launchpadInstallCommand: 'launchpad install maaslalani.com/slides'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['slides']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.18']; /** * 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 MaaslalanicomslidesPackage = typeof maaslalanicomslidesPackage