UNPKG

@reliverse/rse-sdk

Version:

@reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).

11 lines (10 loc) 237 B
export const getUserPkgManager = () => { const userAgent = process.env.npm_config_user_agent; if (userAgent?.startsWith("pnpm")) { return "pnpm"; } if (userAgent?.startsWith("bun")) { return "bun"; } return "npm"; };