{"_id":"@anarkrypto/supabase-cli","name":"@anarkrypto/supabase-cli","dist-tags":{"latest":"0.0.0-automated"},"versions":{"0.0.0-automated":{"name":"@anarkrypto/supabase-cli","version":"0.0.0-automated","description":"Supabase CLI","repository":{"type":"git","url":"git+https://github.com/anarkrypto/supabase-cli.git"},"homepage":"https://supabase.com/docs/reference/cli","bugs":{"url":"https://github.com/supabase/cli/issues"},"license":"MIT","author":{"name":"Supabase"},"type":"module","engines":{"npm":">=8"},"scripts":{"postinstall":"node scripts/postinstall.js"},"bin":{"supabase":"bin/supabase"},"dependencies":{"bin-links":"^4.0.1","node-fetch":"^3.2.10","https-proxy-agent":"^7.0.2","tar":"6.2.0"},"release":{"branches":[{"name":"+([0-9])?(.{+([0-9]),x}).x","channel":"hotfix"},{"name":"main","channel":"beta"}],"plugins":["@semantic-release/commit-analyzer","@semantic-release/git"]},"gitHead":"fb7414f164ace072897a83c8b3e15fab408ab7f2","_id":"@anarkrypto/supabase-cli@0.0.0-automated","_nodeVersion":"18.17.1","_npmVersion":"9.6.7","dist":{"integrity":"sha512-uyNEFh9/Bz8IpdAkag8aR7giX9PuNDClJSf5Ne8UDOC3G3ILZLQhi/cXtyQeke8YkuEfmHEUDW+1TbHlnu1DWg==","shasum":"21d12e8f0d5a7ee91ce8a1b7ff1ce3f4671151d8","tarball":"https://registry.npmjs.org/@anarkrypto/supabase-cli/-/supabase-cli-0.0.0-automated.tgz","fileCount":4,"unpackedSize":11032,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZDOKRrsCtpXL3jye2ZJj/z6JSDAm6xCsuN6ldKA1aCQIhAIkMG1Fd6ilqn+BDIHBFLz0NHrzPm/jSqDGFlbqERu4L"}]},"_npmUser":{"name":"anarkrypto","email":"anarkrypto@gmail.com"},"directories":{},"maintainers":[{"name":"anarkrypto","email":"anarkrypto@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/supabase-cli_0.0.0-automated_1702533375352_0.7645258828350763"},"_hasShrinkwrap":false}},"time":{"created":"2023-12-14T05:56:15.264Z","0.0.0-automated":"2023-12-14T05:56:15.538Z","modified":"2023-12-14T05:56:15.783Z"},"maintainers":[{"name":"anarkrypto","email":"anarkrypto@gmail.com"}],"description":"Supabase CLI","homepage":"https://supabase.com/docs/reference/cli","repository":{"type":"git","url":"git+https://github.com/anarkrypto/supabase-cli.git"},"author":{"name":"Supabase"},"bugs":{"url":"https://github.com/supabase/cli/issues"},"license":"MIT","readme":"# Supabase CLI (v1)\n\n[![Coverage Status](https://coveralls.io/repos/github/supabase/cli/badge.svg?branch=main)](https://coveralls.io/github/supabase/cli?branch=main)\n\n[Supabase](https://supabase.io) is an open source Firebase alternative. We're building the features of Firebase using enterprise-grade open source tools.\n\nThis repository contains all the functionality for Supabase CLI.\n\n- [x] Running Supabase locally\n- [x] Managing database migrations\n- [x] Pushing your local changes to production\n- [x] Create and Deploy Supabase Functions\n- [ ] Manage your Supabase Account\n- [x] Manage your Supabase Projects\n- [x] Generating types directly from your database schema\n- [ ] Generating API and validation schemas from your database\n\n## Getting started\n\n### Install the CLI\n\nAvailable via [NPM](https://www.npmjs.com) as dev dependency. To install:\n\n```bash\nnpm i supabase --save-dev\n```\n\nTo install the beta release channel:\n\n```bash\nnpm i supabase@beta --save-dev\n```\n\n> **Note**\nFor Bun users, you must add `supabase` as a [trusted dependency](https://bun.sh/guides/install/trusted) before running `bun add -D supabase`.\n\n<details>\n  <summary><b>macOS</b></summary>\n\n  Available via [Homebrew](https://brew.sh). To install:\n\n  ```sh\n  brew install supabase/tap/supabase\n  ```\n\n  To install the beta release channel:\n  \n  ```sh\n  brew install supabase/tap/supabase-beta\n  brew link --overwrite supabase-beta\n  ```\n  \n  To upgrade:\n\n  ```sh\n  brew upgrade supabase\n  ```\n</details>\n\n<details>\n  <summary><b>Windows</b></summary>\n\n  Available via [Scoop](https://scoop.sh). To install:\n\n  ```powershell\n  scoop bucket add supabase https://github.com/supabase/scoop-bucket.git\n  scoop install supabase\n  ```\n\n  To upgrade:\n\n  ```powershell\n  scoop update supabase\n  ```\n</details>\n\n<details>\n  <summary><b>Linux</b></summary>\n\n  Available via [Homebrew](https://brew.sh) and Linux packages.\n\n  #### via Homebrew\n\n  To install:\n\n  ```sh\n  brew install supabase/tap/supabase\n  ```\n\n  To upgrade:\n\n  ```sh\n  brew upgrade supabase\n  ```\n\n  #### via Linux packages\n\n  Linux packages are provided in [Releases](https://github.com/supabase/cli/releases). To install, download the `.apk`/`.deb`/`.rpm`/`.pkg.tar.zst` file depending on your package manager and run the respective commands.\n\n  ```sh\n  sudo apk add --allow-untrusted <...>.apk\n  ```\n\n  ```sh\n  sudo dpkg -i <...>.deb\n  ```\n\n  ```sh\n  sudo rpm -i <...>.rpm\n  ```\n\n  ```sh\n  sudo pacman -U <...>.pkg.tar.zst\n  ```\n</details>\n\n<details>\n  <summary><b>Other Platforms</b></summary>\n\n  You can also install the CLI via [go modules](https://go.dev/ref/mod#go-install) without the help of package managers.\n\n  ```sh\n  go install github.com/supabase/cli@latest\n  ```\n\n  Add a symlink to the binary in `$PATH` for easier access:\n\n  ```sh\n  ln -s \"$(go env GOPATH)/cli\" /usr/bin/supabase\n  ```\n\n  This works on other non-standard Linux distros.\n</details>\n\n<details>\n  <summary><b>Community Maintained Packages</b></summary>\n\n  Available via [pkgx](https://pkgx.sh/). Package script [here](https://github.com/pkgxdev/pantry/blob/main/projects/supabase.com/cli/package.yml).\n  To install in your working directory:\n\n  ```bash\n  pkgx install supabase\n  ```\n\n  Available via [Nixpkgs](https://nixos.org/). Package script [here](https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/tools/supabase-cli/default.nix).\n</details>\n\n### Run the CLI\n\n```bash\nsupabase help\n```\n\nOr using npx:\n\n```bash\nnpx supabase help\n```\n\n## Docs\n\nCommand & config reference can be found [here](https://supabase.com/docs/reference/cli/about).\n\n## Breaking changes\n\nThe CLI is a WIP and we're still exploring the design, so expect a lot of breaking changes. We try to document migration steps in [Releases](https://github.com/supabase/cli/releases). Please file an issue if these steps don't work!\n\n## Developing\n\nTo run from source:\n\n```sh\n# Go >= 1.20\ngo run . help\n```\n\n","readmeFilename":"README.md"}