ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.42 kB
TypeScript
/**
* **swiftgen** - The Swift code generator for your assets, storyboards, Localizable.strings, … — Get rid of all String-based APIs!
*
* @domain `github.com/SwiftGen/SwiftGen`
* @programs `swiftgen`
* @version `6.6.3` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install swiftgen`
* @name `swiftgen`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.swiftgen
* // Or access via domain
* const samePkg = pantry.githubcomswiftgenswiftgen
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "swiftgen"
* console.log(pkg.description) // "The Swift code generator for your assets, story..."
* console.log(pkg.programs) // ["swiftgen"]
* console.log(pkg.versions[0]) // "6.6.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/SwiftGen/SwiftGen.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const swiftgenPackage: {
/**
* The display name of this package.
*/
name: 'swiftgen';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/SwiftGen/SwiftGen';
/**
* Brief description of what this package does.
*/
description: 'The Swift code generator for your assets, storyboards, Localizable.strings, … — Get rid of all String-based APIs!';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/SwiftGen/SwiftGen/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install swiftgen';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['swiftgen'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['6.6.3', '6.6.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) swiftgen -- $SHELL -i';
launchpadInstallCommand: 'launchpad install swiftgen'
};
export type SwiftgenPackage = typeof swiftgenPackage