@sigx/terminal 0.5.1 → 0.6.1

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 +6 -1
  2. package/package.json +10 -6
package/README.md CHANGED
@@ -9,9 +9,14 @@ Full guides, API reference and live examples → **<https://sigx.dev/terminal/>*
9
9
  ## Install
10
10
 
11
11
  ```bash
12
- npm install @sigx/terminal
12
+ npm install @sigx/terminal @sigx/reactivity @sigx/runtime-core
13
13
  ```
14
14
 
15
+ The SignalX core packages (`@sigx/reactivity`, `@sigx/runtime-core`, 0.6.x) are
16
+ **peer dependencies**, so your app shares one reactivity engine across all
17
+ `@sigx/*` packages. npm 7+ installs peers automatically; listing them
18
+ explicitly works everywhere.
19
+
15
20
  ## Quick taste
16
21
 
17
22
  ```tsx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sigx/terminal",
3
- "version": "0.5.1",
3
+ "version": "0.6.1",
4
4
  "description": "SignalX Terminal - TUI framework with TSX support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -44,13 +44,17 @@
44
44
  "url": "https://github.com/signalxjs/terminal/issues"
45
45
  },
46
46
  "dependencies": {
47
- "@sigx/reactivity": "^0.4.9",
48
- "@sigx/runtime-core": "^0.4.9",
49
- "@sigx/runtime-terminal": "^0.5.1",
50
- "@sigx/terminal-zero": "^0.5.1",
51
- "@sigx/terminal-ui": "^0.5.1"
47
+ "@sigx/runtime-terminal": "^0.6.1",
48
+ "@sigx/terminal-ui": "^0.6.1",
49
+ "@sigx/terminal-zero": "^0.6.1"
50
+ },
51
+ "peerDependencies": {
52
+ "@sigx/reactivity": ">=0.6.0 <0.7.0",
53
+ "@sigx/runtime-core": ">=0.6.0 <0.7.0"
52
54
  },
53
55
  "devDependencies": {
56
+ "@sigx/reactivity": "^0.6.0",
57
+ "@sigx/runtime-core": "^0.6.0",
54
58
  "@sigx/vite": "^0.4.7",
55
59
  "@types/node": "^22.0.0",
56
60
  "typescript": "^5.9.3",