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

@kalisio/meta-ekosystem

v0.7.0

Published

Kalisio's meta-repo for sharing tools, configurations, and conventions

Downloads

941

Readme

meta-ekosystem

Latest Release Download Status License: MIT

Kalisio's meta-repo for sharing tools, configurations, and conventions


This repository centralizes common development resources used across Kalisio projects, including:

  • A meta package catalog for ecosystem management
  • Various scripts to be included in monorepo projects that includes this meta-repo
  • Various code generators to help creating monorepo projects
  • Common conventions

[!IMPORTANT] Before getting started, make sure you have the following prerequisites installed:

Usage

Installation

git clone https://github.com/kalisio/meta-ekosystem
pnpm install
pnpm link --global

Resources

Catalog

The catalog.json file, also referred to as the meta-catalog, centralizes and maintains the list of all dependencies, along with their respective versions, to ensure consistency and alignment across the Kalisio ecosystem.

[!TIP] Use the k-sync-catalog commands to keep your local catalog synchronized with this meta-catalog.

Commands

The commands are intended to be used by monorepo projects that depend on this repository.

[!TIP] To run a command from this repository, use: node ./bin/<command>

k-init-monorepo

  • Description

It generates a monorepo skeleton with the following structure:

monorepo
── .changeset
│   └── config.json
├── docs
│   ├── index.md.hbs
│   ├── overview
│   │   ├── about.md.hbs
│   │   ├── changelog.md
│   │   ├── contact.md
│   │   ├── contributing.md.hbs
│   │   ├── license.md
│   │   └── roadmap.md.hbs
│   └── .vitepress
│       ├── config.mjs.hbs
│       ├── packages.json
│       ├── sidebar.mjs
│       └── theme
│           ├── custom.css
│           └── index.js
├── .editorconfig
├── .gitignore
├── .husky
│   └── pre-commit
├── LICENSE.md
├── package.json.hbs
├── pnpm-workspace.yaml
├── README.md.hbs
├── sonar-project.properties.hbs
├── vite.base-config.js
└── vitest.base-config.js
  • Usage
pnpm k-init-monorepo

[!NOTE] You will be prompted for the repository name and path.

k-init-package

  • Description

It generates a package skeleton with the following structure:

package
├── LICENSE.md
├── package.json
├── README.md
├── vite.config.js
└── vitest.config.js

And it updates the documentation configuration accordingly:

  • an entry is added to the packages.json file, which is used to build the documentation.
  • a folder containing an index.md file is added to the packages directory.
  • Usage
pnpm k-init-package

[!NOTE] You will be prompted for the package name and description.

k-init-example

  • Description

It generates an example skeleton with the following structure:

package
├── LICENSE.md
├── package.json
├── README.md
└── vite.config.js
  • Usage
pnpm k-init-example

[!NOTE] You will be prompted for the example name.

[!IMPORTANT] The name is used to declare the dependency on the package named @kalisio/<name>

k-sync-catalog

  • Description

It synchronizes your project catalog by merging the meta-catalog with an existing local catalog file and updating the catalog property in pnpm-workspace.yaml.

  • Usage
pnpm k-sync-catalog

Contributing

Guidelines

Found a bug ? Missing a feature ? Want to contribute ? Please refer to our contribution guidelines for details.

Development

Setup

# Clone the repository
git clone https://github.com/kalisio/meta-ekosystem.git
cd meta-ekosystem

# Install dependencies
pnpm install

# Link globally (make the binaries available system-wide)
pnpm link

Local linking

This repository provides global binaries to help manage the monorepo ecosystem. During development, you will often need to link this package to other projects to test the features you are working on.

If you're working on multiple packages simultaneously:

# In the meta-ekosystem directory
pnpm link --global

# In your project directory
pnpm link --global @kalisio/meta-ekosystem

Or for a direct local link:

# In your project directory
pnpm link ../path/to/meta-ekosystem

To stop linking a local version and switch back to the published version:

# In your project directory
pnpm unlink @kalisio/meta-ekosystem

Linting

# In the meta-ekosystem directory
pnpm lint

[!NOTE] This repository follows the standardJS style guide for linting and code consistency. By default, standard is called with the --fix option to automatically fix style issues before committing.

Versioning

Create changesets as needed during the development phase using:

pnpm changeset

[!NOTE] It is recommended to create a changeset for each significant commit, e.g., a fix or feat.

Then update the version using:

pnpm changeset:version

And commit the changes:

git add .
git commit -m "chore: released <new version>"
git push

Publishing

To publish this package to NPM, use:

pnpm changeset:publish
git push --follow-tags

[!NOTE] When publishing a tag will be created corresponding to the version defined in the package.json

License

Licensed under the MIT License.

Copyright (c) 2026 Kalisio

Kalisio