UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.46 kB
/** * **sourcekitten** - An adorable little framework and command line tool for interacting with SourceKit. * * @domain `github.com/jpsim/SourceKitten` * @programs `sourcekitten` * @version `0.37.2` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install sourcekitten` * @name `sourcekitten` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.sourcekitten * // Or access via domain * const samePkg = pantry.githubcomjpsimsourcekitten * console.log(pkg === samePkg) // true * console.log(pkg.name) // "sourcekitten" * console.log(pkg.description) // "An adorable little framework and command line t..." * console.log(pkg.programs) // ["sourcekitten"] * console.log(pkg.versions[0]) // "0.37.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/jpsim/SourceKitten.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sourcekittenPackage: { /** * The display name of this package. */ name: 'sourcekitten'; /** * The canonical domain name for this package. */ domain: 'github.com/jpsim/SourceKitten'; /** * Brief description of what this package does. */ description: 'An adorable little framework and command line tool for interacting with SourceKit.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jpsim/SourceKitten/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/jpsim/SourceKitten'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sourcekitten'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sourcekitten']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.37.2', '0.37.1', '0.37.0', '0.36.0', '0.35.0', '0.34.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) sourcekitten -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sourcekitten' }; export type SourcekittenPackage = typeof sourcekittenPackage