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

@ceralive/biome-config

v2026.6.2

Published

Shared Biome 2.5 configuration encoding the CeraLive/CeraUI canon style (tabs, 100-col, single quotes, Svelte/Astro/HTML/CSS + Tailwind directives on).

Downloads

206

Readme

@ceralive/biome-config

Shared Biome 2.5 configuration that encodes the CeraLive / CeraUI canon code style. Extend it from any @ceralive/* repo so every package formats and lints identically without copy-pasting config.

What it encodes

| Aspect | Value | |--------|-------| | Indent | Tabs (indentWidth: 2) | | Line width | 100 | | Line ending | lf | | JS/TS quotes | Single | | Semicolons | Always | | Trailing commas | All | | Import sorting | On (assist.organizeImports) | | Linter | recommended rules enabled | | Svelte / Astro / HTML | html.experimentalFullSupportEnabled + HTML formatter on | | CSS | Formatter on, Tailwind directives parsed (css.parser.tailwindDirectives) |

The package ships only the canon. Repo-specific overrides — e.g. CeraUI's .svelte formatter-disable, the backend's noUndeclaredVariables: off, or any files.includes globs — stay in each repo's own biome.json via overrides / top-level keys layered on top of extends.

Install

npm install --save-dev @ceralive/biome-config @biomejs/biome
# or: pnpm add -D @ceralive/biome-config @biomejs/biome
# or: bun add -d @ceralive/biome-config @biomejs/biome

Usage

Create a biome.json at your repo root that extends the shared config:

{
	"$schema": "https://biomejs.dev/schemas/2.5.0/schema.json",
	"extends": ["@ceralive/biome-config"]
}

That alone gives you tabs / 100-col / single-quote formatting plus the recommended linter rules. Layer repo-specific settings on top — extends is merged, so anything you add wins over the shared base:

{
	"$schema": "https://biomejs.dev/schemas/2.5.0/schema.json",
	"extends": ["@ceralive/biome-config"],
	"files": {
		"includes": ["src/**/*.ts", "src/**/*.svelte", "!**/dist"]
	},
	"overrides": [
		{
			"includes": ["**/*.svelte"],
			"formatter": { "enabled": false }
		}
	]
}

Then run Biome as usual:

biome check .
biome format --write .

Versioning

@ceralive/biome-config follows the CeraLive CalVer scheme YYYY.MINOR.PATCH (e.g. 2026.6.1) — the system-wide convention documented in CeraUI/docs/APT_VERSION_CONTROL.md (§ CalVer Convention) that every versioned CeraLive artifact (.deb, npm, Cargo) shares.

  • YYYY — four-digit release year.
  • MINOR — month number, not zero-padded (6 for June, not 06).
  • PATCH — monotonic counter within that year+month, starting at 1.

So 2026.6.1 is the first June 2026 release.

Releases publish on the biome-config-vYYYY.M.P tag namespace, deliberately distinct from the workspace's other release tags so a config bump ships on its own cadence. -rc.N prereleases (e.g. biome-config-v2026.6.2-rc.1) go to the npm next dist-tag; stable releases go to latest.

npm parses YYYY.MINOR.PATCH as valid semver, so caret ranges such as ^2026.6.1 resolve and match newer same-year releases exactly as they would for any semver pin. The pinned Biome schema URL in this package tracks the Biome version the canon was validated against (2.5.x).

Publishing

Releases publish to the public npm registry via npm trusted publishing (GitHub Actions OIDC) — no NPM_TOKEN. Pushing a biome-config-vX.Y.Z tag runs publish-biome-config.yml, which verifies the tag matches package.json version, validates biome.json against the Biome 2.5 schema, guards the tarball contents, then publishes via the OIDC identity exchanged against the package's trusted publisher.

npm provenance attestations are emitted automatically when the source repo is public; they are intentionally disabled while the repo is private. To cut a release: bump package.json version, merge to master, then git tag biome-config-vX.Y.Z && git push origin biome-config-vX.Y.Z.

License

AGPL-3.0