npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@savvy-web/pnpm-plugin-silk

v0.34.3

Published

pnpm config dependency for centralized catalog management across the Silk ecosystem.

Readme

@savvy-web/pnpm-plugin-silk

npm License: MIT Node.js %3E%3D24.11.0 TypeScript 7.0 pnpm

Centralized dependency-version management for the Silk ecosystem, delivered as a pnpm config dependency. Define dependency catalogs, security overrides and install-time policy once, then share them across every repository in the ecosystem.

Install

Add as a config dependency using pnpm:

pnpm add --config @savvy-web/pnpm-plugin-silk
# writes the configDependencies entry shown below into pnpm-workspace.yaml

The entry carries the required integrity hash, which pnpm fills in along with the version:

configDependencies:
  "@savvy-web/pnpm-plugin-silk": "npm:@savvy-web/pnpm-plugin-silk@<version>+sha512-..."

Quick start

Reference Silk catalogs in your package.json:

{
  "devDependencies": {
    "tsdown": "catalog:build",
    "typescript": "catalog:build",
    "vitest": "catalog:test"
  },
  "peerDependencies": {
    "typescript": "catalog:build:peers"
  }
}

A catalog supplies the current version for a direct dependency, and its :peers companion supplies the permissive range for the same package declared as a peer. Security overrides, build allowlists and hoist patterns merge automatically during pnpm install.

Catalogs

Five catalogs ship with the plugin, each paired with a :peers variant that carries wider ranges for peerDependencies.

| Catalog | Peer catalog | Contents | | ------- | ------------ | --------- | | build | build:peers | tsdown, rolldown, @rsbuild/core, the @tsdown/* add-ons, TypeScript, tsx, React and the matching @types/* packages | | docs | docs:peers | @rspress/core and its sitemap and mermaid plugins, VitePress, Vite, React and the matching @types/* packages | | lint | lint:peers | Biome, @changesets/cli, commitlint, husky, lint-staged, markdownlint-cli2 and Turborepo | | silk | silk:peers | the shared repo toolchain that has no more specific home: TypeScript and the native-preview compiler, tsx, husky, lint-staged, markdownlint-cli2, React and the @types/* packages | | test | test:peers | Vitest and its Istanbul and V8 coverage providers |

Effect is not one of them. effect and the whole @effect/* family come from @effected/pnpm-plugin-effect as catalog:effect and catalog:effect:peers, so a repo that builds on Effect installs that config dependency alongside this one.

Features

  • Purpose-scoped catalogs — five catalog pairs keyed by what the dependency is for, rather than one flat list every consumer inherits whole
  • Security overrides — centralized CVE fixes and compatibility pins via overrides that propagate to every consuming repository
  • Build allowlist — an allowBuilds map controls which packages may run install scripts; consuming repos extend it per key
  • Security defaultsstrictDepBuilds, blockExoticSubdeps and minimumReleaseAge are enforced by default; weakening one triggers a warning
  • Workspace settings inheritancepublicHoistPattern and allowedDeprecatedVersions merge into consuming workspaces
  • Peer dependency rulespeerDependencyRules.allowedVersions suppresses common peer-dependency warnings
  • Non-destructive merging — local definitions always win, with warnings when they diverge from the shared defaults

License

MIT