@theholocron/holocron-plugin-1password 2.0.0-alpha.35 → 2.0.0-alpha.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -9
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -47,8 +47,10 @@ Both patterns are fully supported — switch by editing
|
|
|
47
47
|
|
|
48
48
|
## Install
|
|
49
49
|
|
|
50
|
+
<!-- prettier-ignore -->
|
|
50
51
|
```bash
|
|
51
52
|
pnpm add -D @theholocron/holocron-plugin-1password@alpha
|
|
53
|
+
|
|
52
54
|
```
|
|
53
55
|
|
|
54
56
|
Requires the `op` binary on PATH (see [Prerequisite](#prerequisite)).
|
|
@@ -73,9 +75,11 @@ CLI's.
|
|
|
73
75
|
|
|
74
76
|
The `op` binary must be on PATH. Install:
|
|
75
77
|
|
|
78
|
+
<!-- prettier-ignore -->
|
|
76
79
|
```bash
|
|
77
80
|
brew install 1password-cli # macOS
|
|
78
81
|
# or follow https://developer.1password.com/docs/cli/get-started
|
|
82
|
+
|
|
79
83
|
```
|
|
80
84
|
|
|
81
85
|
The plugin throws a clear error at construction time if `op` isn't
|
|
@@ -96,18 +100,20 @@ holocron.
|
|
|
96
100
|
|
|
97
101
|
## Config
|
|
98
102
|
|
|
103
|
+
<!-- prettier-ignore -->
|
|
99
104
|
```jsonc
|
|
100
105
|
{
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
106
|
+
"providers": {
|
|
107
|
+
"vault": [
|
|
108
|
+
"1password",
|
|
109
|
+
{
|
|
110
|
+
"vault": "rando", // 1P vault name
|
|
111
|
+
"account": "ABCDEFGHIJKLMNOPQRSTUVWXYZ", // optional: 1P account UUID
|
|
112
|
+
},
|
|
113
|
+
],
|
|
114
|
+
},
|
|
110
115
|
}
|
|
116
|
+
|
|
111
117
|
```
|
|
112
118
|
|
|
113
119
|
- `vault` (required) — the 1Password vault name items live in.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/holocron-plugin-1password",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.36",
|
|
4
4
|
"description": "Holocron plugin for 1Password. Implements the vault capability via shell-out to the `op` CLI (https://developer.1password.com/docs/cli).",
|
|
5
5
|
"homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-1password#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/holocron/issues",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@theholocron/cli": "2.0.0-alpha.
|
|
24
|
+
"@theholocron/cli": "2.0.0-alpha.36"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^26",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"tsx": "^4.22.4",
|
|
38
38
|
"typescript": "^5.9.3",
|
|
39
39
|
"vitest": "^4.1.10",
|
|
40
|
-
"@theholocron/cli": "2.0.0-alpha.
|
|
40
|
+
"@theholocron/cli": "2.0.0-alpha.36"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|