Skip to content

Commit 2545cbd

Browse files
iteloclaude
andcommitted
Rename project from 1vp to 1vt
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 58accb1 commit 2545cbd

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# 1vp
1+
# 1vt
22

33
A vim-like terminal UI for [1Password](https://1password.com). Browse vaults, search items, and copy credentials — all without leaving the terminal.
44

55
Built with [Ink](https://github.com/vadimdemedes/ink) (React for CLI), powered by the [1Password CLI](https://developer.1password.com/docs/cli/).
66

77
```
8-
1vp > Private > Items (142)
8+
1vt > Private > Items (142)
99
─────────────────────────────────────────────────────────
1010
1 > [Login] GitHub github.com
1111
1 [Login] Gmail gmail.com
@@ -38,8 +38,8 @@ Built with [Ink](https://github.com/vadimdemedes/ink) (React for CLI), powered b
3838

3939
```bash
4040
# From source
41-
git clone https://github.com/itelo/1vp.git
42-
cd 1vp
41+
git clone https://github.com/itelo/1vt.git
42+
cd 1vt
4343
pnpm install
4444
pnpm dev
4545
```

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "1vp",
2+
"name": "1vt",
33
"version": "0.1.0",
44
"description": "Vim-like terminal UI for 1Password",
55
"type": "module",
66
"bin": {
7-
"1vp": "./dist/cli.js"
7+
"1vt": "./dist/cli.js"
88
},
99
"main": "./dist/cli.js",
1010
"files": [
@@ -28,9 +28,9 @@
2828
"license": "MIT",
2929
"repository": {
3030
"type": "git",
31-
"url": "https://github.com/itelo/1vp.git"
31+
"url": "https://github.com/itelo/1vt.git"
3232
},
33-
"homepage": "https://github.com/itelo/1vp",
33+
"homepage": "https://github.com/itelo/1vt",
3434
"packageManager": "pnpm@10.30.3",
3535
"pnpm": {
3636
"onlyBuiltDependencies": ["esbuild"]

src/components/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useShallow } from "zustand/react/shallow";
55
import type { Screen } from "../lib/types.js";
66

77
function buildBreadcrumbs(stack: Screen[]): string {
8-
const crumbs: string[] = ["1vp"];
8+
const crumbs: string[] = ["1vt"];
99
for (const screen of stack) {
1010
switch (screen.type) {
1111
case "vault-list":

0 commit comments

Comments
 (0)