/**
 * **swift-outdated** - A swift subcommand for displaying when your dependencies (SwiftPM or Xcode) are out of date
 *
 * @domain `github.com/kiliankoe/swift-outdated`
 * @programs `swift-outdated`
 * @version `0.9.0` (6 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install swift-outdated`
 * @name `swift-outdated`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.swiftoutdated
 * // Or access via domain
 * const samePkg = pantry.githubcomkiliankoeswiftoutdated
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "swift-outdated"
 * console.log(pkg.description) // "A swift subcommand for displaying when your dep..."
 * console.log(pkg.programs)    // ["swift-outdated"]
 * console.log(pkg.versions[0]) // "0.9.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/kiliankoe/swift-outdated.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const swiftoutdatedPackage: {
  /**
   * The display name of this package.
   */
  name: 'swift-outdated';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/kiliankoe/swift-outdated';
  /**
   * Brief description of what this package does.
   */
  description: 'A swift subcommand for displaying when your dependencies (SwiftPM or Xcode) are out of date';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/kiliankoe/swift-outdated/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install swift-outdated';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['swift-outdated'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.9.0', '0.8.1', '0.8.0', '0.7.0', '0.6.0', '0.5.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type SwiftoutdatedPackage = typeof swiftoutdatedPackage