@revealui/setup 0.3.0 → 0.3.2

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 +14 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -301,6 +301,20 @@ pnpm test
301
301
  pnpm test:coverage
302
302
  ```
303
303
 
304
+ ## When to Use This
305
+
306
+ - You're building setup scripts or CLI tools that need environment variable management
307
+ - You need cryptographically secure secret generation for JWT keys or database passwords
308
+ - You want consistent, colored logging with progress bars for setup flows
309
+ - **Not** for runtime config access — use `@revealui/config` after setup is complete
310
+ - **Not** for end-user-facing logging — use `@revealui/utils/logger` in application code
311
+
312
+ ## JOSHUA Alignment
313
+
314
+ - **Justifiable**: Every utility exists because `@revealui/cli` and setup scripts need it — no speculative abstractions
315
+ - **Hermetic**: Validation catches missing or malformed variables before they propagate into runtime
316
+ - **Sovereign**: Generates secrets locally with `crypto.randomBytes` — no external service required
317
+
304
318
  ## License
305
319
 
306
320
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revealui/setup",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Setup utilities for RevealUI projects - environment, database, and configuration management",
5
5
  "keywords": [
6
6
  "cli",
@@ -19,17 +19,17 @@
19
19
  "author": "RevealUI Team",
20
20
  "dependencies": {
21
21
  "execa": "^9.0.0",
22
- "inquirer": "^12.0.0",
23
- "ora": "^8.0.1",
22
+ "inquirer": "^13.3.2",
23
+ "ora": "^9.3.0",
24
24
  "zod": "^4.3.6",
25
- "@revealui/config": "0.3.0"
25
+ "@revealui/config": "0.3.1"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/inquirer": "^9.0.7",
29
- "@types/node": "^25.3.0",
29
+ "@types/node": "^25.5.0",
30
30
  "tsup": "^8.0.0",
31
- "typescript": "^5.9.3",
32
- "vitest": "^4.0.18"
31
+ "typescript": "^6.0.2",
32
+ "vitest": "^4.1.0"
33
33
  },
34
34
  "engines": {
35
35
  "node": ">=24.13.0"