interface DenoJson {
    exclude?: string[];
    exports?: Record<string, string>;
    imports?: Record<string, string>;
    name: string;
    publish?: { exclude?: string[] };
    version: string;
}

Properties

exclude?: string[]
exports?: Record<string, string>
imports?: Record<string, string>
name: string
publish?: { exclude?: string[] }
version: string