unbrew/package.json

44 lines
768 B
JSON
Raw Normal View History

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