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

@solcreek/adapter-core

v0.3.0

Published

[DEPRECATED — re-export shim] Use @solcreek/adapter-next-core for Next-specific helpers and @solcreek/creekd-manifest for the creekd manifest contract.

Readme

@solcreek/adapter-core

npm

[!WARNING] @solcreek/adapter-core is being wound down. Starting with v0.3.0 this package is a thin re-export shim — every Next-specific helper and the creekd manifest types live in dedicated successor packages now. Existing imports keep working through the shim, but new code should import directly from the successor packages.

The package will be archived after one release cycle of zero direct imports across the SolCreek adapter family.

Migration map

| Old import | New import | |---|---| | import { applyBaseModifyConfig, type BaseModifyConfigOptions } from "@solcreek/adapter-core" | import { ... } from "@solcreek/adapter-next-core" | | import { collectEntryFiles, detectPackagesNeedingTranspile, looksLikeJsxInJs } from "@solcreek/adapter-core" | import { ... } from "@solcreek/adapter-next-core" | | import CacheHandler from "@solcreek/adapter-core/cache-handler" | import CacheHandler from "@solcreek/adapter-next-core/cache-handler" | | cacheHandler: require.resolve("@solcreek/adapter-core/cache-handler") (in next.config.js) | cacheHandler: require.resolve("@solcreek/adapter-next-core/cache-handler") | | import { type CreekdDeployManifest, isCreekdDeployManifest, type CreekdRuntime, isCreekdRuntime } from "@solcreek/adapter-core" | import { ... } from "@solcreek/creekd-manifest" | | import { findRepoRoot, type DeployManifestBase } from "@solcreek/adapter-core" | unchanged — stays here |

@solcreek/adapter-next-core owns the Next.js-specific surface (config mutations, transpile detection, in-memory cacheHandler).

@solcreek/creekd-manifest owns the creekd manifest contract — the Go-side canonical lives at solcreek/creekd/api/manifest, with CI enforcing cross-language parity.

What still lives here (and will after the wind-down)

| Export | Purpose | |---|---| | findRepoRoot(startDir) | Walks up looking for pnpm-workspace.yaml, turbo.json, or a workspace-rooted package.json. Genuinely framework-neutral. | | DeployManifestBase | TypeScript type for fields every deploy manifest carries (version, target, optional env etc.). Used by both Next adapters' own manifest types. |

If adapter-core is archived, these two move to whichever successor package needs them most — but neither imports anything Next.js-specific, so they have no urgency to migrate.

Why split?

The original framing — "Portable Next.js adapter utilities" — described two unrelated concerns that ended up bundled together:

  1. Helpers two Next adapters share (applyBaseModifyConfig, transpilePackages detection, in-memory cacheHandler). These belong with Next consumers and have no business in a non-Next adapter's dep tree.
  2. The creekd manifest contract (CreekdDeployManifest and friends). This is framework-neutral — every adapter that targets creekd writes one, regardless of whether it's Next.js, SvelteKit, Astro, or hand-rolled. Pulling it out of an "adapter-core" named for Next utilities lets @solcreek/svelte-adapter and future Vue/Solid adapters depend on it cleanly.

Splitting adapter-core into two named-for-what-they-do packages (adapter-next-core and creekd-manifest) makes the dependency graph reflect those concerns honestly. adapter-core shrinking to a shim is the end-state of that cleanup.

License

Apache-2.0