@theholocron/holocron-plugin-doppler 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.
Files changed (2) hide show
  1. package/README.md +11 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -8,8 +8,10 @@ plus exports `verifyToken` + `AUTH_HINT` for use by `holocron auth`.
8
8
 
9
9
  ## Install
10
10
 
11
+ <!-- prettier-ignore -->
11
12
  ```bash
12
13
  pnpm add -D @theholocron/holocron-plugin-doppler@alpha
14
+
13
15
  ```
14
16
 
15
17
  ## Auth
@@ -28,6 +30,7 @@ Token resolution order (matches the standard 4-step precedence set by
28
30
  Doppler's free tier does not expose Service Accounts (Team+ only). Use
29
31
  a Personal Token or CLI token instead.
30
32
 
33
+ <!-- prettier-ignore -->
31
34
  ```bash
32
35
  # 1. Install the Doppler CLI
33
36
  brew install dopplerhq/cli/doppler
@@ -43,6 +46,7 @@ holocron auth set doppler $(doppler configure get token --plain)
43
46
 
44
47
  # 4. Verify:
45
48
  holocron auth check doppler
49
+
46
50
  ```
47
51
 
48
52
  **CI**: the keyring is not available in headless containers. Expose
@@ -52,12 +56,14 @@ precedence still work; step 4 quietly falls through.
52
56
 
53
57
  ## Config
54
58
 
59
+ <!-- prettier-ignore -->
55
60
  ```jsonc
56
61
  {
57
- "providers": {
58
- "vault": ["doppler", { "project": "my-app", "config": "dev" }],
59
- },
62
+ "providers": {
63
+ "vault": ["doppler", { "project": "my-app", "config": "dev" }],
64
+ },
60
65
  }
66
+
61
67
  ```
62
68
 
63
69
  - `project` (required) — Doppler project name. `read` / `list` /
@@ -67,8 +73,10 @@ precedence still work; step 4 quietly falls through.
67
73
 
68
74
  Individual `read` / `write` calls take a fully-qualified reference:
69
75
 
76
+ <!-- prettier-ignore -->
70
77
  ```
71
78
  doppler://<project>/<config>/<name>
79
+
72
80
  ```
73
81
 
74
82
  The default project + config in options apply to `list()`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/holocron-plugin-doppler",
3
- "version": "2.0.0-alpha.35",
3
+ "version": "2.0.0-alpha.36",
4
4
  "description": "Holocron plugin for Doppler. Implements the vault capability against Doppler's REST API — projects, configs, secrets, plus verifyToken + AUTH_HINT for `holocron auth`.",
5
5
  "homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-doppler#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.35"
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.35"
40
+ "@theholocron/cli": "2.0.0-alpha.36"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"