/** * **d2** - D2 is a modern diagram scripting language that turns text to diagrams. * * @domain `d2lang.com` * @programs `d2` * @version `0.7.1` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install d2lang.com` * @homepage https://d2lang.com/ * @buildDependencies `go.dev@^1.20` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.d2langcom * console.log(pkg.name) // "d2" * console.log(pkg.description) // "D2 is a modern diagram scripting language that ..." * console.log(pkg.programs) // ["d2"] * console.log(pkg.versions[0]) // "0.7.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/d2lang-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const d2langcomPackage: { /** * The display name of this package. */ name: 'd2'; /** * The canonical domain name for this package. */ domain: 'd2lang.com'; /** * Brief description of what this package does. */ description: 'D2 is a modern diagram scripting language that turns text to diagrams.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/d2lang.com/package.yml'; homepageUrl: 'https://d2lang.com/'; githubUrl: 'https://github.com/terrastruct/d2'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install d2lang.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +d2lang.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install d2lang.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['d2']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.20']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.1', '0.7.0', '0.6.9', '0.6.8', '0.6.7', '0.6.6', '0.6.5', '0.6.4', '0.6.3', '0.6.2', '0.6.1', '0.6.0']; aliases: readonly [] }; export type D2langcomPackage = typeof d2langcomPackage