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

@kubosho/configs

v6.5.15

Published

My Web frontend tool configs

Readme

@kubosho/configs

My Web frontend tool configs. Inspired by @3846masa/configs.

npm version

Install

npm add -DE @kubosho/configs

Attention: This package provides only config files. Please install required tools (e.g. ESLint, Prettier, etc.) in your project.

Usage

ESLint

Install the required dependencies:

npm add -DE @eslint/js eslint eslint-config-prettier eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react eslint-plugin-simple-import-sort typescript-eslint

In use eslint.config.mjs:

import config from '@kubosho/configs/eslint';

export default {
  ...config,
};

Markdownlint

Install the required dependencies:

# For markdownlint-cli2 (recommended if you want to use extends)
npm add -DE markdownlint-cli2

# OR for markdownlint-cli
npm add -DE markdownlint-cli

In use .markdownlint.json:

{
  "extends": "@kubosho/configs/markdownlint"
}

Note: The extends property only works with markdownlint-cli2. If using markdownlint-cli, you'll need to manually merge the configuration.

Markuplint

Install the required dependencies:

npm add -DE markuplint

In use markuplint.config.mjs:

import config from '@kubosho/configs/markuplint';

export default {
  ...config,
};

Prettier

Install the required dependencies:

npm add -DE prettier

In use prettier.config.mjs:

import config from '@kubosho/configs/prettier';

export default {
  ...config,
};

Renovate

No npm packages required (GitHub App configuration only).

{
  "extends": ["github>kubosho/configs//renovate/default"]
}

Semantic Release

Install the required dependencies:

npm add -DE @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/git @semantic-release/github @semantic-release/npm @semantic-release/release-notes-generator conventional-changelog-conventionalcommits semantic-release

In use release.config.mjs:

import config from '@kubosho/configs/semantic_release';

export default {
  ...config,
};

Stylelint

Install the required dependencies:

npm add -DE stylelint stylelint-config-recommended

In use stylelint.config.mjs:

import config from '@kubosho/configs/stylelint';

export default {
  ...config,
};

Textlint

Install the required dependencies:

npm add -DE textlint textlint-rule-ja-no-weak-phrase textlint-filter-rule-comments textlint-rule-no-dead-link textlint-rule-no-doubled-joshi textlint-rule-preset-ai-writing textlint-rule-preset-jtf-style

In use .textlintrc.js:

const config = require('@kubosho/configs/textlint');

module.exports = {
  ...config,
};

TypeScript

Install the required dependencies:

npm add -DE typescript

In use tsconfig.json:

{
  "extends": "@kubosho/configs/typescript/tsconfig.json"
}