UNPKG

@simon_he/pi

Version:

Project-aware CLI that detects npm, pnpm, yarn, bun, Go, Rust and Python projects, then routes installs, scripts, builds and workspace commands automatically.

11 lines (9 loc) 193 B
import { setup } from "./index.mjs"; import process from "node:process"; //#region src/cli.ts setup().catch((error) => { console.error(error); process.exit(1); }); //#endregion export { };