mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-09-16 18:22:37 +00:00
`pnpm/setup` reads the runtime version from `package.json` and ignores `.node-version`. With `onFail: download`, pnpm records Node 24.15.0 in the lockfile and downloads it on every install unless `--no-runtime` is passed. The Dockerfile and the docs build pass it, since they already run a pinned Node. `.node-version` stays for the Cloudflare Pages build, which reads it to pick the Node that bootstraps corepack.
17 lines
442 B
JSON
17 lines
442 B
JSON
{
|
|
"name": "matrix-authentication-service",
|
|
"private": true,
|
|
"packageManager": "pnpm@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215",
|
|
"devEngines": {
|
|
"runtime": {
|
|
"name": "node",
|
|
"version": "24.15.0",
|
|
"onFail": "download"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@localazy/cli": "^2.0.11",
|
|
"semver": "^7.8.5"
|
|
}
|
|
}
|