@twin.org/crypto-cli 0.9.1 → 0.9.2-next.10

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/dist/es/cli.js CHANGED
@@ -21,7 +21,7 @@ export class CLI extends CLIBase {
21
21
  return this.execute({
22
22
  title: "TWIN Crypto",
23
23
  appName: "twin-crypto",
24
- version: "0.9.1", // x-release-please-version
24
+ version: "0.9.2-next.10", // x-release-please-version
25
25
  icon: "🔒",
26
26
  supportsEnvFiles: true,
27
27
  overrideOutputWidth: options?.overrideOutputWidth,
@@ -1 +1 @@
1
- {"version":3,"file":"cli.js","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAE7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D;;GAEG;AACH,MAAM,OAAO,GAAI,SAAQ,OAAO;IAC/B;;;;;;;OAOG;IACI,KAAK,CAAC,GAAG,CACf,IAAc,EACd,gBAAyB,EACzB,OAA0C;QAE1C,OAAO,IAAI,CAAC,OAAO,CAClB;YACC,KAAK,EAAE,aAAa;YACpB,OAAO,EAAE,aAAa;YACtB,OAAO,EAAE,OAAO,EAAE,2BAA2B;YAC7C,IAAI,EAAE,IAAI;YACV,gBAAgB,EAAE,IAAI;YACtB,mBAAmB,EAAE,OAAO,EAAE,mBAAmB;YACjD,kBAAkB,EAAE,IAAI;SACxB,EACD,gBAAgB,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,YAAY,CAAC,EACzF,IAAI,CACJ,CAAC;IACH,CAAC;IAED;;;;;OAKG;IACO,WAAW,CAAC,OAAgB;QACrC,OAAO,CAAC,oBAAoB,EAAE,EAAE,mBAAmB,EAAE,CAAC,CAAC;IACxD,CAAC;CACD","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport path from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\nimport { CLIBase } from \"@twin.org/cli-core\";\nimport type { Command } from \"commander\";\nimport { buildCommandAddress } from \"./commands/address.js\";\nimport { buildCommandMnemonic } from \"./commands/mnemonic.js\";\n\n/**\n * The main entry point for the CLI.\n */\nexport class CLI extends CLIBase {\n\t/**\n\t * Run the app.\n\t * @param argv The process arguments.\n\t * @param localesDirectory The directory for the locales, default to relative to the script.\n\t * @param options Additional options.\n\t * @param options.overrideOutputWidth Override the output width.\n\t * @returns The exit code.\n\t */\n\tpublic async run(\n\t\targv: string[],\n\t\tlocalesDirectory?: string,\n\t\toptions?: { overrideOutputWidth?: number }\n\t): Promise<number> {\n\t\treturn this.execute(\n\t\t\t{\n\t\t\t\ttitle: \"TWIN Crypto\",\n\t\t\t\tappName: \"twin-crypto\",\n\t\t\t\tversion: \"0.9.1\", // x-release-please-version\n\t\t\t\ticon: \"🔒\",\n\t\t\t\tsupportsEnvFiles: true,\n\t\t\t\toverrideOutputWidth: options?.overrideOutputWidth,\n\t\t\t\tshowDevToolWarning: true\n\t\t\t},\n\t\t\tlocalesDirectory ?? path.join(path.dirname(fileURLToPath(import.meta.url)), \"../locales\"),\n\t\t\targv\n\t\t);\n\t}\n\n\t/**\n\t * Get the commands for the CLI.\n\t * @param program The main program to add the commands to.\n\t * @returns The commands to register with the CLI program.\n\t * @internal\n\t */\n\tprotected getCommands(program: Command): Command[] {\n\t\treturn [buildCommandMnemonic(), buildCommandAddress()];\n\t}\n}\n"]}
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAE7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D;;GAEG;AACH,MAAM,OAAO,GAAI,SAAQ,OAAO;IAC/B;;;;;;;OAOG;IACI,KAAK,CAAC,GAAG,CACf,IAAc,EACd,gBAAyB,EACzB,OAA0C;QAE1C,OAAO,IAAI,CAAC,OAAO,CAClB;YACC,KAAK,EAAE,aAAa;YACpB,OAAO,EAAE,aAAa;YACtB,OAAO,EAAE,eAAe,EAAE,2BAA2B;YACrD,IAAI,EAAE,IAAI;YACV,gBAAgB,EAAE,IAAI;YACtB,mBAAmB,EAAE,OAAO,EAAE,mBAAmB;YACjD,kBAAkB,EAAE,IAAI;SACxB,EACD,gBAAgB,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,YAAY,CAAC,EACzF,IAAI,CACJ,CAAC;IACH,CAAC;IAED;;;;;OAKG;IACO,WAAW,CAAC,OAAgB;QACrC,OAAO,CAAC,oBAAoB,EAAE,EAAE,mBAAmB,EAAE,CAAC,CAAC;IACxD,CAAC;CACD","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport path from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\nimport { CLIBase } from \"@twin.org/cli-core\";\nimport type { Command } from \"commander\";\nimport { buildCommandAddress } from \"./commands/address.js\";\nimport { buildCommandMnemonic } from \"./commands/mnemonic.js\";\n\n/**\n * The main entry point for the CLI.\n */\nexport class CLI extends CLIBase {\n\t/**\n\t * Run the app.\n\t * @param argv The process arguments.\n\t * @param localesDirectory The directory for the locales, default to relative to the script.\n\t * @param options Additional options.\n\t * @param options.overrideOutputWidth Override the output width.\n\t * @returns The exit code.\n\t */\n\tpublic async run(\n\t\targv: string[],\n\t\tlocalesDirectory?: string,\n\t\toptions?: { overrideOutputWidth?: number }\n\t): Promise<number> {\n\t\treturn this.execute(\n\t\t\t{\n\t\t\t\ttitle: \"TWIN Crypto\",\n\t\t\t\tappName: \"twin-crypto\",\n\t\t\t\tversion: \"0.9.2-next.10\", // x-release-please-version\n\t\t\t\ticon: \"🔒\",\n\t\t\t\tsupportsEnvFiles: true,\n\t\t\t\toverrideOutputWidth: options?.overrideOutputWidth,\n\t\t\t\tshowDevToolWarning: true\n\t\t\t},\n\t\t\tlocalesDirectory ?? path.join(path.dirname(fileURLToPath(import.meta.url)), \"../locales\"),\n\t\t\targv\n\t\t);\n\t}\n\n\t/**\n\t * Get the commands for the CLI.\n\t * @param program The main program to add the commands to.\n\t * @returns The commands to register with the CLI program.\n\t * @internal\n\t */\n\tprotected getCommands(program: Command): Command[] {\n\t\treturn [buildCommandMnemonic(), buildCommandAddress()];\n\t}\n}\n"]}
package/docs/changelog.md CHANGED
@@ -1,5 +1,236 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.2-next.10](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.2-next.9...crypto-cli-v0.9.2-next.10) (2026-08-11)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **crypto-cli:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/cli-core bumped from 0.9.2-next.9 to 0.9.2-next.10
16
+ * @twin.org/core bumped from 0.9.2-next.9 to 0.9.2-next.10
17
+ * @twin.org/crypto bumped from 0.9.2-next.9 to 0.9.2-next.10
18
+ * @twin.org/nameof bumped from 0.9.2-next.9 to 0.9.2-next.10
19
+ * devDependencies
20
+ * @twin.org/merge-locales bumped from 0.9.2-next.9 to 0.9.2-next.10
21
+ * @twin.org/nameof-transformer bumped from 0.9.2-next.9 to 0.9.2-next.10
22
+ * @twin.org/nameof-vitest-plugin bumped from 0.9.2-next.9 to 0.9.2-next.10
23
+ * @twin.org/validate-locales bumped from 0.9.2-next.9 to 0.9.2-next.10
24
+
25
+ ## [0.9.2-next.9](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.2-next.8...crypto-cli-v0.9.2-next.9) (2026-08-10)
26
+
27
+
28
+ ### Miscellaneous Chores
29
+
30
+ * **crypto-cli:** Synchronize repo versions
31
+
32
+
33
+ ### Dependencies
34
+
35
+ * The following workspace dependencies were updated
36
+ * dependencies
37
+ * @twin.org/cli-core bumped from 0.9.2-next.8 to 0.9.2-next.9
38
+ * @twin.org/core bumped from 0.9.2-next.8 to 0.9.2-next.9
39
+ * @twin.org/crypto bumped from 0.9.2-next.8 to 0.9.2-next.9
40
+ * @twin.org/nameof bumped from 0.9.2-next.8 to 0.9.2-next.9
41
+ * devDependencies
42
+ * @twin.org/merge-locales bumped from 0.9.2-next.8 to 0.9.2-next.9
43
+ * @twin.org/nameof-transformer bumped from 0.9.2-next.8 to 0.9.2-next.9
44
+ * @twin.org/nameof-vitest-plugin bumped from 0.9.2-next.8 to 0.9.2-next.9
45
+ * @twin.org/validate-locales bumped from 0.9.2-next.8 to 0.9.2-next.9
46
+
47
+ ## [0.9.2-next.8](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.2-next.7...crypto-cli-v0.9.2-next.8) (2026-08-10)
48
+
49
+
50
+ ### Miscellaneous Chores
51
+
52
+ * **crypto-cli:** Synchronize repo versions
53
+
54
+
55
+ ### Dependencies
56
+
57
+ * The following workspace dependencies were updated
58
+ * dependencies
59
+ * @twin.org/cli-core bumped from 0.9.2-next.7 to 0.9.2-next.8
60
+ * @twin.org/core bumped from 0.9.2-next.7 to 0.9.2-next.8
61
+ * @twin.org/crypto bumped from 0.9.2-next.7 to 0.9.2-next.8
62
+ * @twin.org/nameof bumped from 0.9.2-next.7 to 0.9.2-next.8
63
+ * devDependencies
64
+ * @twin.org/merge-locales bumped from 0.9.2-next.7 to 0.9.2-next.8
65
+ * @twin.org/nameof-transformer bumped from 0.9.2-next.7 to 0.9.2-next.8
66
+ * @twin.org/nameof-vitest-plugin bumped from 0.9.2-next.7 to 0.9.2-next.8
67
+ * @twin.org/validate-locales bumped from 0.9.2-next.7 to 0.9.2-next.8
68
+
69
+ ## [0.9.2-next.7](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.2-next.6...crypto-cli-v0.9.2-next.7) (2026-08-07)
70
+
71
+
72
+ ### Features
73
+
74
+ * linting and dependency update ([676b4e9](https://github.com/iotaledger/twin-framework/commit/676b4e9d9bce158065200bbf875bb31da81d166d))
75
+
76
+
77
+ ### Dependencies
78
+
79
+ * The following workspace dependencies were updated
80
+ * dependencies
81
+ * @twin.org/cli-core bumped from 0.9.2-next.6 to 0.9.2-next.7
82
+ * @twin.org/core bumped from 0.9.2-next.6 to 0.9.2-next.7
83
+ * @twin.org/crypto bumped from 0.9.2-next.6 to 0.9.2-next.7
84
+ * @twin.org/nameof bumped from 0.9.2-next.6 to 0.9.2-next.7
85
+ * devDependencies
86
+ * @twin.org/merge-locales bumped from 0.9.2-next.6 to 0.9.2-next.7
87
+ * @twin.org/nameof-transformer bumped from 0.9.2-next.6 to 0.9.2-next.7
88
+ * @twin.org/nameof-vitest-plugin bumped from 0.9.2-next.6 to 0.9.2-next.7
89
+ * @twin.org/validate-locales bumped from 0.9.2-next.6 to 0.9.2-next.7
90
+
91
+ ## [0.9.2-next.6](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.2-next.5...crypto-cli-v0.9.2-next.6) (2026-08-04)
92
+
93
+
94
+ ### Miscellaneous Chores
95
+
96
+ * **crypto-cli:** Synchronize repo versions
97
+
98
+
99
+ ### Dependencies
100
+
101
+ * The following workspace dependencies were updated
102
+ * dependencies
103
+ * @twin.org/cli-core bumped from 0.9.2-next.5 to 0.9.2-next.6
104
+ * @twin.org/core bumped from 0.9.2-next.5 to 0.9.2-next.6
105
+ * @twin.org/crypto bumped from 0.9.2-next.5 to 0.9.2-next.6
106
+ * @twin.org/nameof bumped from 0.9.2-next.5 to 0.9.2-next.6
107
+ * devDependencies
108
+ * @twin.org/merge-locales bumped from 0.9.2-next.5 to 0.9.2-next.6
109
+ * @twin.org/nameof-transformer bumped from 0.9.2-next.5 to 0.9.2-next.6
110
+ * @twin.org/nameof-vitest-plugin bumped from 0.9.2-next.5 to 0.9.2-next.6
111
+ * @twin.org/validate-locales bumped from 0.9.2-next.5 to 0.9.2-next.6
112
+
113
+ ## [0.9.2-next.5](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.2-next.4...crypto-cli-v0.9.2-next.5) (2026-08-03)
114
+
115
+
116
+ ### Miscellaneous Chores
117
+
118
+ * **crypto-cli:** Synchronize repo versions
119
+
120
+
121
+ ### Dependencies
122
+
123
+ * The following workspace dependencies were updated
124
+ * dependencies
125
+ * @twin.org/cli-core bumped from 0.9.2-next.4 to 0.9.2-next.5
126
+ * @twin.org/core bumped from 0.9.2-next.4 to 0.9.2-next.5
127
+ * @twin.org/crypto bumped from 0.9.2-next.4 to 0.9.2-next.5
128
+ * @twin.org/nameof bumped from 0.9.2-next.4 to 0.9.2-next.5
129
+ * devDependencies
130
+ * @twin.org/merge-locales bumped from 0.9.2-next.4 to 0.9.2-next.5
131
+ * @twin.org/nameof-transformer bumped from 0.9.2-next.4 to 0.9.2-next.5
132
+ * @twin.org/nameof-vitest-plugin bumped from 0.9.2-next.4 to 0.9.2-next.5
133
+ * @twin.org/validate-locales bumped from 0.9.2-next.4 to 0.9.2-next.5
134
+
135
+ ## [0.9.2-next.4](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.2-next.3...crypto-cli-v0.9.2-next.4) (2026-07-31)
136
+
137
+
138
+ ### Miscellaneous Chores
139
+
140
+ * **crypto-cli:** Synchronize repo versions
141
+
142
+
143
+ ### Dependencies
144
+
145
+ * The following workspace dependencies were updated
146
+ * dependencies
147
+ * @twin.org/cli-core bumped from 0.9.2-next.3 to 0.9.2-next.4
148
+ * @twin.org/core bumped from 0.9.2-next.3 to 0.9.2-next.4
149
+ * @twin.org/crypto bumped from 0.9.2-next.3 to 0.9.2-next.4
150
+ * @twin.org/nameof bumped from 0.9.2-next.3 to 0.9.2-next.4
151
+ * devDependencies
152
+ * @twin.org/merge-locales bumped from 0.9.2-next.3 to 0.9.2-next.4
153
+ * @twin.org/nameof-transformer bumped from 0.9.2-next.3 to 0.9.2-next.4
154
+ * @twin.org/nameof-vitest-plugin bumped from 0.9.2-next.3 to 0.9.2-next.4
155
+ * @twin.org/validate-locales bumped from 0.9.2-next.3 to 0.9.2-next.4
156
+
157
+ ## [0.9.2-next.3](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.2-next.2...crypto-cli-v0.9.2-next.3) (2026-07-30)
158
+
159
+
160
+ ### Miscellaneous Chores
161
+
162
+ * **crypto-cli:** Synchronize repo versions
163
+
164
+
165
+ ### Dependencies
166
+
167
+ * The following workspace dependencies were updated
168
+ * dependencies
169
+ * @twin.org/cli-core bumped from 0.9.2-next.2 to 0.9.2-next.3
170
+ * @twin.org/core bumped from 0.9.2-next.2 to 0.9.2-next.3
171
+ * @twin.org/crypto bumped from 0.9.2-next.2 to 0.9.2-next.3
172
+ * @twin.org/nameof bumped from 0.9.2-next.2 to 0.9.2-next.3
173
+ * devDependencies
174
+ * @twin.org/merge-locales bumped from 0.9.2-next.2 to 0.9.2-next.3
175
+ * @twin.org/nameof-transformer bumped from 0.9.2-next.2 to 0.9.2-next.3
176
+ * @twin.org/nameof-vitest-plugin bumped from 0.9.2-next.2 to 0.9.2-next.3
177
+ * @twin.org/validate-locales bumped from 0.9.2-next.2 to 0.9.2-next.3
178
+
179
+ ## [0.9.2-next.2](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.2-next.1...crypto-cli-v0.9.2-next.2) (2026-07-29)
180
+
181
+
182
+ ### Miscellaneous Chores
183
+
184
+ * **crypto-cli:** Synchronize repo versions
185
+
186
+
187
+ ### Dependencies
188
+
189
+ * The following workspace dependencies were updated
190
+ * dependencies
191
+ * @twin.org/cli-core bumped from 0.9.2-next.1 to 0.9.2-next.2
192
+ * @twin.org/core bumped from 0.9.2-next.1 to 0.9.2-next.2
193
+ * @twin.org/crypto bumped from 0.9.2-next.1 to 0.9.2-next.2
194
+ * @twin.org/nameof bumped from 0.9.2-next.1 to 0.9.2-next.2
195
+ * devDependencies
196
+ * @twin.org/merge-locales bumped from 0.9.2-next.1 to 0.9.2-next.2
197
+ * @twin.org/nameof-transformer bumped from 0.9.2-next.1 to 0.9.2-next.2
198
+ * @twin.org/nameof-vitest-plugin bumped from 0.9.2-next.1 to 0.9.2-next.2
199
+ * @twin.org/validate-locales bumped from 0.9.2-next.1 to 0.9.2-next.2
200
+
201
+ ## [0.9.2-next.1](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.2-next.0...crypto-cli-v0.9.2-next.1) (2026-07-28)
202
+
203
+
204
+ ### Features
205
+
206
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
207
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
208
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
209
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
210
+ * update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
211
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
212
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
213
+
214
+
215
+ ### Bug Fixes
216
+
217
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
218
+
219
+
220
+ ### Dependencies
221
+
222
+ * The following workspace dependencies were updated
223
+ * dependencies
224
+ * @twin.org/cli-core bumped from 0.9.2-next.0 to 0.9.2-next.1
225
+ * @twin.org/core bumped from 0.9.2-next.0 to 0.9.2-next.1
226
+ * @twin.org/crypto bumped from 0.9.2-next.0 to 0.9.2-next.1
227
+ * @twin.org/nameof bumped from 0.9.2-next.0 to 0.9.2-next.1
228
+ * devDependencies
229
+ * @twin.org/merge-locales bumped from 0.9.2-next.0 to 0.9.2-next.1
230
+ * @twin.org/nameof-transformer bumped from 0.9.2-next.0 to 0.9.2-next.1
231
+ * @twin.org/nameof-vitest-plugin bumped from 0.9.2-next.0 to 0.9.2-next.1
232
+ * @twin.org/validate-locales bumped from 0.9.2-next.0 to 0.9.2-next.1
233
+
3
234
  ## [0.9.1](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.9.1...crypto-cli-v0.9.1) (2026-07-26)
4
235
 
5
236
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/crypto-cli",
3
- "version": "0.9.1",
3
+ "version": "0.9.2-next.10",
4
4
  "description": "Command line interface for interacting with the crypto tools",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,10 +14,10 @@
14
14
  "node": ">=24.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/cli-core": "^0.9.1",
18
- "@twin.org/core": "^0.9.1",
19
- "@twin.org/crypto": "^0.9.1",
20
- "@twin.org/nameof": "^0.9.1",
17
+ "@twin.org/cli-core": "0.9.2-next.10",
18
+ "@twin.org/core": "0.9.2-next.10",
19
+ "@twin.org/crypto": "0.9.2-next.10",
20
+ "@twin.org/nameof": "0.9.2-next.10",
21
21
  "commander": "15.0.0"
22
22
  },
23
23
  "main": "./dist/es/index.js",