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

@webpresso/app-config

v0.5.2

Published

Shared vitest, tsconfig, stryker, workers-test, and oxlint policy plugins for webpresso consumers. Binary-free — pure test/config tooling.

Downloads

608

Readme

@webpresso/app-config

Shared consumer-facing config presets and low-level primitive re-exports for webpresso consumers.

@webpresso/app-config is the package consumers install. It owns the stable config surface (/vitest/*, /tsconfig/*, /stryker, /workers-test) and now also re-exports the shared low-level primitives sourced from @webpresso/app-core.

Consumers should import these APIs from @webpresso/app-config, not from @webpresso/app-core and never from @webpresso/agent-kit.

Consumer primitive subpaths

| Subpath | Purpose | | --------------------------------- | ------------------------------------------------------------------------------------- | | @webpresso/app-config/repo-root | Strict repo-root discovery (findRepoRoot, resolveFromRepoRoot, walkToRepoRoot). | | @webpresso/app-config/process | Process-tree signalling and graceful-then-forceful termination. | | @webpresso/app-config/e2e | Open-port resolution, HTTP health polling, fail-closed secret-env resolution. | | @webpresso/app-config/deploy | Semantic release-version assertion and release-metadata validation. | | @webpresso/app-config/dev | Workspace-local binary/command resolution and child-process env construction. |

Existing config/test surface

@webpresso/app-config continues to publish:

  • @webpresso/app-config/tsconfig/*
  • @webpresso/app-config/vitest/*
  • @webpresso/app-config/stryker
  • @webpresso/app-config/workers-test
  • @webpresso/app-config/oxlint/* (policy plugins)

The Vitest surface includes stable group ordering, explicit staged-worker selection, and root-aware Node project construction. Consumers keep ownership of package-specific worker defaults, include patterns, aliases, and setup files.

Oxlint policy plugins (consumer SSOT)

Monorepo and other consumer repos load shared policy plugins from @webpresso/app-config/oxlint/* — not from @webpresso/agent-kit.

| Subpath | Purpose | | -------------------------------------------------- | ----------------------------------------- | | @webpresso/app-config/oxlint/code-safety | as-any / swallowed-error audit | | @webpresso/app-config/oxlint/foundation-purity | foundation tier purity | | @webpresso/app-config/oxlint/graphql-conventions | GraphQL app conventions | | @webpresso/app-config/oxlint/import-hygiene | relative-parent, SEA schema/ui ban | | @webpresso/app-config/oxlint/monorepo-paths | hardcoded repo-root / cross-package paths | | @webpresso/app-config/oxlint/query-patterns | TanStack Query patterns | | @webpresso/app-config/oxlint/testing-quality | weak assertion / mock hygiene | | @webpresso/app-config/oxlint/tier-boundaries | package-tier import direction | | @webpresso/app-config/oxlint/path-roles | shared path classifiers (no AST) |

Example jsPlugins (package names resolve through Node exports; oxlint uses createRequire so each subpath needs default/require conditions):

{
  "jsPlugins": [
    "@webpresso/app-config/oxlint/import-hygiene",
    "@webpresso/app-config/oxlint/tier-boundaries"
  ]
}

agent-kit re-exports the same modules for its inject-relative oxlintrc.json used by wp lint on consumers that do not ship a local .oxlintrc.

Relationship to other packages

  • @webpresso/app-config — consumer-installed package surface
  • @webpresso/app-core — internal shared leaf that backs the primitive re-exports
  • @webpresso/agent-kit — internal wp engine / CLI and broader public subpath host