Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.

Latest commit

 

History

History
57 lines (47 loc) · 1.24 KB

File metadata and controls

57 lines (47 loc) · 1.24 KB

Contributing

🛠️ Development

  1. Clone the repository
  2. Install dependencies:
    bun install
  • Run tests: bun test
  • Format code: bun run format
  • Lint code: bun run lint
  • Build project: bun run build

To add your development MCP server to Claude Desktop:

  1. Build the project:
    bun run build
  2. Add to your Claude Desktop config:
    {
      "mcpServers": {
        "react-native-debugger-mcp": {
          "command": "bun",
          "args": ["/path/to/your/project/dist/main.js"]
        }
      }
    }

📜 Version Management

This project uses standard-version for automated version management. Run bun run release to create a new version.

Commit Message Format

  • feat: New feature (bumps minor version)
  • fix: Bug fix (bumps patch version)
  • BREAKING CHANGE: Breaking change (bumps major version)

📦 Publishing to npm

  1. Ensure you're logged in to npm:
    npm login
  2. Build the project:
    bun run build
  3. Publish the package:
    npm publish

Remember to update the version number using bun run release before publishing new versions.