From 47f307f7c882d58045e05e514ab93b9fdc4862bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Sat, 28 Dec 2024 17:36:27 +0900 Subject: [PATCH] chore: add `packageManager` field to `package.json` (#156) This pull request includes a small change to the `package.json` file. The change specifies the package manager to be used for the project. * [`package.json`](diffhunk://#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519R3): Added `"packageManager": "npm@10.9.2"` to specify the project should use npm version 10.9.2. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 623b831..69b8ed3 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "private": true, + "packageManager": "npm@10.9.2", "workspaces": [ "examples/*", "packages/*",