### Installing Dependencies (Bun) Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Installs project dependencies using the Bun package manager. ```bash bun install ``` -------------------------------- ### Configuring React Native Debugger MCP in Claude Desktop/Cursor Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/README.md This JSON snippet shows how to add the react-native-debugger-mcp server configuration to the mcpServers section of your Claude Desktop or Cursor MCP configuration file. It specifies the command (`npx`) and arguments (`-y`, `@twodoorsdev/react-native-debugger-mcp`) needed to start the server. ```JSON { "mcpServers": { "react-native-debugger-mcp": { "command": "npx", "args": ["-y", "@twodoorsdev/react-native-debugger-mcp"] } } } ``` -------------------------------- ### Building Project for Publishing (Bun) Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Builds the project to prepare it for publishing to the npm registry. ```bash bun run build ``` -------------------------------- ### Building Project (Bun) Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Builds the project for development or distribution using Bun. ```bash bun run build ``` -------------------------------- ### Building Project for Claude Desktop (Bun) Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Builds the project to generate the output file required for integration with Claude Desktop. ```bash bun run build ``` -------------------------------- ### Running Tests (Bun) Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Executes the project's test suite using Bun. ```bash bun test ``` -------------------------------- ### Creating New Version (standard-version) Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Runs the standard-version tool via Bun to automate version bumping, tag creation, and changelog generation based on commit messages. ```bash bun run release ``` -------------------------------- ### Formatting Code (Bun) Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Formats the project's source code according to predefined rules using Bun. ```bash bun run format ``` -------------------------------- ### Configuring Claude Desktop MCP Server Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Adds the development MCP server to the Claude Desktop configuration, specifying the command and arguments to run the built project. ```json { "mcpServers": { "react-native-debugger-mcp": { "command": "bun", "args": ["/path/to/your/project/dist/main.js"] } } } ``` -------------------------------- ### Publishing Package to npm Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Publishes the built project package to the npm registry under the authenticated user's account. ```bash npm publish ``` -------------------------------- ### Logging in to npm Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Authenticates with the npm registry, allowing the user to publish packages. ```bash npm login ``` -------------------------------- ### Linting Code (Bun) Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Analyzes the project's code for potential errors and style issues using Bun. ```bash bun run lint ``` -------------------------------- ### Updating Version Before Publishing (standard-version) Source: https://github.com/twodoorsdev/react-native-debugger-mcp/blob/main/CONTRIBUTING.md Reminder to run the standard-version tool before publishing to ensure the package version is correctly updated. ```bash bun run release ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.