UNPKG

@kya-os/cli

Version:

CLI for MCP-I setup and management

54 lines 1.35 kB
export type Platform = 'nextjs' | 'vercel' | 'lambda' | 'docker' | 'cloudflare' | 'cloudflare-pages' | 'node' | 'unknown'; export interface PlatformInfo { platform: Platform; version?: string; hasVercel: boolean; hasDocker: boolean; framework?: string; packageManager: 'npm' | 'yarn' | 'pnpm'; } export declare function detectPlatform(projectRoot?: string): PlatformInfo; export declare function getPlatformSpecificConfig(platform: Platform): { storage: string; transport: string; envFile: string; instructions: string[]; } | { storage: string; transport: string; envFile: string; instructions: string[]; } | { storage: string; transport: string; envFile: string; instructions: string[]; } | { storage: string; transport: string; envFile: string; instructions: string[]; } | { storage: string; transport: string; envFile: string; instructions: string[]; } | { storage: string; transport: string; envFile: string; package: string; instructions: string[]; } | { storage: string; transport: string; envFile: string; package: string; instructions: string[]; } | { storage: string; transport: string; envFile: string; instructions: string[]; }; //# sourceMappingURL=platform-detector.d.ts.map