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

@caretive/careti-cli

v0.0.22

Published

Careti CLI (minimal fork of Cline CLI, packaged for caretive)

Readme

@caretive/careti-cli

Careti CLI (minimal Cline fork) 패키지입니다. 로컬 빌드/설치를 위한 스크립트만 포함하며, 소스는 상위 cli/를 그대로 사용합니다.

로컬 빌드 & 글로벌 설치

# 프로젝트 루트에서 실행
cd cli-careti
./scripts/build-local.sh           # bin/careti, bin/careti-host 생성
./scripts/install-local.sh         # npm pack 후 -g 설치

# PATH 안내
export PATH="$HOME/.local/bin:$PATH"

# 확인
careti version
careti task new \"hello\"

주의

  • 빌드는 상위 cli/의 Go 소스를 사용합니다. 먼저 node scripts/build-go-proto.mjssrc/generated/grpc-go가 생성되어 있어야 합니다.
  • npm 글로벌 설치 시 토큰이 필요하지 않습니다. 퍼블리시는 .envCARET_NPM_TOKEN을 사용하며, publish-careti-cli.sh가 자동으로 로드합니다.

npm 퍼블리시 (CLI 배포)

# 프로젝트 루트에서 실행
npm run compile-standalone-npm
bash cli-careti/scripts/publish-careti-cli.sh
  • publish-careti-cli.shcli-careti/.npmrc를 생성해 토큰을 주입한 뒤 npm packnpm publish를 수행합니다.
  • dist-standalone/cline-core.js가 없으면 빌드가 실패합니다. 반드시 npm run compile-standalone-npm을 먼저 실행하세요.
  • 최초 공개 배포라면 npm publish --access public 옵션이 필요할 수 있습니다. 필요 시 스크립트를 조정하세요.
  • 이 퍼블리시 경로는 TELEMETRY_SERVICE_API_KEY/ERROR_SERVICE_API_KEY를 요구하지 않습니다.