[READ-ONLY] Mirror of https://github.com/plttn/dotfiles.
0

Configure Feed

Select the types of activity you want to include in your feed.

Add .npmrc

Jack Platten (May 12, 2026, 10:33 PM -0700) 395104dd f985106b

+28
+28
dot_npmrc
··· 1 + 2 + ## Ignore all lifecycle scripts by default. You can 3 + ## still allow them on a per-package basis with 4 + ## @lavamoat/allow-scripts 5 + ignore-scripts=true 6 + # Avoid installing packages published in last 2 days 7 + min-release-age=3 8 + ## Don't install packages from git urls, which can 9 + ## be used to bypass the above two settings 10 + allow-git=none 11 + ## allow direct git dependencies only 12 + # allow-git=root 13 + 14 + ## Enable this if you never want to use git dependencies 15 + ## Break git usage for older npm versions that don't 16 + ## support allow-git and repositories that override it 17 + # git=false 18 + 19 + ## Don't install packages without asking (only 20 + ## applicable to old npx versions) 21 + install=false 22 + 23 + ## enable this if you don't really use npm and want to 24 + ## avoid consequences of some script calling npm or npx 25 + ## Don't install packages unless they're in local cache 26 + # offline=true 27 + ## Don't put commands from packages in PATH 28 + # bin-links=false