@tscircuit/cli 0.0.46 → 0.0.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,30 +3,11 @@ import packageJson from "../package.json"
3
3
  import { AppContext } from "./util/app-context"
4
4
  import * as CMDFN from "lib/cmd-fns"
5
5
 
6
- // | Endpoint | Description |
7
- // | ------------------------------------- | ---------------------------- |
8
- // | /packages/search | Search for packages |
9
- // | /packages/list | List packages with a filter |
10
- // | /packages/get | Get a package by id or name |
11
- // | /packages/create | Create a new package |
12
- // | /package_releases/list | List package releases |
13
- // | /package_releases/get | Get a package release by id |
14
- // | /package_releases/create | Create a new package release |
15
- // | /package_files/list | List package files |
16
- // | /package_files/get | Get a package file by id |
17
- // | /package_files/download | Download a package file |
18
- // | /package_files/create | Create a new package file |
19
- // | /package_examples/list | List package examples |
20
- // | /package_examples/get | Get a package example by id |
21
- // | /package_examples/create | Create a new package example |
22
-
23
6
  export const getProgram = (ctx: AppContext) => {
24
7
  const cmd = new Command("tsci").description(
25
8
  "Develop, test and manage tscircuit packages"
26
9
  )
27
10
 
28
- cmd
29
-
30
11
  const authCmd = cmd.command("auth").description("Login/logout")
31
12
  authCmd
32
13
  .command("login")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.0.46",
3
+ "version": "0.0.47",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Command line tool for developing, publishing and installing tscircuit circuits",