Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"version": "0.0.1",
"type": "module",
"packageManager": "pnpm@10.7.1",
"packageManager": "pnpm@10.11.0",
"scripts": {
"dev": "concurrently \"pnpm dev:content\" \"vite dev\"",
"build": "pnpm build:content && pnpm build:svelte",
Expand Down
45 changes: 45 additions & 0 deletions src/lib/docs/cli/info.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
title: info
description: Get info about a registry hosted on jsrepo.com.
lastUpdated: 5-21-2025
---

```sh
jsrepo info
```

## Usage

Get formatted information about a registry on jsrepo.com:

```sh
jsrepo info @ieedan/std
```

Get information registry on jsrepo.com formatted as json:

```sh
jsrepo info @ieedan/std --json
```

## Options

### `--json`

Output the response in formatted JSON..

#### Usage

```sh
jsrepo info @ieedan/std --json
```

### `-h, --help`

Help with the command.

#### Usage

```sh
jsrepo info --help
```
4 changes: 4 additions & 0 deletions src/lib/docs/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ const tempMap: Record<string, [TempDoc, TempDoc[]] | [string, TempDoc[]]> = {
title: 'exec',
slug: 'exec'
},
{
title: 'info',
slug: 'info'
},
{
title: 'init',
slug: 'init'
Expand Down
12 changes: 12 additions & 0 deletions static/docs/cli/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,18 @@ jsrepo exec [options] [script]
- --verbose: Include debug logs.
- --cwd <path>: The current working directory. (default: ./)

### info

Get info about a registry hosted on jsrepo.com.

#### Usage
```bash
jsrepo info [options] <registry>
```

#### Options
- --json: Output the response in formatted JSON.

### init

Initializes your project with a configuration file.
Expand Down
Loading