ts-pkgx
Version:
A library & CLI for managing packages
54 lines • 1.73 kB
TypeScript
/**
* **libsass** - A C/C++ implementation of a Sass compiler
*
* @domain `sass-lang.com/libsass`
* @version `3.6.6` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +sass-lang.com/libsass -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.sasslangcomlibsass
* console.log(pkg.name) // "libsass"
* console.log(pkg.description) // "A C/C++ implementation of a Sass compiler"
* console.log(pkg.versions[0]) // "3.6.6" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/sass-lang-com/libsass.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sasslangcomlibsassPackage: {
/**
* The display name of this package.
*/
name: 'libsass';
/**
* The canonical domain name for this package.
*/
domain: 'sass-lang.com/libsass';
/**
* Brief description of what this package does.
*/
description: 'A C/C++ implementation of a Sass compiler';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sass-lang.com/libsass/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +sass-lang.com/libsass -- $SHELL -i';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.6.6', '3.6.5'];
aliases: readonly []
};
export type SasslangcomlibsassPackage = typeof sasslangcomlibsassPackage