/** * **rucola** - Terminal-based markdown note manager. * * @domain `crates.io/rucola-notes` * @programs `rucola` * @version `0.8.1` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/rucola-notes` * @dependencies `openssl.org^1.1 # as of 0.6.0` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiorucolanotes * console.log(pkg.name) // "rucola" * console.log(pkg.description) // "Terminal-based markdown note manager." * console.log(pkg.programs) // ["rucola"] * console.log(pkg.versions[0]) // "0.8.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/rucola-notes.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiorucolanotesPackage: { /** * The display name of this package. */ name: 'rucola'; /** * The canonical domain name for this package. */ domain: 'crates.io/rucola-notes'; /** * Brief description of what this package does. */ description: 'Terminal-based markdown note manager.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/rucola-notes/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/Linus-Mussmaecher/rucola'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/rucola-notes'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/rucola-notes -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/rucola-notes'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rucola']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1 # as of 0.6.0']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.8.1', '0.8.0', '0.7.0', '0.6.0', '0.5.0']; aliases: readonly [] }; export type CratesiorucolanotesPackage = typeof cratesiorucolanotesPackage