@vidos-id/openid4vc-issuer-cli 0.10.0 → 0.10.2

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.
package/README.md CHANGED
@@ -8,18 +8,24 @@ For wallet-side credential receipt and storage, use [`@vidos-id/openid4vc-wallet
8
8
 
9
9
  ## Install
10
10
 
11
- Download the latest GitHub Release artifact and make it executable:
11
+ Install the published CLI from npmjs:
12
12
 
13
13
  ```bash
14
- curl -L -o openid4vc-issuer https://github.com/vidos-id/openid4vc-tools/releases/latest/download/openid4vc-issuer.js
15
- chmod +x openid4vc-issuer
16
- ./openid4vc-issuer --help
14
+ bun install -g @vidos-id/openid4vc-issuer-cli
15
+ openid4vc-issuer --help
16
+ ```
17
+
18
+ Or with npm:
19
+
20
+ ```bash
21
+ npm install -g @vidos-id/openid4vc-issuer-cli
22
+ openid4vc-issuer --help
17
23
  ```
18
24
 
19
25
  For development in this repo, run the bin entry directly with Bun:
20
26
 
21
27
  ```bash
22
- bun packages/issuer-cli/src/index.ts --help
28
+ bun packages/issuer-cli/src/cli.ts --help
23
29
  ```
24
30
 
25
31
  ## What It Does
package/dist/cli.d.mts ADDED
@@ -0,0 +1 @@
1
+ export { };
package/dist/cli.mjs ADDED
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+ import { t as runCli } from "./src-DBuvoW80.mjs";
3
+ import { handleCliError } from "@vidos-id/openid4vc-cli-common";
4
+ //#region src/cli.ts
5
+ runCli().catch((error) => {
6
+ handleCliError(error);
7
+ });
8
+ //#endregion
9
+ export {};