unbrew/package.json

43 lines
734 B
JSON
Raw Normal View History

2020-05-11 00:53:00 +02:00
{
"name": "unbrew",
2021-04-29 17:35:15 +02:00
"description": "brew cleanup utility",
2023-03-05 17:51:39 +01:00
"version": "1.3.1",
2020-05-11 00:53:00 +02:00
"author": {
"name": "Niccolo Borgioli",
"email": "hi@nicco.io",
"url": "https://nicco.io"
},
"license": "MIT",
2021-04-29 17:35:15 +02:00
"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
],
"engines": {
"node": ">=12"
},
2020-05-11 00:53:00 +02:00
"bin": {
2021-04-29 17:35:15 +02:00
"unbrew": "bin/index.js"
},
"files": [
"./bin"
],
"scripts": {
"dev": "tsc -w",
2021-08-17 11:37:09 +02:00
"build": "tsc",
"prepublishOnly": "rm -rf ./bin && tsc"
2020-05-11 00:53:00 +02:00
},
"type": "module",
2020-05-11 00:53:00 +02:00
"dependencies": {
2023-03-05 17:51:39 +01:00
"chalk": "^5.2.0",
"inquirer": "^9.1.4"
2021-04-29 17:35:15 +02:00
},
"devDependencies": {
2023-03-05 17:51:39 +01:00
"@types/inquirer": "^9.0.3",
"@types/node": "^16.18.14",
"typescript": "^4.9.5"
2020-05-11 00:53:00 +02:00
}
}