UNPKG

npm-install-size

Version:

Check the install size of any NPM package before installing it.

12 lines (11 loc) 306 B
import fs from 'fs/promises'; import path from 'path'; export async function loadConfig() { const configPath = path.join(process.cwd(), '.npm-install-sizerc'); try { const content = await fs.readFile(configPath, 'utf8'); return JSON.parse(content); } catch { return {}; } }