@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 +11 -5
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +9 -0
- package/dist/index.mjs +1 -1054
- package/dist/src-DBuvoW80.mjs +1050 -0
- package/package.json +4 -4
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
|
-
|
|
11
|
+
Install the published CLI from npmjs:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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/
|
|
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