@internxt/cli 1.5.4 → 1.5.5
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/.env +4 -3
- package/README.md +57 -25
- package/dist/commands/download-file.js +2 -1
- package/dist/commands/upload-file.js +1 -0
- package/dist/services/auth.service.js +1 -0
- package/dist/services/keys.service.js +1 -1
- package/dist/services/sdk-manager.service.js +1 -0
- package/dist/services/validation.service.js +2 -2
- package/dist/types/config.types.d.ts +1 -0
- package/dist/webdav/webdav-server.js +1 -0
- package/oclif.manifest.json +1 -1
- package/package.json +22 -26
package/.env
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
DRIVE_WEB_URL=https://drive.internxt.com
|
|
2
|
-
DRIVE_NEW_API_URL=https://
|
|
3
|
-
NETWORK_URL=https://
|
|
2
|
+
DRIVE_NEW_API_URL=https://gateway.internxt.com/drive
|
|
3
|
+
NETWORK_URL=https://gateway.internxt.com/network
|
|
4
4
|
APP_CRYPTO_SECRET=6KYQBP847D4ATSFA
|
|
5
5
|
APP_MAGIC_IV=d139cb9a2cd17092e79e1861cf9d7023
|
|
6
|
-
APP_MAGIC_SALT=38dce0391b49efba88dbc8c39ebf868f0267eb110bb0012ab27dc52a528d61b1d1ed9d76f400ff58e3240028442b1eab9bb84e111d9dadd997982dbde9dbd25e
|
|
6
|
+
APP_MAGIC_SALT=38dce0391b49efba88dbc8c39ebf868f0267eb110bb0012ab27dc52a528d61b1d1ed9d76f400ff58e3240028442b1eab9bb84e111d9dadd997982dbde9dbd25e
|
|
7
|
+
DESKTOP_HEADER=3b68706a367fd567b929396290b1de40768bb768
|
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ $ npm install -g @internxt/cli
|
|
|
51
51
|
$ internxt COMMAND
|
|
52
52
|
running command...
|
|
53
53
|
$ internxt (--version)
|
|
54
|
-
@internxt/cli/1.5.
|
|
54
|
+
@internxt/cli/1.5.5 linux-x64 node-v22.19.0
|
|
55
55
|
$ internxt --help [COMMAND]
|
|
56
56
|
USAGE
|
|
57
57
|
$ internxt COMMAND
|
|
@@ -63,6 +63,7 @@ USAGE
|
|
|
63
63
|
|
|
64
64
|
<!-- commands -->
|
|
65
65
|
* [`internxt add-cert`](#internxt-add-cert)
|
|
66
|
+
* [`internxt autocomplete [SHELL]`](#internxt-autocomplete-shell)
|
|
66
67
|
* [`internxt config`](#internxt-config)
|
|
67
68
|
* [`internxt create-folder`](#internxt-create-folder)
|
|
68
69
|
* [`internxt delete-permanently-file`](#internxt-delete-permanently-file)
|
|
@@ -119,7 +120,38 @@ EXAMPLES
|
|
|
119
120
|
$ internxt add-cert
|
|
120
121
|
```
|
|
121
122
|
|
|
122
|
-
_See code: [src/commands/add-cert.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
123
|
+
_See code: [src/commands/add-cert.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/add-cert.ts)_
|
|
124
|
+
|
|
125
|
+
## `internxt autocomplete [SHELL]`
|
|
126
|
+
|
|
127
|
+
Display autocomplete installation instructions.
|
|
128
|
+
|
|
129
|
+
```
|
|
130
|
+
USAGE
|
|
131
|
+
$ internxt autocomplete [SHELL] [-r]
|
|
132
|
+
|
|
133
|
+
ARGUMENTS
|
|
134
|
+
SHELL (zsh|bash|powershell) Shell type
|
|
135
|
+
|
|
136
|
+
FLAGS
|
|
137
|
+
-r, --refresh-cache Refresh cache (ignores displaying instructions)
|
|
138
|
+
|
|
139
|
+
DESCRIPTION
|
|
140
|
+
Display autocomplete installation instructions.
|
|
141
|
+
|
|
142
|
+
EXAMPLES
|
|
143
|
+
$ internxt autocomplete
|
|
144
|
+
|
|
145
|
+
$ internxt autocomplete bash
|
|
146
|
+
|
|
147
|
+
$ internxt autocomplete zsh
|
|
148
|
+
|
|
149
|
+
$ internxt autocomplete powershell
|
|
150
|
+
|
|
151
|
+
$ internxt autocomplete --refresh-cache
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.34/src/commands/autocomplete/index.ts)_
|
|
123
155
|
|
|
124
156
|
## `internxt config`
|
|
125
157
|
|
|
@@ -139,7 +171,7 @@ EXAMPLES
|
|
|
139
171
|
$ internxt config
|
|
140
172
|
```
|
|
141
173
|
|
|
142
|
-
_See code: [src/commands/config.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
174
|
+
_See code: [src/commands/config.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/config.ts)_
|
|
143
175
|
|
|
144
176
|
## `internxt create-folder`
|
|
145
177
|
|
|
@@ -168,7 +200,7 @@ EXAMPLES
|
|
|
168
200
|
$ internxt create-folder
|
|
169
201
|
```
|
|
170
202
|
|
|
171
|
-
_See code: [src/commands/create-folder.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
203
|
+
_See code: [src/commands/create-folder.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/create-folder.ts)_
|
|
172
204
|
|
|
173
205
|
## `internxt delete-permanently-file`
|
|
174
206
|
|
|
@@ -198,7 +230,7 @@ EXAMPLES
|
|
|
198
230
|
$ internxt delete-permanently-file
|
|
199
231
|
```
|
|
200
232
|
|
|
201
|
-
_See code: [src/commands/delete-permanently-file.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
233
|
+
_See code: [src/commands/delete-permanently-file.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/delete-permanently-file.ts)_
|
|
202
234
|
|
|
203
235
|
## `internxt delete-permanently-folder`
|
|
204
236
|
|
|
@@ -228,7 +260,7 @@ EXAMPLES
|
|
|
228
260
|
$ internxt delete-permanently-folder
|
|
229
261
|
```
|
|
230
262
|
|
|
231
|
-
_See code: [src/commands/delete-permanently-folder.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
263
|
+
_See code: [src/commands/delete-permanently-folder.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/delete-permanently-folder.ts)_
|
|
232
264
|
|
|
233
265
|
## `internxt delete permanently file`
|
|
234
266
|
|
|
@@ -317,7 +349,7 @@ EXAMPLES
|
|
|
317
349
|
$ internxt download-file
|
|
318
350
|
```
|
|
319
351
|
|
|
320
|
-
_See code: [src/commands/download-file.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
352
|
+
_See code: [src/commands/download-file.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/download-file.ts)_
|
|
321
353
|
|
|
322
354
|
## `internxt download file`
|
|
323
355
|
|
|
@@ -376,7 +408,7 @@ EXAMPLES
|
|
|
376
408
|
$ internxt list
|
|
377
409
|
```
|
|
378
410
|
|
|
379
|
-
_See code: [src/commands/list.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
411
|
+
_See code: [src/commands/list.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/list.ts)_
|
|
380
412
|
|
|
381
413
|
## `internxt login`
|
|
382
414
|
|
|
@@ -405,7 +437,7 @@ EXAMPLES
|
|
|
405
437
|
$ internxt login
|
|
406
438
|
```
|
|
407
439
|
|
|
408
|
-
_See code: [src/commands/login.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
440
|
+
_See code: [src/commands/login.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/login.ts)_
|
|
409
441
|
|
|
410
442
|
## `internxt logout`
|
|
411
443
|
|
|
@@ -425,7 +457,7 @@ EXAMPLES
|
|
|
425
457
|
$ internxt logout
|
|
426
458
|
```
|
|
427
459
|
|
|
428
|
-
_See code: [src/commands/logout.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
460
|
+
_See code: [src/commands/logout.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/logout.ts)_
|
|
429
461
|
|
|
430
462
|
## `internxt logs`
|
|
431
463
|
|
|
@@ -445,7 +477,7 @@ EXAMPLES
|
|
|
445
477
|
$ internxt logs
|
|
446
478
|
```
|
|
447
479
|
|
|
448
|
-
_See code: [src/commands/logs.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
480
|
+
_See code: [src/commands/logs.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/logs.ts)_
|
|
449
481
|
|
|
450
482
|
## `internxt move-file`
|
|
451
483
|
|
|
@@ -477,7 +509,7 @@ EXAMPLES
|
|
|
477
509
|
$ internxt move-file
|
|
478
510
|
```
|
|
479
511
|
|
|
480
|
-
_See code: [src/commands/move-file.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
512
|
+
_See code: [src/commands/move-file.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/move-file.ts)_
|
|
481
513
|
|
|
482
514
|
## `internxt move-folder`
|
|
483
515
|
|
|
@@ -509,7 +541,7 @@ EXAMPLES
|
|
|
509
541
|
$ internxt move-folder
|
|
510
542
|
```
|
|
511
543
|
|
|
512
|
-
_See code: [src/commands/move-folder.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
544
|
+
_See code: [src/commands/move-folder.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/move-folder.ts)_
|
|
513
545
|
|
|
514
546
|
## `internxt move file`
|
|
515
547
|
|
|
@@ -600,7 +632,7 @@ EXAMPLES
|
|
|
600
632
|
$ internxt rename-file
|
|
601
633
|
```
|
|
602
634
|
|
|
603
|
-
_See code: [src/commands/rename-file.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
635
|
+
_See code: [src/commands/rename-file.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/rename-file.ts)_
|
|
604
636
|
|
|
605
637
|
## `internxt rename-folder`
|
|
606
638
|
|
|
@@ -631,7 +663,7 @@ EXAMPLES
|
|
|
631
663
|
$ internxt rename-folder
|
|
632
664
|
```
|
|
633
665
|
|
|
634
|
-
_See code: [src/commands/rename-folder.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
666
|
+
_See code: [src/commands/rename-folder.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/rename-folder.ts)_
|
|
635
667
|
|
|
636
668
|
## `internxt rename file`
|
|
637
669
|
|
|
@@ -719,7 +751,7 @@ EXAMPLES
|
|
|
719
751
|
$ internxt trash-clear
|
|
720
752
|
```
|
|
721
753
|
|
|
722
|
-
_See code: [src/commands/trash-clear.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
754
|
+
_See code: [src/commands/trash-clear.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/trash-clear.ts)_
|
|
723
755
|
|
|
724
756
|
## `internxt trash-file`
|
|
725
757
|
|
|
@@ -749,7 +781,7 @@ EXAMPLES
|
|
|
749
781
|
$ internxt trash-file
|
|
750
782
|
```
|
|
751
783
|
|
|
752
|
-
_See code: [src/commands/trash-file.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
784
|
+
_See code: [src/commands/trash-file.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/trash-file.ts)_
|
|
753
785
|
|
|
754
786
|
## `internxt trash-folder`
|
|
755
787
|
|
|
@@ -779,7 +811,7 @@ EXAMPLES
|
|
|
779
811
|
$ internxt trash-folder
|
|
780
812
|
```
|
|
781
813
|
|
|
782
|
-
_See code: [src/commands/trash-folder.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
814
|
+
_See code: [src/commands/trash-folder.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/trash-folder.ts)_
|
|
783
815
|
|
|
784
816
|
## `internxt trash-list`
|
|
785
817
|
|
|
@@ -805,7 +837,7 @@ EXAMPLES
|
|
|
805
837
|
$ internxt trash-list
|
|
806
838
|
```
|
|
807
839
|
|
|
808
|
-
_See code: [src/commands/trash-list.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
840
|
+
_See code: [src/commands/trash-list.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/trash-list.ts)_
|
|
809
841
|
|
|
810
842
|
## `internxt trash-restore-file`
|
|
811
843
|
|
|
@@ -836,7 +868,7 @@ EXAMPLES
|
|
|
836
868
|
$ internxt trash-restore-file
|
|
837
869
|
```
|
|
838
870
|
|
|
839
|
-
_See code: [src/commands/trash-restore-file.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
871
|
+
_See code: [src/commands/trash-restore-file.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/trash-restore-file.ts)_
|
|
840
872
|
|
|
841
873
|
## `internxt trash-restore-folder`
|
|
842
874
|
|
|
@@ -867,7 +899,7 @@ EXAMPLES
|
|
|
867
899
|
$ internxt trash-restore-folder
|
|
868
900
|
```
|
|
869
901
|
|
|
870
|
-
_See code: [src/commands/trash-restore-folder.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
902
|
+
_See code: [src/commands/trash-restore-folder.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/trash-restore-folder.ts)_
|
|
871
903
|
|
|
872
904
|
## `internxt trash clear`
|
|
873
905
|
|
|
@@ -1064,7 +1096,7 @@ EXAMPLES
|
|
|
1064
1096
|
$ internxt upload-file
|
|
1065
1097
|
```
|
|
1066
1098
|
|
|
1067
|
-
_See code: [src/commands/upload-file.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
1099
|
+
_See code: [src/commands/upload-file.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/upload-file.ts)_
|
|
1068
1100
|
|
|
1069
1101
|
## `internxt upload file`
|
|
1070
1102
|
|
|
@@ -1119,7 +1151,7 @@ EXAMPLES
|
|
|
1119
1151
|
$ internxt webdav status
|
|
1120
1152
|
```
|
|
1121
1153
|
|
|
1122
|
-
_See code: [src/commands/webdav.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
1154
|
+
_See code: [src/commands/webdav.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/webdav.ts)_
|
|
1123
1155
|
|
|
1124
1156
|
## `internxt webdav-config`
|
|
1125
1157
|
|
|
@@ -1145,7 +1177,7 @@ EXAMPLES
|
|
|
1145
1177
|
$ internxt webdav-config
|
|
1146
1178
|
```
|
|
1147
1179
|
|
|
1148
|
-
_See code: [src/commands/webdav-config.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
1180
|
+
_See code: [src/commands/webdav-config.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/webdav-config.ts)_
|
|
1149
1181
|
|
|
1150
1182
|
## `internxt whoami`
|
|
1151
1183
|
|
|
@@ -1165,7 +1197,7 @@ EXAMPLES
|
|
|
1165
1197
|
$ internxt whoami
|
|
1166
1198
|
```
|
|
1167
1199
|
|
|
1168
|
-
_See code: [src/commands/whoami.ts](https://github.com/internxt/cli/blob/v1.5.
|
|
1200
|
+
_See code: [src/commands/whoami.ts](https://github.com/internxt/cli/blob/v1.5.5/src/commands/whoami.ts)_
|
|
1169
1201
|
<!-- commandsstop -->
|
|
1170
1202
|
|
|
1171
1203
|
# Current Limitations
|
|
@@ -63,7 +63,7 @@ class DownloadFile extends core_1.Command {
|
|
|
63
63
|
linewrap: true,
|
|
64
64
|
}, flags['json']);
|
|
65
65
|
progressBar?.start(100, 0);
|
|
66
|
-
const [executeDownload, abortable] = await networkFacade.downloadToStream(
|
|
66
|
+
const [executeDownload, abortable] = await networkFacade.downloadToStream(driveFile.bucket, user.mnemonic, driveFile.fileId, driveFile.size, stream_utils_1.StreamUtils.writeStreamToWritableStream(fileWriteStream), undefined, {
|
|
67
67
|
abortController: new AbortController(),
|
|
68
68
|
progressCallback: (progress) => {
|
|
69
69
|
progressBar?.update(progress * 0.99);
|
|
@@ -165,6 +165,7 @@ class DownloadFile extends core_1.Command {
|
|
|
165
165
|
bridgePass: user.userId,
|
|
166
166
|
bridgeUrl: config_service_1.ConfigService.instance.get('NETWORK_URL'),
|
|
167
167
|
encryptionKey: user.mnemonic,
|
|
168
|
+
appDetails: sdk_manager_service_1.SdkManager.getAppDetails(),
|
|
168
169
|
});
|
|
169
170
|
const networkFacade = new network_facade_service_1.NetworkFacade(networkModule, environment, download_service_1.DownloadService.instance, crypto_service_1.CryptoService.instance);
|
|
170
171
|
cli_utils_1.CLIUtils.done(jsonFlag);
|
|
@@ -71,6 +71,7 @@ class UploadFile extends core_1.Command {
|
|
|
71
71
|
bridgePass: user.userId,
|
|
72
72
|
bridgeUrl: config_service_1.ConfigService.instance.get('NETWORK_URL'),
|
|
73
73
|
encryptionKey: user.mnemonic,
|
|
74
|
+
appDetails: sdk_manager_service_1.SdkManager.getAppDetails(),
|
|
74
75
|
});
|
|
75
76
|
const networkFacade = new network_facade_service_1.NetworkFacade(networkModule, environment, download_service_1.DownloadService.instance, crypto_service_1.CryptoService.instance);
|
|
76
77
|
cli_utils_1.CLIUtils.done(flags['json']);
|
|
@@ -107,7 +107,7 @@ class KeysService {
|
|
|
107
107
|
generateNewKeysWithEncrypted = async (password) => {
|
|
108
108
|
const { privateKey, publicKey, revocationCertificate } = await openpgp.generateKey({
|
|
109
109
|
userIDs: [{ email: 'inxt@inxt.com' }],
|
|
110
|
-
curve: '
|
|
110
|
+
curve: 'ed25519Legacy',
|
|
111
111
|
});
|
|
112
112
|
return {
|
|
113
113
|
privateKeyArmored: privateKey,
|
|
@@ -52,10 +52,10 @@ class ValidationService {
|
|
|
52
52
|
return { isValid: false, expiration: { expired: true, refreshRequired: false } };
|
|
53
53
|
}
|
|
54
54
|
const currentTime = Math.floor(Date.now() / 1000);
|
|
55
|
-
const
|
|
55
|
+
const oneDayInSeconds = 1 * 24 * 60 * 60;
|
|
56
56
|
const remainingSeconds = payload.exp - currentTime;
|
|
57
57
|
const expired = remainingSeconds <= 0;
|
|
58
|
-
const refreshRequired = remainingSeconds > 0 && remainingSeconds <=
|
|
58
|
+
const refreshRequired = remainingSeconds > 0 && remainingSeconds <= oneDayInSeconds;
|
|
59
59
|
return { isValid: true, expiration: { expired, refreshRequired } };
|
|
60
60
|
}
|
|
61
61
|
catch {
|
|
@@ -63,6 +63,7 @@ class WebDavServer {
|
|
|
63
63
|
bridgePass: credentials.user.userId,
|
|
64
64
|
bridgeUrl: config_service_1.ConfigService.instance.get('NETWORK_URL'),
|
|
65
65
|
encryptionKey: credentials.user.mnemonic,
|
|
66
|
+
appDetails: sdk_manager_service_1.SdkManager.getAppDetails(),
|
|
66
67
|
});
|
|
67
68
|
const networkFacade = new network_facade_service_1.NetworkFacade(networkModule, environment, download_service_1.DownloadService.instance, crypto_service_1.CryptoService.instance);
|
|
68
69
|
return networkFacade;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "Internxt <hello@internxt.com>",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.5",
|
|
4
4
|
"description": "Internxt CLI to manage your encrypted storage",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn clean && tsc",
|
|
@@ -36,39 +36,34 @@
|
|
|
36
36
|
"/oclif.manifest.json"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@inquirer/prompts": "7.
|
|
40
|
-
"@internxt/inxt-js": "2.2.
|
|
39
|
+
"@inquirer/prompts": "7.8.4",
|
|
40
|
+
"@internxt/inxt-js": "2.2.7",
|
|
41
41
|
"@internxt/lib": "1.3.1",
|
|
42
|
-
"@internxt/sdk": "1.
|
|
43
|
-
"@oclif/core": "4.
|
|
44
|
-
"@
|
|
45
|
-
"
|
|
46
|
-
"axios": "1.10.0",
|
|
42
|
+
"@internxt/sdk": "1.11.1",
|
|
43
|
+
"@oclif/core": "4.5.2",
|
|
44
|
+
"@oclif/plugin-autocomplete": "3.2.34",
|
|
45
|
+
"axios": "1.11.0",
|
|
47
46
|
"bip39": "3.1.0",
|
|
48
47
|
"body-parser": "2.2.0",
|
|
49
48
|
"cli-progress": "3.12.0",
|
|
50
|
-
"dayjs": "1.11.
|
|
51
|
-
"dotenv": "17.
|
|
49
|
+
"dayjs": "1.11.18",
|
|
50
|
+
"dotenv": "17.2.2",
|
|
52
51
|
"express": "5.1.0",
|
|
53
52
|
"express-async-handler": "1.2.0",
|
|
54
|
-
"express-basic-auth": "1.2.1",
|
|
55
53
|
"fast-xml-parser": "5.2.5",
|
|
56
54
|
"mime-types": "3.0.1",
|
|
57
|
-
"openpgp": "
|
|
58
|
-
"pm2": "6.0.
|
|
55
|
+
"openpgp": "6.2.2",
|
|
56
|
+
"pm2": "6.0.10",
|
|
59
57
|
"range-parser": "1.2.1",
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"sharp": "0.34.2",
|
|
58
|
+
"selfsigned": "3.0.1",
|
|
59
|
+
"sharp": "0.34.3",
|
|
63
60
|
"tty-table": "4.2.3",
|
|
64
61
|
"winston": "3.17.0"
|
|
65
62
|
},
|
|
66
63
|
"devDependencies": {
|
|
67
|
-
"@internxt/eslint-config-internxt": "2.0.
|
|
64
|
+
"@internxt/eslint-config-internxt": "2.0.1",
|
|
68
65
|
"@internxt/prettier-config": "internxt/prettier-config#v1.0.2",
|
|
69
|
-
"@
|
|
70
|
-
"@openpgp/web-stream-tools": "0.0.11-patch-1",
|
|
71
|
-
"@types/async": "3.2.24",
|
|
66
|
+
"@openpgp/web-stream-tools": "0.1.3",
|
|
72
67
|
"@types/cli-progress": "3.11.6",
|
|
73
68
|
"@types/express": "5.0.3",
|
|
74
69
|
"@types/mime-types": "3.0.1",
|
|
@@ -76,16 +71,15 @@
|
|
|
76
71
|
"@types/range-parser": "1.2.7",
|
|
77
72
|
"@vitest/coverage-istanbul": "3.2.4",
|
|
78
73
|
"@vitest/spy": "3.2.4",
|
|
79
|
-
"eslint": "9.
|
|
74
|
+
"eslint": "9.34.0",
|
|
80
75
|
"husky": "9.1.7",
|
|
81
|
-
"lint-staged": "16.1.
|
|
82
|
-
"nock": "14.0.5",
|
|
76
|
+
"lint-staged": "16.1.6",
|
|
83
77
|
"nodemon": "3.1.10",
|
|
84
|
-
"oclif": "4.
|
|
78
|
+
"oclif": "4.22.16",
|
|
85
79
|
"prettier": "3.6.2",
|
|
86
80
|
"rimraf": "6.0.1",
|
|
87
81
|
"ts-node": "10.9.2",
|
|
88
|
-
"typescript": "5.
|
|
82
|
+
"typescript": "5.9.2",
|
|
89
83
|
"vitest": "3.2.4",
|
|
90
84
|
"vitest-mock-express": "2.2.0"
|
|
91
85
|
},
|
|
@@ -99,7 +93,9 @@
|
|
|
99
93
|
"bin": "internxt",
|
|
100
94
|
"dirname": "internxt-cli",
|
|
101
95
|
"commands": "./dist/commands",
|
|
102
|
-
"plugins": [
|
|
96
|
+
"plugins": [
|
|
97
|
+
"@oclif/plugin-autocomplete"
|
|
98
|
+
],
|
|
103
99
|
"topicSeparator": " ",
|
|
104
100
|
"topics": {},
|
|
105
101
|
"hooks": {
|