{"id":22038295,"url":"https://github.com/mcbeet/beet-bot","last_synced_at":"2025-07-24T01:06:32.117Z","repository":{"id":46962663,"uuid":"485933685","full_name":"mcbeet/beet-bot","owner":"mcbeet","description":"The discord bot for the beet server.","archived":false,"fork":false,"pushed_at":"2024-06-02T22:44:07.000Z","size":373,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-27T13:43:16.202Z","etag":null,"topics":["beet","discord-bot","docker","minecraft","minecraft-commands"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mcbeet.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["vberlier"]}},"created_at":"2022-04-26T20:12:37.000Z","updated_at":"2024-06-02T22:44:10.000Z","dependencies_parsed_at":"2023-10-26T21:32:21.638Z","dependency_job_id":"91c1899e-4142-4064-b25d-eff475b06d3c","html_url":"https://github.com/mcbeet/beet-bot","commit_stats":{"total_commits":128,"total_committers":4,"mean_commits":32.0,"dds":0.3125,"last_synced_commit":"87fccbe401416f685b32fa85a505c9137646af1d"},"previous_names":[],"tags_count":47,"template":false,"template_full_name":null,"purl":"pkg:github/mcbeet/beet-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcbeet%2Fbeet-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcbeet%2Fbeet-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcbeet%2Fbeet-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcbeet%2Fbeet-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mcbeet","download_url":"https://codeload.github.com/mcbeet/beet-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcbeet%2Fbeet-bot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266775383,"owners_count":23982273,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["beet","discord-bot","docker","minecraft","minecraft-commands"],"created_at":"2024-11-30T11:05:15.944Z","updated_at":"2025-07-24T01:06:32.091Z","avatar_url":"https://github.com/mcbeet.png","language":"TypeScript","funding_links":["https://github.com/sponsors/vberlier"],"categories":[],"sub_categories":[],"readme":"# beet-bot\n\n[![GitHub Actions](https://github.com/mcbeet/beet-bot/workflows/CI/badge.svg)](https://github.com/mcbeet/beet-bot/actions)\n[![npm](https://img.shields.io/npm/v/beet-bot.svg)](https://www.npmjs.com/package/beet-bot)\n[![Discord](https://img.shields.io/discord/900530660677156924?color=7289DA\u0026label=discord\u0026logo=discord\u0026logoColor=fff)](https://discord.gg/98MdSGMm8j)\n\n\u003e Packages for the beet bot.\n\nClick the following invite link to add the bot to your own server:\n\n- https://discord.com/api/oauth2/authorize?client_id=980644229984419932\u0026permissions=0\u0026scope=bot%20applications.commands\n\n## Installation\n\nYou can install the beet bot via `npm`.\n\n```bash\n$ npm install beet-bot\n```\n\nTo run your own instance of the bot use the `beet-bot` command or simply run it with `npx` to install it automatically.\n\n```bash\n$ npx beet-bot --clientId=... --token=...\n```\n\n## Usage\n\nYou can provide credentials through command-line options `--clientId/--token` or by using environment variables `BEET_BOT_CLIENT_ID/BEET_BOT_TOKEN`. The bot will load the `.env` file in the working directory. The `--config` option lets you specify a json file in which you can define runner environments.\n\n```bash\n$ beet-bot --config bot.json\n```\n\n\u003e Check out the sample [bot.json](bot.json).\n\n## Contributing\n\nThis is a monorepo managed with [`pnpm`](https://pnpm.io/). If you don't have it installed already check out the [standalone script](https://pnpm.io/installation) for your platform or get it via [Corepack](https://github.com/nodejs/corepack) using `corepack enable`.\n\n```bash\n$ pnpm install\n```\n\nSet up packages for local development by running `pnpm -r stub`, and then launch the bot with the required credentials.\n\n```bash\n$ pnpm dev --clientId=... --token=...\n```\n\nYou can also create a `.env` file at the root of the repository.\n\n```env\nBEET_BOT_CLIENT_ID=...\nBEET_BOT_TOKEN=...\n```\n\nTo build for production use the `pnpm -r build` command. Note that this overwrites package stubs so you will need to run `pnpm -r stub` again if you want to resume developing locally.\n\n```bash\n$ pnpm -r build\n$ pnpm start --clientId=... --token=...\n```\n\nThe project must type-check and `eslint` shouldn't report any error.\n\n```bash\n$ pnpm -r lint\n```\n\n---\n\nLicense - [MIT](https://github.com/mcbeet/beet-bot/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcbeet%2Fbeet-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmcbeet%2Fbeet-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcbeet%2Fbeet-bot/lists"}