silvery 0.6.0 → 0.7.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/package.json +5 -4
  2. package/src/ui/cli.ts +1 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silvery",
3
- "version": "0.6.0",
4
- "description": "React terminal UI renderer for complex interactive apps \u2014 layout-aware rendering, flexbox, scrolling, and incremental updates",
3
+ "version": "0.7.0",
4
+ "description": "React terminal UI renderer for complex interactive apps layout-aware rendering, flexbox, scrolling, and incremental updates",
5
5
  "keywords": [
6
6
  "ansi",
7
7
  "chalk",
@@ -25,7 +25,7 @@
25
25
  "url": "https://github.com/beorn/silvery/issues"
26
26
  },
27
27
  "license": "MIT",
28
- "author": "Bj\u00f8rn Stabell <bjorn@stabell.org>",
28
+ "author": "Bjørn Stabell <bjorn@stabell.org>",
29
29
  "repository": {
30
30
  "type": "git",
31
31
  "url": "https://github.com/beorn/silvery.git"
@@ -76,6 +76,7 @@
76
76
  "compat:chalk": "bun packages/ink/scripts/compat-check.ts chalk"
77
77
  },
78
78
  "dependencies": {
79
+ "@silvery/commander": "workspace:*",
79
80
  "chalk": "^5.6.2",
80
81
  "loggily": "github:beorn/loggily",
81
82
  "react-reconciler": "^0.33.0",
@@ -108,4 +109,4 @@
108
109
  "bun": ">=1.0",
109
110
  "node": ">=23.6.0"
110
111
  }
111
- }
112
+ }
package/src/ui/cli.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  // silvery/ui/cli — CLI progress indicators (no React)
2
2
  export * from "@silvery/ag-react/ui/cli"
3
+ export { colorizeHelp, type ColorizeHelpOptions } from "@silvery/commander"