// Name: Install Node + Vercel + pnpm
// Description: Installs Node.js (if missing), then pnpm and Vercel CLI globally.
// Author: alexdev888
// GitHub: alexdev888
import "@johnlindquist/kit"
const has = (cmd: string) => {
try {
return !!which(cmd)
} catch {
return false
}
}
const run = async (command: string) => {
try {
const { all } = await exec(command)
return { ok: true, out: all || "" }
} catch (err: any) {