From 1fa0dee5e933190ffd2c5d49ede80fe769cabbf0 Mon Sep 17 00:00:00 2001 From: Michael H Date: Mon, 16 Dec 2024 02:19:34 +1100 Subject: [PATCH] document `npm:` in install docs (#15754) --- docs/cli/install.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/cli/install.md b/docs/cli/install.md index 88de3d1759..56212b5c47 100644 --- a/docs/cli/install.md +++ b/docs/cli/install.md @@ -149,7 +149,8 @@ Bun supports installing dependencies from Git, GitHub, and local or remotely-hos "lodash": "git+ssh://github.com/lodash/lodash.git#4.17.21", "moment": "git@github.com:moment/moment.git", "zod": "github:colinhacks/zod", - "react": "https://registry.npmjs.org/react/-/react-18.2.0.tgz" + "react": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "bun-types": "npm:@types/bun" } } ```