@captainsafia/burrow 1.0.0-preview.2be53e0 → 1.0.0-preview.7245132

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 +5 -1
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # burrow
2
2
 
3
- A platform-agnostic, directory-scoped secrets manager. Store secrets outside your repos, inherit them through directory ancestry.
3
+ Burrow is a platform-agnostic, directory-scoped secrets manager. Secrets are stored outside your repos in a local SQLite store and exportable to various formats via the CLI. For a nicer dev experience, Burrow currently stores secrets in a plain-text format outside the target repo, which means that secrets can still be leaked to other users on your machine or people who gain access to your device. But, for your day-to-day dev use, this beats keeping secrets in gitignored files in your repo.
4
4
 
5
5
  ```
6
6
  ~/projects/ # DATABASE_URL, API_KEY defined here
@@ -32,6 +32,8 @@ burrow set DATABASE_URL=postgres://localhost/mydb --path ~/projects
32
32
  ```bash
33
33
  burrow get API_KEY
34
34
  burrow get API_KEY --format json
35
+ # Redact the secret value in output
36
+ burrow get API_KEY --redact
35
37
  ```
36
38
 
37
39
  ### List all secrets
@@ -39,6 +41,8 @@ burrow get API_KEY --format json
39
41
  ```bash
40
42
  burrow list
41
43
  burrow list --format json
44
+ # Redact secret values in output
45
+ burrow list --redact
42
46
  ```
43
47
 
44
48
  ### Export to your shell
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captainsafia/burrow",
3
- "version": "1.0.0-preview.2be53e0",
3
+ "version": "1.0.0-preview.7245132",
4
4
  "description": "Platform-agnostic, directory-scoped secrets manager",
5
5
  "type": "module",
6
6
  "main": "dist/api.js",
@@ -51,6 +51,7 @@
51
51
  ],
52
52
  "license": "MIT",
53
53
  "dependencies": {
54
+ "clipboardy": "^5.0.2",
54
55
  "commander": "^14.0.2"
55
56
  }
56
57
  }