envilder 0.3.4 โ†’ 0.4.0

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/ROADMAP.md +50 -0
  2. package/package.json +10 -5
package/ROADMAP.md ADDED
@@ -0,0 +1,50 @@
1
+ # ๐Ÿ›ฃ๏ธ Envilder Roadmap
2
+
3
+ Envilder aims to be the simplest, most reliable way to generate `.env` files from AWS SSM Parameter Store
4
+ โ€” for both local development and CI/CD pipelines.
5
+
6
+ ## โœ… Current Features
7
+
8
+ - Map-based secret resolution via `param-map.json`
9
+ - Outputs clean `.env` files
10
+ - Supports AWS profiles (`AWS_PROFILE`)
11
+ - Compatible with SecureString and plain parameters
12
+ - CLI-first, lightweight
13
+
14
+ ---
15
+
16
+ ## ๐Ÿšง Planned Improvements
17
+
18
+ ### ๐Ÿ”น Usability & Visibility
19
+
20
+ - [ ] ๐Ÿ” **Auto-discovery mode** (`--auto`) for fetching all parameters with a given prefix
21
+ - [ ] ๐Ÿ“ธ **Demo GIF/video** showing the tool in action (terminal + env + app)
22
+ - [ ] โœ๏ธ **Tutorial repo** showing full example with GitHub Actions
23
+ - [ ] ๐Ÿ›๏ธ **Official GitHub Action** (in Marketplace)
24
+
25
+ ### ๐Ÿ”น Dev Experience & Adoption
26
+
27
+ - [ ] โœ… **Check mode** (`--check`) to validate SSM vs existing `.env` and fail CI if out-of-sync
28
+ - [ ] ๐Ÿ“ **Onboarding doc** for new teams (how to set up param-map, profiles, best practices)
29
+
30
+ ### ๐Ÿ”น Advanced Features
31
+
32
+ - [ ] โ†ฉ๏ธ **Import mode** (`--import`) to push local `.env` back to AWS SSM
33
+ - [ ] ๐Ÿ”” **Optional webhook/Slack notifier** on secret sync (for audit/logging)
34
+ - [ ] ๐ŸŒ **Web-based interactive demo** (optional) to test mappings live
35
+ - [ ] ๐Ÿง  **Awesome list submissions** and community templates
36
+
37
+ ---
38
+
39
+ ## ๐Ÿงช Long-term Ideas (Open to Feedback)
40
+
41
+ - [ ] ๐Ÿ“ Support hierarchical `param-map.json` per environment
42
+ - [ ] ๐Ÿงฌ Plugin system for custom resolvers (e.g. secrets from other providers)
43
+
44
+ ---
45
+
46
+ ## ๐Ÿ™Œ Contribute or suggest ideas
47
+
48
+ If youโ€™ve faced similar problems or want to help improve this tool, feel free to open an issue, submit a PR
49
+ or reach out.
50
+ Every bit of feedback helps make this tool better for the community.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "envilder",
3
- "version": "0.3.4",
3
+ "version": "0.4.0",
4
4
  "description": "A CLI tool to generate .env files from AWS SSM parameters",
5
5
  "exports": {
6
6
  ".": {
@@ -40,8 +40,10 @@
40
40
  },
41
41
  "type": "module",
42
42
  "dependencies": {
43
- "@aws-sdk/client-ssm": "^3.806.0",
43
+ "@aws-sdk/client-ssm": "^3.654.0",
44
44
  "@aws-sdk/credential-providers": "^3.806.0",
45
+ "@secretlint/core": "^9.2.1",
46
+ "@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
45
47
  "@types/node": "^22.5.5",
46
48
  "commander": "^13.1.0",
47
49
  "dotenv": "^16.4.5",
@@ -49,16 +51,19 @@
49
51
  },
50
52
  "devDependencies": {
51
53
  "@biomejs/biome": "^1.9.1",
52
- "@secretlint/secretlint-rule-preset-recommend": "^9.3.2",
53
54
  "@vitest/coverage-v8": "^3.1.1",
54
55
  "rimraf": "^6.0.1",
55
- "secretlint": "^9.3.2",
56
+ "secretlint": "^9.0.0",
56
57
  "ts-node": "^10.9.2",
57
58
  "typescript": "^5.6.2",
58
59
  "vitest": "^3.1.1"
59
60
  },
61
+ "resolutions": {
62
+ "string-width": "4.2.3",
63
+ "strip-ansi": "6.0.1"
64
+ },
60
65
  "engines": {
61
66
  "node": ">=20.0.0",
62
67
  "yarn": ">=1.22"
63
68
  }
64
- }
69
+ }