export type StringMap = { [key: string]: string; }; export interface NodePackage { lcap: boolean; cds: any; name: string; version: string; dependencies: StringMap; devDependencies: StringMap; 'sap.project': { type?: string; plugins?: string[]; properties?: StringMap; }; 'sap.project.module': { type?: string; }; }