ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.26 kB
TypeScript
/**
* **sassc** - Wrapper around libsass that helps to create command-line apps
*
* @domain `sass-lang.com/sassc`
* @programs `sassc`
* @version `3.6.2` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sassc`
* @name `sassc`
* @dependencies `sass-lang.com/libsass^3.6.5`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.sassc
* // Or access via domain
* const samePkg = pantry.sasslangcomsassc
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sassc"
* console.log(pkg.description) // "Wrapper around libsass that helps to create com..."
* console.log(pkg.programs) // ["sassc"]
* console.log(pkg.versions[0]) // "3.6.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/sass-lang-com/sassc.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sasscPackage: {
/**
* The display name of this package.
*/
name: 'sassc';
/**
* The canonical domain name for this package.
*/
domain: 'sass-lang.com/sassc';
/**
* Brief description of what this package does.
*/
description: 'Wrapper around libsass that helps to create command-line apps';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sass-lang.com/sassc/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install sassc';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sassc'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['sass-lang.com/libsass^3.6.5'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.6.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type SasscPackage = typeof sasscPackage