ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.72 kB
TypeScript
/**
* **sccache** - Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible. Sccache has the capability to utilize caching in remote storage environments, including various cloud storage options, or alternatively, in local storage.
*
* @domain `crates.io/sccache`
* @programs `sccache`
* @version `0.10.0` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sccache`
* @name `sccache`
* @dependencies `openssl.org^1.1`, `curl.se/ca-certs`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.sccache
* // Or access via domain
* const samePkg = pantry.cratesiosccache
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sccache"
* console.log(pkg.description) // "Sccache is a ccache-like tool. It is used as a ..."
* console.log(pkg.programs) // ["sccache"]
* console.log(pkg.versions[0]) // "0.10.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/sccache.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sccachePackage: {
/**
* The display name of this package.
*/
name: 'sccache';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/sccache';
/**
* Brief description of what this package does.
*/
description: 'Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible. Sccache has the capability to utilize caching in remote storage environments, including various cloud storage options, or alternatively, in local storage.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/sccache/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install sccache';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sccache'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1.1', 'curl.se/ca-certs'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.10.0', '0.9.1', '0.9.0', '0.8.2', '0.8.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type SccachePackage = typeof sccachePackage