UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.55 kB
/** * **periphery** - A tool to identify unused code in Swift projects. * * @domain `github.com/peripheryapp/periphery` * @programs `periphery` * @version `3.2.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install periphery` * @name `periphery` * @dependencies `curl.se`, `gnome.org/libxml2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.periphery * // Or access via domain * const samePkg = pantry.githubcomperipheryappperiphery * console.log(pkg === samePkg) // true * console.log(pkg.name) // "periphery" * console.log(pkg.description) // "A tool to identify unused code in Swift projects." * console.log(pkg.programs) // ["periphery"] * console.log(pkg.versions[0]) // "3.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/peripheryapp/periphery.md * @see https://ts-pkgx.netlify.app/usage */ export declare const peripheryPackage: { /** * The display name of this package. */ name: 'periphery'; /** * The canonical domain name for this package. */ domain: 'github.com/peripheryapp/periphery'; /** * Brief description of what this package does. */ description: 'A tool to identify unused code in Swift projects.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/peripheryapp/periphery/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install periphery'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['periphery']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['curl.se', 'gnome.org/libxml2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.2.0', '3.1.0', '3.0.3', '3.0.2', '3.0.1', '3.0.0', '2.21.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) periphery -- $SHELL -i'; launchpadInstallCommand: 'launchpad install periphery' }; export type PeripheryPackage = typeof peripheryPackage