ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.48 kB
TypeScript
/**
* **cedar** - Implementation of the Cedar Policy Language
*
* @domain `cedarpolicy.com/cli`
* @programs `cedar`
* @version `4.5.1` (36 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install cedar`
* @name `cedar`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.cedar
* // Or access via domain
* const samePkg = pantry.cedarpolicycomcli
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "cedar"
* console.log(pkg.description) // "Implementation of the Cedar Policy Language"
* console.log(pkg.programs) // ["cedar"]
* console.log(pkg.versions[0]) // "4.5.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/cedarpolicy-com/cli.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const cedarPackage: {
/**
* The display name of this package.
*/
name: 'cedar';
/**
* The canonical domain name for this package.
*/
domain: 'cedarpolicy.com/cli';
/**
* Brief description of what this package does.
*/
description: 'Implementation of the Cedar Policy Language';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cedarpolicy.com/cli/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install cedar';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['cedar'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.5.1', '4.5.0', '4.4.1', '4.4.0', '4.3.3', '4.3.2', '4.3.1', '4.3.0', '4.2.2', '4.2.1', '4.2.0', '4.1.0', '4.0.0', '3.4.1', '3.4.0', '3.3.0', '3.2.4', '3.2.1', '3.2.0', '3.1.4', '3.1.3', '3.1.2', '3.1.1', '3.1.0', '3.0.1', '3.0.0', '2.5.0', '2.4.7', '2.4.6', '2.4.5', '2.4.4', '2.4.3', '2.4.2', '2.4.1', '2.4.0', '2.3.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) cedar -- $SHELL -i';
launchpadInstallCommand: 'launchpad install cedar'
};
export type CedarPackage = typeof cedarPackage