UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

13 lines (12 loc) 275 B
/** * 获取依赖列表 * @param dir 目录 * @returns dependenciesList * @example * ```ts * // 假设 ./package.json 中 dependencies 包含 axios、lodash * getDeps('./'); * // ['axios', 'lodash'] * ``` */ export declare function getDeps(dir: string): string[];