From 0c6a848847c5d8cfa3c27fedd480bb962b045232 Mon Sep 17 00:00:00 2001 From: Jer Miller Date: Wed, 15 Apr 2026 20:32:25 -0600 Subject: [PATCH] fix: bump minimum Node.js engine to 20.10.0 Global WebSocket (used by vit scan and vit firehose) is only available in Node 20.10+. Raise the engine floor so npm/bun enforce the requirement at install time rather than failing at runtime. --- CONTRIBUTING.md | 2 +- docs/start/index.html | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e624ac0..2c4a741 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ for the philosophy behind this system, read the [doctrine](https://v-it.org/doct ## prerequisites -- [Node.js](https://nodejs.org) 20+ (check: `node --version`) +- [Node.js](https://nodejs.org) 20.10+ (check: `node --version`) - [git](https://git-scm.com) - a [Bluesky](https://bsky.app) account - a coding agent ([Claude Code](https://claude.ai/code), [Codex CLI](https://github.com/openai/codex), or [Gemini CLI](https://github.com/google-gemini/gemini-cli)) diff --git a/docs/start/index.html b/docs/start/index.html index d8802b1..4f6dde7 100644 --- a/docs/start/index.html +++ b/docs/start/index.html @@ -290,7 +290,7 @@

what you need

diff --git a/package.json b/package.json index 66e9ad4..17284ef 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "postinstall": "node src/postinstall.js" }, "engines": { - "node": ">=20.0.0" + "node": ">=20.10.0" }, "dependencies": { "@atproto/api": "^0.18.20", -- 2.51.2