@vidos-id/openid4vc-wallet-cli 0.10.0 → 0.10.1
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 +10 -6
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +9 -0
- package/dist/index.mjs +1 -935
- package/dist/src-CneBTuze.mjs +931 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -10,20 +10,24 @@ Running `openid4vc-wallet` with no subcommand starts the interactive mode by def
|
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Install the published CLI from npmjs:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
./openid4vc-wallet --help
|
|
16
|
+
bun install -g @vidos-id/openid4vc-wallet-cli
|
|
17
|
+
openid4vc-wallet --help
|
|
19
18
|
```
|
|
20
19
|
|
|
21
|
-
|
|
20
|
+
Or with npm:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install -g @vidos-id/openid4vc-wallet-cli
|
|
24
|
+
openid4vc-wallet --help
|
|
25
|
+
```
|
|
22
26
|
|
|
23
27
|
For development in this repo, you can run the bin entry directly with Bun:
|
|
24
28
|
|
|
25
29
|
```bash
|
|
26
|
-
bun packages/wallet-cli/src/
|
|
30
|
+
bun packages/wallet-cli/src/cli.ts --help
|
|
27
31
|
```
|
|
28
32
|
|
|
29
33
|
## Files in `--wallet-dir`
|
package/dist/cli.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/dist/cli.mjs
ADDED