peezy-cli
Version:
Production-ready CLI for scaffolding modern applications with curated full-stack templates, intelligent migrations, and enterprise security.
17 lines (16 loc) • 436 B
TypeScript
/**
* Security commands for template verification and trust management
*/
import { Command } from "commander";
/**
* Verify command - verify template signature
*/
export declare function createVerifyCommand(): Command;
/**
* Trust command - manage trusted signers
*/
export declare function createTrustCommand(): Command;
/**
* Audit command - security audit of project
*/
export declare function createAuditCommand(): Command;