Skip to content

Commit 17cdf09

Browse files
ochafikclaude
andcommitted
docs: add Bun installation instructions per platform
Documents that Bun is required for development, with platform-specific install commands in collapsible sections. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent ca8de57 commit 17cdf09

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

CONTRIBUTING.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,39 @@
22

33
We welcome contributions to the MCP Apps SDK! This document outlines the process for contributing to the project.
44

5+
## Prerequisites
6+
7+
Development requires [Bun](https://bun.sh) (used for building and testing).
8+
9+
<details>
10+
<summary><strong>macOS / Linux</strong></summary>
11+
12+
```bash
13+
curl -fsSL https://bun.sh/install | bash
14+
```
15+
16+
</details>
17+
18+
<details>
19+
<summary><strong>Windows (native)</strong></summary>
20+
21+
```powershell
22+
powershell -c "irm bun.sh/install.ps1 | iex"
23+
```
24+
25+
> **ARM64 note**: Native binaries aren't available yet; the x64 build runs via emulation.
26+
27+
</details>
28+
29+
<details>
30+
<summary><strong>Windows (WSL)</strong></summary>
31+
32+
```bash
33+
curl -fsSL https://bun.sh/install | bash
34+
```
35+
36+
</details>
37+
538
## Getting Started
639

740
1. Fork the repository

0 commit comments

Comments
 (0)