unbrew/package.json

44 lines
768 B
JSON
Raw Permalink Normal View History

2020-05-10 22:53:00 +00:00
{
"name": "unbrew",
2023-08-20 20:24:34 +00:00
"version": "1.3.2",
2021-04-29 15:35:15 +00:00
"description": "brew cleanup utility",
"keywords": [
"brew",
2021-08-17 09:37:09 +00:00
"homebrew",
2021-04-29 15:35:15 +00:00
"macos",
2021-08-17 09:37:09 +00:00
"cleanup",
"cli"
2021-04-29 15:35:15 +00:00
],
2023-08-20 20:24:34 +00:00
"license": "MIT",
"author": {
"name": "Niccolo Borgioli",
"email": "hi@nicco.io",
"url": "https://nicco.io"
},
2023-08-20 20:24:34 +00:00
"type": "module",
2020-05-10 22:53:00 +00:00
"bin": {
2021-04-29 15:35:15 +00:00
"unbrew": "bin/index.js"
},
"files": [
"./bin"
],
"scripts": {
2021-08-17 09:37:09 +00:00
"build": "tsc",
2023-08-20 20:24:34 +00:00
"dev": "tsc -w",
"prepublishOnly": "rm -rf ./bin && tsc"
2020-05-10 22:53:00 +00:00
},
"dependencies": {
2023-08-20 20:24:34 +00:00
"chalk": "^5.3.0",
"inquirer": "^9.2.10"
2021-04-29 15:35:15 +00:00
},
"devDependencies": {
2023-03-05 16:51:39 +00:00
"@types/inquirer": "^9.0.3",
2023-08-20 20:24:34 +00:00
"@types/node": "^20.5.1",
"typescript": "^5.1.6"
},
"packageManager": "pnpm@8.6.12",
"engines": {
"node": ">=12"
2020-05-10 22:53:00 +00:00
}
}