From 7cacd1454d46b346fec5faf5b8b4efa75419f17c Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Wed, 9 Apr 2025 20:56:13 +0800 Subject: [PATCH] chore: add devEngines field For now it's not very useful except for preventing `npm install` from running on the project. Renovate doesn't pick this field up yet, but it's fine as we are using a semver range here. --- package.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package.json b/package.json index 75128467..d37ef351 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,13 @@ "engines": { "node": ">=v18.3.0" }, + "devEngines": { + "packageManager": { + "name": "pnpm", + "onFail": "download", + "version": ">= 10.7.1" + } + }, "scripts": { "prepare": "husky", "format": "prettier --write .", -- 2.39.5