pnpm config get store-dirRead a pnpm configuration value.
Configuration, .npmrc, store/cache operations, and installation model settings.
Read and write pnpm configuration.
pnpm config get store-dirRead a pnpm configuration value.
pnpm config set store-dir ~/.pnpm-storeSet a pnpm configuration value.
pnpm config delete store-dirRemove a config key.
pnpm config listPrint active configuration values.
printf 'auto-install-peers=true
strict-peer-dependencies=false
' >> .npmrcWrite common pnpm/npm-compatible configuration into .npmrc.
Inspect and clean the global pnpm store.
pnpm store pathDisplay the content-addressable store location.
pnpm store statusCheck whether packages in the store were modified.
pnpm store pruneDelete unreferenced packages from the global store.
pnpm cache pathPrint the path of pnpm's metadata cache.
pnpm cache deleteClear package metadata cache entries.
Configure how dependencies are linked and installed.
Switch to a hoisted node_modules layout if needed for compatibility.
pnpm config set node-linker hoistedSwitch to a hoisted node_modules layout if needed for compatibility.
pnpm config set node-linker isolatedUse pnpm's default strict linking model.
pnpm config set shamefully-hoist trueHoist dependencies more aggressively for legacy tooling compatibility.
pnpm config set prefer-offline trueUse cached metadata and packages when possible.
pnpm config set store-dir ~/.local/share/pnpm/storePin the store location explicitly.