/** * **ox** - Independent Rust text editor that runs in your terminal * * @domain `crates.io/ox` * @programs `ox` * @version `0.7.7` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/ox` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesioox * console.log(pkg.name) // "ox" * console.log(pkg.description) // "Independent Rust text editor that runs in your ..." * console.log(pkg.programs) // ["ox"] * console.log(pkg.versions[0]) // "0.7.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/ox.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiooxPackage: { /** * The display name of this package. */ name: 'ox'; /** * The canonical domain name for this package. */ domain: 'crates.io/ox'; /** * Brief description of what this package does. */ description: 'Independent Rust text editor that runs in your terminal'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/ox/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/curlpipe/ox'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/ox'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/ox -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/ox'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ox']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.7', '0.7.6']; aliases: readonly [] }; export type CratesiooxPackage = typeof cratesiooxPackage