Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/fern/generators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ groups:
publishConfig:
access: public
provenance: false
engines:
node: '>=22'
allowExtraFields: true
allowCustomFetcher: true
enableInlineTypes: false
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.17.0
22.23.2
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ For security vulnerabilities, do **not** open a public issue — see [SECURITY.m

## Prerequisites

- **Node.js 22.13+** (see [`.nvmrc`](.nvmrc))
- **Node.js 22.13+** (see [`.nvmrc`](.nvmrc); required by pnpm 11.16)
- **pnpm** (version pinned via `packageManager` in [`package.json`](package.json); `corepack enable` handles it)
- **Docker** — only needed for Postgres/Redis dev infra, the smoke test, and SDK generation

Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ TrueForge runs in [two modes](/introduction#two-ways-to-run-it): **local mode**

<Tabs>
<Tab title="Local mode (npx)">
Requires [Node.js](https://nodejs.org) 22.13 or newer. One command, no other infrastructure — the UI and backend run locally, and data is stored in a local SQLite file:
Requires [Node.js](https://nodejs.org) 22 or newer. One command, no other infrastructure — the UI and backend run locally, and data is stored in a local SQLite file:

```bash
npx @truefoundry/trueforge
Expand Down
3 changes: 3 additions & 0 deletions packages/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"sdk:build": "pnpm --filter @truefoundry/trueforge-sdk build",
"ui:build": "pnpm --filter @truefoundry/trueforge-ui build",
Expand Down
3 changes: 3 additions & 0 deletions packages/harness/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build:gen": "node scripts/generate-sandbox-scripts.mjs",
"build:gen:watch": "node --watch-path=src/core/sandbox/scripts scripts/generate-sandbox-scripts.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/local-sandbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"fixtures"
],
"engines": {
"node": ">=22.13.0"
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=18.0.0"
"node": ">=22"
},
"sideEffects": false,
"license": "MIT",
Expand Down
3 changes: 3 additions & 0 deletions packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build:frontend-assets": "node scripts/copy-frontend.mjs",
"build:gen:watch": "node --watch-path=catalog/model-catalog.yaml --watch-path=catalog/mcp-catalog.yaml --watch-path=catalog/skill-catalog.yaml --watch-path=catalog/sandbox-catalog.yaml scripts/generate-catalog.mjs",
Expand Down
3 changes: 3 additions & 0 deletions packages/trueforge-ui-sdk/example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"version": "0.0.0",
"type": "module",
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
Expand Down
3 changes: 3 additions & 0 deletions packages/trueforge-ui-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
"NOTICE",
"CHANGELOG.md"
],
"engines": {
"node": ">=22"
},
"sideEffects": [
"dist/styles.css",
"src/icons/registerAgentIcons.ts"
Expand Down
Loading