mirror of
https://github.com/cupcakearmy/unbrew.git
synced 2024-12-21 23:56:29 +00:00
44 lines
768 B
JSON
44 lines
768 B
JSON
{
|
|
"name": "unbrew",
|
|
"version": "1.3.2",
|
|
"description": "brew cleanup utility",
|
|
"keywords": [
|
|
"brew",
|
|
"homebrew",
|
|
"macos",
|
|
"cleanup",
|
|
"cli"
|
|
],
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Niccolo Borgioli",
|
|
"email": "hi@nicco.io",
|
|
"url": "https://nicco.io"
|
|
},
|
|
"type": "module",
|
|
"bin": {
|
|
"unbrew": "bin/index.js"
|
|
},
|
|
"files": [
|
|
"./bin"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc -w",
|
|
"prepublishOnly": "rm -rf ./bin && tsc"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^5.3.0",
|
|
"inquirer": "^9.2.10"
|
|
},
|
|
"devDependencies": {
|
|
"@types/inquirer": "^9.0.3",
|
|
"@types/node": "^20.5.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"packageManager": "pnpm@8.6.12",
|
|
"engines": {
|
|
"node": ">=12"
|
|
}
|
|
}
|