ts-pkgx
Version:
A library & CLI for managing packages
62 lines • 2.48 kB
TypeScript
/**
* **github.com/p7zip-project/p7zip** - A new p7zip fork with additional codecs and improvements (forked from https://sourceforge.net/projects/sevenzip/ AND https://sourceforge.net/projects/p7zip/).
*
* @domain `github.com/p7zip-project/p7zip`
* @programs `7z`, `7za`, `7zr`
* @version `17.5.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install github.com/p7zip-project/p7zip`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.githubcomp7zipprojectp7zip
* console.log(pkg.name) // "github.com/p7zip-project/p7zip"
* console.log(pkg.description) // "A new p7zip fork with additional codecs and imp..."
* console.log(pkg.programs) // ["7z", "7za", ...]
* console.log(pkg.versions[0]) // "17.5.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/p7zip-project/p7zip.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const githubcomp7zipprojectp7zipPackage: {
/**
* The display name of this package.
*/
name: 'github.com/p7zip-project/p7zip';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/p7zip-project/p7zip';
/**
* Brief description of what this package does.
*/
description: 'A new p7zip fork with additional codecs and improvements (forked from https://sourceforge.net/projects/sevenzip/ AND https://sourceforge.net/projects/p7zip/).';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/p7zip-project/p7zip/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install github.com/p7zip-project/p7zip';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['7z', '7za', '7zr'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['17.5.0'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/p7zip-project/p7zip -- $SHELL -i';
launchpadInstallCommand: 'launchpad install github.com/p7zip-project/p7zip'
};
export type Githubcomp7zipprojectp7zipPackage = typeof githubcomp7zipprojectp7zipPackage