/** * **cedar-agent** - Cedar-agent is the easiest way to deploy and run Cedar * * @domain `permit.io/cedar-agent` * @programs `cedar-agent` * @version `0.2.2` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install permit.io/cedar-agent` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.permitiocedaragent * console.log(pkg.name) // "cedar-agent" * console.log(pkg.description) // "Cedar-agent is the easiest way to deploy and ru..." * console.log(pkg.programs) // ["cedar-agent"] * console.log(pkg.versions[0]) // "0.2.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/permit-io/cedar-agent.md * @see https://ts-pkgx.netlify.app/usage */ export declare const permitiocedaragentPackage: { /** * The display name of this package. */ name: 'cedar-agent'; /** * The canonical domain name for this package. */ domain: 'permit.io/cedar-agent'; /** * Brief description of what this package does. */ description: 'Cedar-agent is the easiest way to deploy and run Cedar'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/permit.io/cedar-agent/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/permitio/cedar-agent'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install permit.io/cedar-agent'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +permit.io/cedar-agent -- $SHELL -i'; launchpadInstallCommand: 'launchpad install permit.io/cedar-agent'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cedar-agent']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.2', '0.2.1', '0.2.0', '0.1.4', '0.1.3']; aliases: readonly [] }; export type PermitiocedaragentPackage = typeof permitiocedaragentPackage