Script Kit Logo
Script Kit
by John Lindquist
Vercel OSS Program

Scripts by Nickhoyer

Install a package using Homebrew

Nickhoyer's avatar
Nick Hoyer
// Name: Install with Homebrew // Description: Install a package using Homebrew // Author: Nickolas Høyer-Larsen // Version: 1.0 import { exec as execRaw } from "node:child_process"; import { promisify } from "node:util"; import "@johnlindquist/kit"; const exec = promisify(execRaw); type InfoType = { name?: string; description?: string; version?: string; fromUrl?: string; projectUrl?: string; analytics?: string; artifacts?: string; installed?: boolean; };