List recent deploys

## Usage

`circleci deploy list [flags]`

Aliases: `circleci deploy ls`

## Flags

| Flag               | Description                                                                       |
| ------------------ | --------------------------------------------------------------------------------- |
| `--jq string`      | Process values from the response using jq syntax (see `circleci help formatting`) |
| `--json`           | Output as JSON                                                                    |
| `--project string` | Project slug (e.g. gh/org/repo); defaults to git remote                           |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- List the 10 most recent deploys (auto-detect project from git remote): 
  `circleci deploy list`
- List for a specific project: 
  `circleci deploy list --project gh/myorg/myrepo`
- Output as JSON for scripting: 
  `circleci deploy list --json`

## Details

List deploys for a CircleCI project.

The project is inferred from the current git repository's remote
unless overridden with --project. Each deploy shows the component,
version, status, type, and when it was created.

JSON fields: id, component_name, version, type, status, is_rollback, pipeline_id, workflow_id, created_at, ended_at

