UNPKG

vulnzap-core

Version:

Secure AI-generated code by intercepting vulnerabilities in real-time

26 lines (25 loc) 500 B
/** * Configuration for VulnZap * * Environment variables should be set in a .env file or in the system environment */ export declare const config: { app: { name: string; version: string; homeDir: string; tokenStorageKey: string; dataDir: string; }; server: { port: number; host: string; }; api: { vulnerability: { github: string; nvd: string; }; }; }; export default config;