@pulzar/cli
Version:
Ultimate command-line interface for Pulzar framework - scaffolding, development server, building, testing, code generation, health diagnostics, security auditing, and deployment tools for modern Node.js applications
30 lines • 851 B
TypeScript
export declare const cli = "pulzar";
export declare const version: any;
export interface CLIOptions {
template?: string;
database?: string;
port?: string;
watch?: boolean;
edge?: boolean;
output?: string;
coverage?: boolean;
skipInstall?: boolean;
host?: string;
minify?: boolean;
}
export interface ProjectTemplate {
name: string;
description: string;
files: Record<string, string>;
dependencies: string[];
devDependencies: string[];
scripts: Record<string, string>;
}
export declare const getVersion: () => any;
export declare const getCLIName: () => string;
export { logger } from "./utils/logger.js";
export * from "./commands/new.js";
export * from "./commands/dev.js";
export * from "./commands/build.js";
export * from "./commands/build-di.js";
//# sourceMappingURL=index.d.ts.map