# Getting started with pumpkit

Open-source framework for building PumpFun Telegram bots on Solana

## Install

```bash
npm install
```

## Verify the install

Clone the repository and run its checks to confirm everything works on your machine:

```bash
git clone https://github.com/nirholas/pumpkit.git
cd pumpkit
```

Available commands:

| Command | Runs |
|---|---|
| `npm run build` | `turbo build` |
| `npm run dev` | `turbo dev` |
| `npm run lint` | `turbo lint` |
| `npm run test` | `turbo test` |
| `npm run typecheck` | `turbo typecheck` |

## Next steps

- [Examples](./examples.md) shows runnable snippets.
- The [README](https://github.com/nirholas/pumpkit#readme) is the complete reference.
- Found a problem? [Open an issue](https://github.com/nirholas/pumpkit/issues).
