@carlesandres/house 0.4.10 → 0.4.12

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.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,18 @@ The publish workflow (`.github/workflows/publish.yml`) runs on the `release: pub
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.4.12] — 2026-06-14
10
+
11
+ ### Fixed
12
+
13
+ - Pinned the Effect runtime stack to the latest beta that does not pull `ini@7`, avoiding npm install engine warnings for users on older Node 22 installers.
14
+
15
+ ## [0.4.11] — 2026-06-14
16
+
17
+ ### Fixed
18
+
19
+ - Removed the package-level Node engine requirement so npm installs do not warn about `house` itself; Bun remains the supported runtime and installer path until standalone binaries land.
20
+
9
21
  ## [0.4.10] — 2026-06-14
10
22
 
11
23
  ### Added
@@ -305,7 +317,9 @@ The v1 MVP, published as `@carlesandres/openmdr` on npm.
305
317
 
306
318
  Search, stdin, URL fetching, cross-file link following, `$EDITOR` hand-off, syntax highlighting, persistent config, OS-appearance auto-detect, single-binary distribution (issue [#2](https://github.com/carlesandres/openmdr/issues/2)), Homebrew tap. All tracked.
307
319
 
308
- [Unreleased]: https://github.com/carlesandres/house/compare/v0.4.10...HEAD
320
+ [Unreleased]: https://github.com/carlesandres/house/compare/v0.4.12...HEAD
321
+ [0.4.12]: https://github.com/carlesandres/house/compare/v0.4.11...v0.4.12
322
+ [0.4.11]: https://github.com/carlesandres/house/compare/v0.4.10...v0.4.11
309
323
  [0.4.10]: https://github.com/carlesandres/house/compare/v0.4.9...v0.4.10
310
324
  [0.4.9]: https://github.com/carlesandres/house/compare/v0.4.8...v0.4.9
311
325
  [0.4.8]: https://github.com/carlesandres/house/compare/v0.4.7...v0.4.8
package/README.md CHANGED
@@ -18,25 +18,25 @@ Requires [Bun](https://bun.sh) on `PATH`.
18
18
 
19
19
  ## Runtime requirements
20
20
 
21
- - Bun: required to run `house`.
22
- - npm install/upgrade path: Node `>=22.22.2` (Node 24 LTS recommended).
21
+ - Bun: required to install and run `house` today.
22
+ - npm can install the package, but npm evaluates Node engine metadata from transitive dependencies during install. Use `bun add -g` for the supported no-Node install path.
23
23
 
24
24
  Supported on macOS and Linux; Windows is unsupported and unvalidated (see [#129](https://github.com/carlesandres/house/issues/129)).
25
25
 
26
26
  ## Install
27
27
 
28
28
  ```bash
29
- npm install -g @carlesandres/house
30
- # or
31
29
  bun add -g @carlesandres/house
30
+ # npm also works when your local Node/npm combination accepts the dependency graph:
31
+ npm install -g @carlesandres/house
32
32
  ```
33
33
 
34
34
  ## Upgrade
35
35
 
36
36
  ```bash
37
- npm i -g @carlesandres/house
38
- # or
39
37
  bun add -g @carlesandres/house
38
+ # npm also works when your local Node/npm combination accepts the dependency graph:
39
+ npm i -g @carlesandres/house
40
40
  ```
41
41
 
42
42
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlesandres/house",
3
- "version": "0.4.10",
3
+ "version": "0.4.12",
4
4
  "description": "TUI-first markdown reader on opentui",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -12,9 +12,6 @@
12
12
  "url": "https://github.com/carlesandres/house/issues"
13
13
  },
14
14
  "homepage": "https://github.com/carlesandres/house#readme",
15
- "engines": {
16
- "node": ">=22.22.2"
17
- },
18
15
  "keywords": [
19
16
  "markdown",
20
17
  "reader",
@@ -54,11 +51,11 @@
54
51
  "prepare": "git config core.hooksPath .githooks 2>/dev/null || true"
55
52
  },
56
53
  "dependencies": {
57
- "@effect/atom-react": "4.0.0-beta.70",
54
+ "@effect/atom-react": "4.0.0-beta.60",
58
55
  "@opentui/core": "0.2.15",
59
56
  "@opentui/react": "0.2.15",
60
57
  "commander": "^14.0.3",
61
- "effect": "4.0.0-beta.70",
58
+ "effect": "4.0.0-beta.60",
62
59
  "ignore": "^7.0.5",
63
60
  "marked": "^18.0.4",
64
61
  "react": "19.2.6",