Dot_Files/.config/raycast/extensions/9349c6b9-c442-4895-98e3-b3a926e74ed7/package.json

68 lines
1.7 KiB
JSON
Raw Normal View History

{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "brew",
"title": "Brew",
"description": "Search and install Homebrew formulae",
"author": "nhojb",
"license": "MIT",
"icon": "icon.png",
"commands": [
{
"name": "installed",
"title": "Show Installed",
"subtitle": "Brew",
"description": "List installed brew formulae & casks",
"mode": "view"
},
{
"name": "search",
"title": "Search",
"subtitle": "Brew",
"description": "Search brew formulae & casks",
"mode": "view"
},
{
"name": "outdated",
"title": "Show Outdated",
"subtitle": "Brew",
"description": "Show outdated brew formulae & casks",
"mode": "view"
},
{
"name": "upgrade",
"title": "Upgrade",
"subtitle": "Brew",
"description": "Upgrade brew formulae & casks",
"mode": "no-view"
}
],
"preferences": [
{
"name": "greedyUpgrades",
"type": "checkbox",
"required": false,
"title": "Upgrades",
"description": "Include auto-updating casks when upgrading or checking for outdated items.",
"default": false,
"label": "Include auto-updating casks when upgrading"
}
],
"dependencies": {
"@raycast/api": "^1.25.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node": "^16.4.3",
"@types/node-fetch": "^2.5.12",
"@types/react": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"typescript": "^4.3.5"
},
"scripts": {
"dev": "ray develop target"
}
}