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

seung

v0.0.19

Published

Typescript Library

Readme

seung-boricha

Installation

npm install seung

Dependencies

SSecurity
"peerDependencies": {
  "crypto-js": "^4.0.0",
},

Logs

Create Vite App
npm create vite@latest .
npm install
Config Eslint & Prettier

Edit Files

  • package.json
  • tsconfig.node.json
  • tsconfig.app.json

Add Files

  • .prettierignore
  • .prettierrc.cjs
npm init @eslint/config@latest
> [email protected] lint
> eslint .


Oops! Something went wrong! :(

ESLint: 9.12.0

Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'eslint-plugin-jsx-a11y' imported from W:\seung-git\seung-boricha\eslint.config.js
    at new NodeError (node:internal/errors:405:5)
    at packageResolve (node:internal/modules/esm/resolve:890:9)
    at moduleResolve (node:internal/modules/esm/resolve:939:20)
    at defaultResolve (node:internal/modules/esm/resolve:1132:11)
    at nextResolve (node:internal/modules/esm/loader:163:28)
    at ESMLoader.resolve (node:internal/modules/esm/loader:835:30)
    at ESMLoader.getModuleJob (node:internal/modules/esm/loader:424:18)
    at ModuleWrap.<anonymous> (node:internal/modules/esm/module_job:77:40)
    at link (node:internal/modules/esm/module_job:76:36)
PS W:\seung-git\seung-boricha> npm install --save-dev  eslint-plugin-jsx-a11y eslint-plugin-react                      

added 114 packages, and audited 258 packages in 4s

114 packages are looking for funding
  run `npm fund` for details

found 0 vulnerabilities
PS W:\seung-git\seung-boricha> npm init @eslint/config@latest

> [email protected] npx
> create-config

@eslint/create-config: v1.3.1

√ How would you like to use ESLint? · problems
√ What type of modules does your project use? · esm
√ Which framework does your project use? · react
√ Does your project use TypeScript? · typescript
√ Where does your code run? · browser
The config that you've selected requires the following dependencies:

eslint, globals, @eslint/js, typescript-eslint, eslint-plugin-react
√ Would you like to install them now? · No / Yes
√ Which package manager do you want to use? · npm
☕️Installing...

up to date, audited 258 packages in 1s

114 packages are looking for funding
  run `npm fund` for details

found 0 vulnerabilities
Successfully created W:\seung-git\seung-boricha\eslint.config.js file.
npm install --save-dev @eslint/eslintrc eslint-config-standard eslint-plugin-jsx-a11y
npm install --save-dev prettier eslint-config-prettier eslint-plugin-prettier
Config Path Alias

Edit Files

  • vite.config.ts
  • tsconfig.app.json
  • eslint.config.js
npm install --save-dev @types/node vite-tsconfig-paths
Config NPM Library

Edit Files

  • package.json
  • vite.config.ts
  • tsconfig.app.json
npm install --save-dev vite-plugin-dts
Add Peer Dependencies
npm install --save-peer crypto-js@^4.0.0