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

@cinaconnect/cli

v0.2.0

Published

CLI tool for CinaConnect SDK — init, add, build, test

Downloads

19

Readme

@cinaconnect/cli

Command-line interface for the CinaConnect self-hosted wallet connection toolkit.

Installation

npm install -g @cinaconnect/cli
# or
npx @cinaconnect/cli <command>

Commands

init — Scaffold a new CinaConnect project

cinaconnect init my-app
cinaconnect init my-app --template react
cinaconnect init my-app --template next --package-manager pnpm
cinaconnect init my-app --dry-run

| Option | Description | Default | |---|---|---| | --template | Template to use (web, react, vue, next) | web | | --package-manager | Package manager (npm, yarn, pnpm) | pnpm | | --dry-run | Show what would be created without writing | false |

add — Add adapters, plugins, or components

cinaconnect add @cinaconnect/react
cinaconnect add @cinaconnect/swap-sdk --dev
cinaconnect list   # List all available addons

| Option | Description | Default | |---|---|---| | --dev | Add as devDependency | false |

Available addons:

| Addon | Description | |---|---| | @cinaconnect/evm | EVM chain adapter | | @cinaconnect/solana | Solana chain adapter | | @cinaconnect/bitcoin | Bitcoin chain adapter | | @cinaconnect/react | React UI components | | @cinaconnect/vue | Vue UI components | | @cinaconnect/react-native | React Native components | | @cinaconnect/swap-sdk | DEX swap aggregator | | @cinaconnect/siwe | Sign-In With Ethereum | | @cinaconnect/onramp-sdk | Fiat on-ramp aggregator | | @cinaconnect/walletconnect-v2 | WalletConnect v2 integration | | @cinaconnect/session-keys | ERC-4337 session keys | | @cinaconnect/social-login | Social login providers |

build — Build SDK packages

cinaconnect build
cinaconnect build --scope @cinaconnect/core
cinaconnect build --force

| Option | Description | Default | |---|---|---| | --scope | Build a specific package only | all packages | | --force | Force rebuild (clean dist first) | false |

test — Run tests

cinaconnect test              # Run all tests
cinaconnect test --unit       # Unit tests only
cinaconnect test --e2e        # E2E tests only
cinaconnect test --coverage   # With coverage
cinaconnect test --watch      # Watch mode
cinaconnect test --ui         # Playwright UI mode
cinaconnect test --project chromium

| Option | Description | Default | |---|---|---| | --unit | Run unit tests only (vitest) | — | | --e2e | Run E2E tests only (playwright) | — | | --coverage | Generate coverage report | false | | --watch | Watch mode (unit tests only) | false | | --project | Playwright project name | all | | --ui | Playwright UI mode | false |

Programmatic Usage

import { program } from '@cinaconnect/cli';

program.parse(['node', 'cli', 'init', 'my-app', '--template', 'react']);

Architecture

packages/cli/
├── src/
│   ├── index.ts              # CLI entry (commander setup)
│   ├── commands/
│   │   ├── init.ts           # ocx init — scaffold projects
│   │   ├── add.ts            # ocx add — add dependencies
│   │   ├── build.ts          # ocx build — turbo builds
│   │   └── test.ts           # ocx test — run vitest + playwright
│   └── utils/
│       ├── fs.ts             # File system utilities
│       └── logger.ts         # Colored logger + spinner
├── package.json
└── README.md

License

MIT