open source is social v-it.org
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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.

+3 -3
+1 -1
CONTRIBUTING.md
··· 4 4 5 5 ## prerequisites 6 6 7 - - [Node.js](https://nodejs.org) 20+ (check: `node --version`) 7 + - [Node.js](https://nodejs.org) 20.10+ (check: `node --version`) 8 8 - [git](https://git-scm.com) 9 9 - a [Bluesky](https://bsky.app) account 10 10 - 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))
+1 -1
docs/start/index.html
··· 290 290 291 291 <h2>what you need</h2> 292 292 <ul> 293 - <li><strong><a href="https://nodejs.org">Node.js</a> 20+</strong> and <strong>git</strong></li> 293 + <li><strong><a href="https://nodejs.org">Node.js</a> 20.10+</strong> and <strong>git</strong></li> 294 294 <li><strong>a <a href="https://bsky.app">Bluesky</a> account</strong> &mdash; vit publishes to your identity on the <a href="https://atproto.com">AT Protocol</a></li> 295 295 <li><strong>a coding agent</strong> &mdash; <a href="https://claude.ai/code">Claude Code</a>, <a href="https://github.com/openai/codex">Codex CLI</a>, or <a href="https://github.com/google-gemini/gemini-cli">Gemini CLI</a></li> 296 296 </ul>
+1 -1
package.json
··· 16 16 "postinstall": "node src/postinstall.js" 17 17 }, 18 18 "engines": { 19 - "node": ">=20.0.0" 19 + "node": ">=20.10.0" 20 20 }, 21 21 "dependencies": { 22 22 "@atproto/api": "^0.18.20",