UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.37 kB
/** * **rswift** - Strong typed, autocompleted resources like images, fonts and segues in Swift projects * * @domain `github.com/mac-cain13/R.swift` * @programs `rswift` * @version `7.8.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install rswift` * @name `rswift` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.rswift * // Or access via domain * const samePkg = pantry.githubcommaccain13rswift * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rswift" * console.log(pkg.description) // "Strong typed, autocompleted resources like imag..." * console.log(pkg.programs) // ["rswift"] * console.log(pkg.versions[0]) // "7.8.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/mac-cain13/R-swift.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rswiftPackage: { /** * The display name of this package. */ name: 'rswift'; /** * The canonical domain name for this package. */ domain: 'github.com/mac-cain13/R.swift'; /** * Brief description of what this package does. */ description: 'Strong typed, autocompleted resources like images, fonts and segues in Swift projects'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/mac-cain13/R.swift/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rswift'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rswift']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.8.0', '7.7.0', '7.6.1', '7.6.0', '7.5.0', '7.4.0', '7.3.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) rswift -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rswift' }; export type RswiftPackage = typeof rswiftPackage