@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
20 lines (19 loc) • 703 B
TypeScript
import { TemplateType } from "../types.js";
export declare function getTemplatePackages(templateType: TemplateType, templatesPath: any): Promise<{
name: string;
version: string;
description: string;
author: string;
license: string;
dependencies: Record<string, string>;
scripts: Record<string, string>;
private: boolean;
keywords: string[];
type?: string | undefined;
homepage?: string | undefined;
bugs?: Record<string, string> | undefined;
repository?: Record<string, string> | undefined;
devDependencies?: Record<string, string> | undefined;
repositoryUrl?: string | undefined;
"lint-staged"?: Record<string, string> | undefined;
}[]>;