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