@twin.org/crypto-cli 0.0.1 → 0.0.2-next.11
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/cjs/index.cjs +3 -2
- package/dist/esm/index.mjs +3 -2
- package/dist/locales/en.json +9 -0
- package/docs/changelog.md +267 -0
- package/package.json +5 -5
package/dist/cjs/index.cjs
CHANGED
|
@@ -181,10 +181,11 @@ class CLI extends cliCore.CLIBase {
|
|
|
181
181
|
return this.execute({
|
|
182
182
|
title: "TWIN Crypto",
|
|
183
183
|
appName: "twin-crypto",
|
|
184
|
-
version: "0.0.
|
|
184
|
+
version: "0.0.2-next.11", // x-release-please-version
|
|
185
185
|
icon: "🌍",
|
|
186
186
|
supportsEnvFiles: true,
|
|
187
|
-
overrideOutputWidth: options?.overrideOutputWidth
|
|
187
|
+
overrideOutputWidth: options?.overrideOutputWidth,
|
|
188
|
+
showDevToolWarning: true
|
|
188
189
|
}, localesDirectory ?? path.join(path.dirname(node_url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href)))), "../locales"), argv);
|
|
189
190
|
}
|
|
190
191
|
/**
|
package/dist/esm/index.mjs
CHANGED
|
@@ -178,10 +178,11 @@ class CLI extends CLIBase {
|
|
|
178
178
|
return this.execute({
|
|
179
179
|
title: "TWIN Crypto",
|
|
180
180
|
appName: "twin-crypto",
|
|
181
|
-
version: "0.0.
|
|
181
|
+
version: "0.0.2-next.11", // x-release-please-version
|
|
182
182
|
icon: "🌍",
|
|
183
183
|
supportsEnvFiles: true,
|
|
184
|
-
overrideOutputWidth: options?.overrideOutputWidth
|
|
184
|
+
overrideOutputWidth: options?.overrideOutputWidth,
|
|
185
|
+
showDevToolWarning: true
|
|
185
186
|
}, localesDirectory ?? path.join(path.dirname(fileURLToPath(import.meta.url)), "../locales"), argv);
|
|
186
187
|
}
|
|
187
188
|
/**
|
package/dist/locales/en.json
CHANGED
|
@@ -178,6 +178,15 @@
|
|
|
178
178
|
},
|
|
179
179
|
"slip0010": {
|
|
180
180
|
"invalidSeed": "The seed is invalid \"{seed}\""
|
|
181
|
+
},
|
|
182
|
+
"rsa": {
|
|
183
|
+
"noPrivateKey": "Private key is required for this operation",
|
|
184
|
+
"invalidKeySize": "Invalid RSA key size"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"warn": {
|
|
188
|
+
"common": {
|
|
189
|
+
"devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
|
|
181
190
|
}
|
|
182
191
|
},
|
|
183
192
|
"cli": {
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,272 @@
|
|
|
1
1
|
# @twin.org/crypto-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.11](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.10...crypto-cli-v0.0.2-next.11) (2025-09-15)
|
|
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.0.2-next.10 to 0.0.2-next.11
|
|
16
|
+
* @twin.org/core bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
17
|
+
* @twin.org/crypto bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
18
|
+
* @twin.org/nameof bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
19
|
+
* devDependencies
|
|
20
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
21
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
22
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
23
|
+
|
|
24
|
+
## [0.0.2-next.10](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.9...crypto-cli-v0.0.2-next.10) (2025-09-11)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Miscellaneous Chores
|
|
28
|
+
|
|
29
|
+
* **crypto-cli:** Synchronize repo versions
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Dependencies
|
|
33
|
+
|
|
34
|
+
* The following workspace dependencies were updated
|
|
35
|
+
* dependencies
|
|
36
|
+
* @twin.org/cli-core bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
37
|
+
* @twin.org/core bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
38
|
+
* @twin.org/crypto bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
39
|
+
* @twin.org/nameof bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
40
|
+
* devDependencies
|
|
41
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
42
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
43
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
44
|
+
|
|
45
|
+
## [0.0.2-next.9](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.8...crypto-cli-v0.0.2-next.9) (2025-09-08)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Miscellaneous Chores
|
|
49
|
+
|
|
50
|
+
* **crypto-cli:** Synchronize repo versions
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Dependencies
|
|
54
|
+
|
|
55
|
+
* The following workspace dependencies were updated
|
|
56
|
+
* dependencies
|
|
57
|
+
* @twin.org/cli-core bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
58
|
+
* @twin.org/core bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
59
|
+
* @twin.org/crypto bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
60
|
+
* @twin.org/nameof bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
61
|
+
* devDependencies
|
|
62
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
63
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
64
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
65
|
+
|
|
66
|
+
## [0.0.2-next.8](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.7...crypto-cli-v0.0.2-next.8) (2025-09-05)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Miscellaneous Chores
|
|
70
|
+
|
|
71
|
+
* **crypto-cli:** Synchronize repo versions
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Dependencies
|
|
75
|
+
|
|
76
|
+
* The following workspace dependencies were updated
|
|
77
|
+
* dependencies
|
|
78
|
+
* @twin.org/cli-core bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
79
|
+
* @twin.org/core bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
80
|
+
* @twin.org/crypto bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
81
|
+
* @twin.org/nameof bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
82
|
+
* devDependencies
|
|
83
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
84
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
85
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
86
|
+
|
|
87
|
+
## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.6...crypto-cli-v0.0.2-next.7) (2025-08-29)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Features
|
|
91
|
+
|
|
92
|
+
* eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
### Dependencies
|
|
96
|
+
|
|
97
|
+
* The following workspace dependencies were updated
|
|
98
|
+
* dependencies
|
|
99
|
+
* @twin.org/cli-core bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
100
|
+
* @twin.org/core bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
101
|
+
* @twin.org/crypto bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
102
|
+
* @twin.org/nameof bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
103
|
+
* devDependencies
|
|
104
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
105
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
106
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
107
|
+
|
|
108
|
+
## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.5...crypto-cli-v0.0.2-next.6) (2025-08-27)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Miscellaneous Chores
|
|
112
|
+
|
|
113
|
+
* **crypto-cli:** Synchronize repo versions
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
### Dependencies
|
|
117
|
+
|
|
118
|
+
* The following workspace dependencies were updated
|
|
119
|
+
* dependencies
|
|
120
|
+
* @twin.org/cli-core bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
121
|
+
* @twin.org/core bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
122
|
+
* @twin.org/crypto bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
123
|
+
* @twin.org/nameof bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
124
|
+
* devDependencies
|
|
125
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
126
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
127
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
128
|
+
|
|
129
|
+
## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.4...crypto-cli-v0.0.2-next.5) (2025-08-19)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Features
|
|
133
|
+
|
|
134
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### Dependencies
|
|
138
|
+
|
|
139
|
+
* The following workspace dependencies were updated
|
|
140
|
+
* dependencies
|
|
141
|
+
* @twin.org/cli-core bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
142
|
+
* @twin.org/core bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
143
|
+
* @twin.org/crypto bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
144
|
+
* @twin.org/nameof bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
145
|
+
* devDependencies
|
|
146
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
147
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
148
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
149
|
+
|
|
150
|
+
## [0.0.2-next.4](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.3...crypto-cli-v0.0.2-next.4) (2025-08-15)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Miscellaneous Chores
|
|
154
|
+
|
|
155
|
+
* **crypto-cli:** Synchronize repo versions
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Dependencies
|
|
159
|
+
|
|
160
|
+
* The following workspace dependencies were updated
|
|
161
|
+
* dependencies
|
|
162
|
+
* @twin.org/cli-core bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
163
|
+
* @twin.org/core bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
164
|
+
* @twin.org/crypto bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
165
|
+
* @twin.org/nameof bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
166
|
+
* devDependencies
|
|
167
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
168
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
169
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
170
|
+
|
|
171
|
+
## [0.0.2-next.3](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.2...crypto-cli-v0.0.2-next.3) (2025-08-06)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
### Features
|
|
175
|
+
|
|
176
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
177
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
178
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
179
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
180
|
+
* update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
181
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
### Bug Fixes
|
|
185
|
+
|
|
186
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
187
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
188
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
### Dependencies
|
|
192
|
+
|
|
193
|
+
* The following workspace dependencies were updated
|
|
194
|
+
* dependencies
|
|
195
|
+
* @twin.org/cli-core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
196
|
+
* @twin.org/core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
197
|
+
* @twin.org/crypto bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
198
|
+
* @twin.org/nameof bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
199
|
+
* devDependencies
|
|
200
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
201
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
202
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
203
|
+
|
|
204
|
+
## [0.0.2-next.2](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.1...crypto-cli-v0.0.2-next.2) (2025-08-06)
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
### Features
|
|
208
|
+
|
|
209
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
210
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
211
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
212
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
213
|
+
* update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
214
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
### Bug Fixes
|
|
218
|
+
|
|
219
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
220
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
221
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
### Dependencies
|
|
225
|
+
|
|
226
|
+
* The following workspace dependencies were updated
|
|
227
|
+
* dependencies
|
|
228
|
+
* @twin.org/cli-core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
229
|
+
* @twin.org/core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
230
|
+
* @twin.org/crypto bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
231
|
+
* @twin.org/nameof bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
232
|
+
* devDependencies
|
|
233
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
234
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
235
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
236
|
+
|
|
237
|
+
## [0.0.2-next.1](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.0...crypto-cli-v0.0.2-next.1) (2025-08-06)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
### Features
|
|
241
|
+
|
|
242
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
243
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
244
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
245
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
246
|
+
* update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
247
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
### Bug Fixes
|
|
251
|
+
|
|
252
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
253
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
254
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
### Dependencies
|
|
258
|
+
|
|
259
|
+
* The following workspace dependencies were updated
|
|
260
|
+
* dependencies
|
|
261
|
+
* @twin.org/cli-core bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
262
|
+
* @twin.org/core bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
263
|
+
* @twin.org/crypto bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
264
|
+
* @twin.org/nameof bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
265
|
+
* devDependencies
|
|
266
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
267
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
268
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
269
|
+
|
|
3
270
|
## 0.0.1 (2025-07-03)
|
|
4
271
|
|
|
5
272
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/crypto-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2-next.11",
|
|
4
4
|
"description": "A command line interface for interacting with the crypto tools",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/cli-core": "
|
|
18
|
-
"@twin.org/core": "
|
|
19
|
-
"@twin.org/crypto": "
|
|
20
|
-
"@twin.org/nameof": "
|
|
17
|
+
"@twin.org/cli-core": "0.0.2-next.11",
|
|
18
|
+
"@twin.org/core": "0.0.2-next.11",
|
|
19
|
+
"@twin.org/crypto": "0.0.2-next.11",
|
|
20
|
+
"@twin.org/nameof": "0.0.2-next.11",
|
|
21
21
|
"commander": "14.0.0"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/cjs/index.cjs",
|