ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.17 kB
TypeScript
/**
* **killport** - A command-line tool to easily kill processes running on a specified port.
*
* @domain `crates.io/killport`
* @programs `killport`
* @version `1.1.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install killport`
* @name `killport`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.killport
* // Or access via domain
* const samePkg = pantry.cratesiokillport
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "killport"
* console.log(pkg.description) // "A command-line tool to easily kill processes ru..."
* console.log(pkg.programs) // ["killport"]
* console.log(pkg.versions[0]) // "1.1.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/killport.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const killportPackage: {
/**
* The display name of this package.
*/
name: 'killport';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/killport';
/**
* Brief description of what this package does.
*/
description: 'A command-line tool to easily kill processes running on a specified port.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/killport/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install killport';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['killport'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.1.0', '1.0.0', '0.9.2', '0.9.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type KillportPackage = typeof killportPackage