├── Casks └── 1password-cli.rb ├── README.md └── LICENSE /Casks/1password-cli.rb: -------------------------------------------------------------------------------- 1 | cask "1password-cli" do 2 | arch arm: "arm64", intel: "amd64" 3 | 4 | version "2.30.3" 5 | sha256 arm: "0472133a09a0596119543c0ee7def0b3c08646354432516a18dbfe831d536c88", 6 | intel: "79fa39079b038bfefa8dafbc9e6cd1540ad869532ddbb6cf0a0b829edc7f4d48" 7 | 8 | url "https://cache.agilebits.com/dist/1P/op2/pkg/v#{version}/op_darwin_#{arch}_v#{version}.zip" 9 | name "1Password CLI" 10 | desc "Command-line interface for 1Password" 11 | homepage "https://developer.1password.com/docs/cli" 12 | 13 | binary "op" 14 | 15 | zap trash: "~/.op" 16 | end 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | 1Password 4 | 5 |

6 |

7 | Homebrew 8 |

9 | 10 | 1Password's [Homebrew tap](https://docs.brew.sh/Taps) listing the products that can be installed using Homebrew. 11 | 12 | ## Available products 13 | 14 | | Name | Description | Installation command | 15 | |------|-------------|----------------------| 16 | | [1password-cli](https://developer.1password.com/docs/cli/) | Command-line interface for 1Password | `brew install --cask 1password/tap/1password-cli` | 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 1Password 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------