{"id":19261609,"url":"https://github.com/ntnyq/omz-plugin-bun","last_synced_at":"2025-10-07T06:48:18.996Z","repository":{"id":194900064,"uuid":"691400997","full_name":"ntnyq/omz-plugin-bun","owner":"ntnyq","description":":gear: oh-my-zsh aliases for common  bun commands.","archived":false,"fork":false,"pushed_at":"2023-09-15T01:25:47.000Z","size":2,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-12T06:52:43.497Z","etag":null,"topics":["alias","bun","bun-aliases","oh-my-zsh-aliases","ohmyzsh","omz","omz-plugin","oven"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/ntnyq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-09-14T05:31:37.000Z","updated_at":"2025-04-29T19:31:35.000Z","dependencies_parsed_at":"2023-09-15T17:38:13.774Z","dependency_job_id":null,"html_url":"https://github.com/ntnyq/omz-plugin-bun","commit_stats":null,"previous_names":["ntnyq/omz-plugin-bun"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ntnyq/omz-plugin-bun","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntnyq%2Fomz-plugin-bun","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntnyq%2Fomz-plugin-bun/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntnyq%2Fomz-plugin-bun/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntnyq%2Fomz-plugin-bun/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ntnyq","download_url":"https://codeload.github.com/ntnyq/omz-plugin-bun/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ntnyq%2Fomz-plugin-bun/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278734424,"owners_count":26036404,"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-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["alias","bun","bun-aliases","oh-my-zsh-aliases","ohmyzsh","omz","omz-plugin","oven"],"created_at":"2024-11-09T19:27:43.654Z","updated_at":"2025-10-07T06:48:18.978Z","avatar_url":"https://github.com/ntnyq.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# omz-plugin-bun\n\noh-my-zsh aliases for common [bun](https://bun.sh) commands.\n\n## Installation\n\n- [Oh My Zsh](#oh-my-zsh)\n- [Zinit](#zinit)\n\n### Oh My Zsh\n\n1. Clone the repository:\n\n```zsh\ngit clone --depth=1 https://github.com/ntnyq/omz-plugin-bun.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/bun\n```\n\n2. Include it in your `~/.zshrc`:\n\n```zsh\nplugins=(... bun)\n```\n\n### Zinit\n\nAdd script bellow to your `~/.zshrc`\n\n```shell\nzinit light ntnyq/omz-plugin-bun\n```\n\n### Others\n\nPRs are always welcome!\n\n## Aliases\n\n| Alias | Command                   | Description                                                 |\n| ----- | ------------------------- | ----------------------------------------------------------- |\n| b     | `bun`                     | The bun command                                             |\n| bx    | `bun x`                   | Install and execute a package bin                           |\n| ba    | `bun add`                 | Install a package in dependencies (`package.json`)          |\n| bad   | `bun add --dev`           | Install a package in devDependencies (`package.json`)       |\n| brm   | `bun remove`              | Remove a dependency from package.json                       |\n| bls   | `bun pm ls`               | list the dependency tree according to the current lockfile  |\n| bi    | `bun init`                | Start an empty Bun project from a blank template            |\n| bin   | `bun install`             | Install dependencies for a package.json                     |\n| biny  | `bun install --yarn`      | Install dependencies and save lock file in yarn@v1 style    |\n| bga   | `bun add --global`        | Install packages globally on your operating system          |\n| bgls  | `bun pm ls --global`      | List global installed packages                              |\n| bgrm  | `bun remove --global`     | Remove global installed packages from your OS               |\n| bgu   | `bun update --global`     | Upgrade packages installed globally to their latest version |\n| br    | `bun run`                 | Run JavaScript with Bun, a package.json script, or a bin    |\n| brun  | `bun run`                 | Run JavaScript with Bun, a package.json script, or a bin    |\n| bst   | `bun run start`           | Run the start script defined in `package.json`              |\n| bln   | `bun run lint`            | Run the lint script defined in `package.json`               |\n| bdocs | `bun run docs`            | Run the docs script defined in `package.json`               |\n| bfmt  | `bun run format`          | Run the format script defined in `package.json`             |\n| bb    | `bun run build`           | Run the build script defined in `package.json`              |\n| bd    | `bun run dev`             | Run the dev script defined in `package.json`                |\n| bsv   | `bun run serve`           | Run the serve script defined in `package.json`              |\n| bt    | `bun run test`            | Run the test script defined in `package.json`               |\n| btc   | `bun run test --coverage` | Run the test script defined in `package.json` with coverage |\n| bu    | `bun update`              | Update outdated dependencies \u0026 save to package.json         |\n| bc    | `bun create`              | Create a new project from a template                        |\n| bbd   | `bun build`               | Bundle TypeScript \u0026 JavaScript into a single file           |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fntnyq%2Fomz-plugin-bun","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fntnyq%2Fomz-plugin-bun","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fntnyq%2Fomz-plugin-bun/lists"}