UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.15 kB
/** * **rename** - Rename multiple files * * @domain `plasmasturm.org/rename` * @programs `rename` * @version `1.601.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install rename` * @name `rename` * @dependencies `perl.org>=5` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.rename * // Or access via domain * const samePkg = pantry.plasmasturmorgrename * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rename" * console.log(pkg.description) // "Rename multiple files" * console.log(pkg.programs) // ["rename"] * console.log(pkg.versions[0]) // "1.601.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/plasmasturm-org/rename.md * @see https://ts-pkgx.netlify.app/usage */ export declare const renamePackage: { /** * The display name of this package. */ name: 'rename'; /** * The canonical domain name for this package. */ domain: 'plasmasturm.org/rename'; /** * Brief description of what this package does. */ description: 'Rename multiple files'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/plasmasturm.org/rename/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rename'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rename']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['perl.org>=5']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.601.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type RenamePackage = typeof renamePackage