@oussema_mili/test-pkg-123 1.1.22

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.

Potentially problematic release.


This version of @oussema_mili/test-pkg-123 might be problematic. Click here for more details.

Files changed (49) hide show
  1. package/LICENSE +29 -0
  2. package/README.md +220 -0
  3. package/auth-callback.html +97 -0
  4. package/auth.js +276 -0
  5. package/cli-commands.js +1923 -0
  6. package/containerManager.js +304 -0
  7. package/daemon/agentRunner.js +429 -0
  8. package/daemon/daemonEntry.js +64 -0
  9. package/daemon/daemonManager.js +271 -0
  10. package/daemon/logManager.js +227 -0
  11. package/dist/styles.css +504 -0
  12. package/docker-actions/apps.js +3938 -0
  13. package/docker-actions/config-transformer.js +380 -0
  14. package/docker-actions/containers.js +355 -0
  15. package/docker-actions/general.js +171 -0
  16. package/docker-actions/images.js +1128 -0
  17. package/docker-actions/logs.js +224 -0
  18. package/docker-actions/metrics.js +270 -0
  19. package/docker-actions/registry.js +1100 -0
  20. package/docker-actions/setup-tasks.js +859 -0
  21. package/docker-actions/terminal.js +247 -0
  22. package/docker-actions/volumes.js +696 -0
  23. package/helper-functions.js +193 -0
  24. package/index.html +83 -0
  25. package/index.js +341 -0
  26. package/package.json +82 -0
  27. package/postcss.config.mjs +5 -0
  28. package/scripts/release.sh +212 -0
  29. package/setup/setupWizard.js +403 -0
  30. package/store/agentSessionStore.js +51 -0
  31. package/store/agentStore.js +113 -0
  32. package/store/configStore.js +171 -0
  33. package/store/daemonStore.js +217 -0
  34. package/store/deviceCredentialStore.js +107 -0
  35. package/store/npmTokenStore.js +65 -0
  36. package/store/registryStore.js +329 -0
  37. package/store/setupState.js +147 -0
  38. package/styles.css +1 -0
  39. package/utils/appLogger.js +223 -0
  40. package/utils/deviceInfo.js +98 -0
  41. package/utils/ecrAuth.js +225 -0
  42. package/utils/encryption.js +112 -0
  43. package/utils/envSetup.js +44 -0
  44. package/utils/errorHandler.js +327 -0
  45. package/utils/portUtils.js +59 -0
  46. package/utils/prerequisites.js +323 -0
  47. package/utils/prompts.js +318 -0
  48. package/utils/ssl-certificates.js +256 -0
  49. package/websocket-server.js +415 -0
@@ -0,0 +1,504 @@
1
+ /*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root, :host {
6
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
7
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
+ "Courier New", monospace;
10
+ --color-green-500: oklch(72.3% 0.219 149.579);
11
+ --color-gray-50: oklch(98.5% 0.002 247.839);
12
+ --color-gray-500: oklch(55.1% 0.027 264.364);
13
+ --color-gray-600: oklch(44.6% 0.03 256.802);
14
+ --color-gray-900: oklch(21% 0.034 264.665);
15
+ --color-white: #fff;
16
+ --spacing: 0.25rem;
17
+ --container-sm: 24rem;
18
+ --text-sm: 0.875rem;
19
+ --text-sm--line-height: calc(1.25 / 0.875);
20
+ --text-base: 1rem;
21
+ --text-base--line-height: calc(1.5 / 1);
22
+ --text-2xl: 1.5rem;
23
+ --text-2xl--line-height: calc(2 / 1.5);
24
+ --font-weight-medium: 500;
25
+ --radius-lg: 0.5rem;
26
+ --default-font-family: var(--font-sans);
27
+ --default-mono-font-family: var(--font-mono);
28
+ }
29
+ }
30
+ @layer base {
31
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
32
+ box-sizing: border-box;
33
+ margin: 0;
34
+ padding: 0;
35
+ border: 0 solid;
36
+ }
37
+ html, :host {
38
+ line-height: 1.5;
39
+ -webkit-text-size-adjust: 100%;
40
+ tab-size: 4;
41
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
42
+ font-feature-settings: var(--default-font-feature-settings, normal);
43
+ font-variation-settings: var(--default-font-variation-settings, normal);
44
+ -webkit-tap-highlight-color: transparent;
45
+ }
46
+ hr {
47
+ height: 0;
48
+ color: inherit;
49
+ border-top-width: 1px;
50
+ }
51
+ abbr:where([title]) {
52
+ -webkit-text-decoration: underline dotted;
53
+ text-decoration: underline dotted;
54
+ }
55
+ h1, h2, h3, h4, h5, h6 {
56
+ font-size: inherit;
57
+ font-weight: inherit;
58
+ }
59
+ a {
60
+ color: inherit;
61
+ -webkit-text-decoration: inherit;
62
+ text-decoration: inherit;
63
+ }
64
+ b, strong {
65
+ font-weight: bolder;
66
+ }
67
+ code, kbd, samp, pre {
68
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
69
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
70
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
71
+ font-size: 1em;
72
+ }
73
+ small {
74
+ font-size: 80%;
75
+ }
76
+ sub, sup {
77
+ font-size: 75%;
78
+ line-height: 0;
79
+ position: relative;
80
+ vertical-align: baseline;
81
+ }
82
+ sub {
83
+ bottom: -0.25em;
84
+ }
85
+ sup {
86
+ top: -0.5em;
87
+ }
88
+ table {
89
+ text-indent: 0;
90
+ border-color: inherit;
91
+ border-collapse: collapse;
92
+ }
93
+ :-moz-focusring {
94
+ outline: auto;
95
+ }
96
+ progress {
97
+ vertical-align: baseline;
98
+ }
99
+ summary {
100
+ display: list-item;
101
+ }
102
+ ol, ul, menu {
103
+ list-style: none;
104
+ }
105
+ img, svg, video, canvas, audio, iframe, embed, object {
106
+ display: block;
107
+ vertical-align: middle;
108
+ }
109
+ img, video {
110
+ max-width: 100%;
111
+ height: auto;
112
+ }
113
+ button, input, select, optgroup, textarea, ::file-selector-button {
114
+ font: inherit;
115
+ font-feature-settings: inherit;
116
+ font-variation-settings: inherit;
117
+ letter-spacing: inherit;
118
+ color: inherit;
119
+ border-radius: 0;
120
+ background-color: transparent;
121
+ opacity: 1;
122
+ }
123
+ :where(select:is([multiple], [size])) optgroup {
124
+ font-weight: bolder;
125
+ }
126
+ :where(select:is([multiple], [size])) optgroup option {
127
+ padding-inline-start: 20px;
128
+ }
129
+ ::file-selector-button {
130
+ margin-inline-end: 4px;
131
+ }
132
+ ::placeholder {
133
+ opacity: 1;
134
+ }
135
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
136
+ ::placeholder {
137
+ color: currentcolor;
138
+ @supports (color: color-mix(in lab, red, red)) {
139
+ color: color-mix(in oklab, currentcolor 50%, transparent);
140
+ }
141
+ }
142
+ }
143
+ textarea {
144
+ resize: vertical;
145
+ }
146
+ ::-webkit-search-decoration {
147
+ -webkit-appearance: none;
148
+ }
149
+ ::-webkit-date-and-time-value {
150
+ min-height: 1lh;
151
+ text-align: inherit;
152
+ }
153
+ ::-webkit-datetime-edit {
154
+ display: inline-flex;
155
+ }
156
+ ::-webkit-datetime-edit-fields-wrapper {
157
+ padding: 0;
158
+ }
159
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
160
+ padding-block: 0;
161
+ }
162
+ ::-webkit-calendar-picker-indicator {
163
+ line-height: 1;
164
+ }
165
+ :-moz-ui-invalid {
166
+ box-shadow: none;
167
+ }
168
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
169
+ appearance: button;
170
+ }
171
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
172
+ height: auto;
173
+ }
174
+ [hidden]:where(:not([hidden="until-found"])) {
175
+ display: none !important;
176
+ }
177
+ }
178
+ @layer utilities {
179
+ .relative {
180
+ position: relative;
181
+ }
182
+ .container {
183
+ width: 100%;
184
+ @media (width >= 40rem) {
185
+ max-width: 40rem;
186
+ }
187
+ @media (width >= 48rem) {
188
+ max-width: 48rem;
189
+ }
190
+ @media (width >= 64rem) {
191
+ max-width: 64rem;
192
+ }
193
+ @media (width >= 80rem) {
194
+ max-width: 80rem;
195
+ }
196
+ @media (width >= 96rem) {
197
+ max-width: 96rem;
198
+ }
199
+ }
200
+ .mx-auto {
201
+ margin-inline: auto;
202
+ }
203
+ .mt-8 {
204
+ margin-top: calc(var(--spacing) * 8);
205
+ }
206
+ .mb-4 {
207
+ margin-bottom: calc(var(--spacing) * 4);
208
+ }
209
+ .mb-6 {
210
+ margin-bottom: calc(var(--spacing) * 6);
211
+ }
212
+ .mb-8 {
213
+ margin-bottom: calc(var(--spacing) * 8);
214
+ }
215
+ .contents {
216
+ display: contents;
217
+ }
218
+ .flex {
219
+ display: flex;
220
+ }
221
+ .table {
222
+ display: table;
223
+ }
224
+ .h-8 {
225
+ height: calc(var(--spacing) * 8);
226
+ }
227
+ .h-16 {
228
+ height: calc(var(--spacing) * 16);
229
+ }
230
+ .min-h-\[80vh\] {
231
+ min-height: 80vh;
232
+ }
233
+ .min-h-screen {
234
+ min-height: 100vh;
235
+ }
236
+ .w-8 {
237
+ width: calc(var(--spacing) * 8);
238
+ }
239
+ .w-16 {
240
+ width: calc(var(--spacing) * 16);
241
+ }
242
+ .max-w-sm {
243
+ max-width: var(--container-sm);
244
+ }
245
+ .transform {
246
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
247
+ }
248
+ .resize {
249
+ resize: both;
250
+ }
251
+ .items-center {
252
+ align-items: center;
253
+ }
254
+ .justify-center {
255
+ justify-content: center;
256
+ }
257
+ .rounded-full {
258
+ border-radius: calc(infinity * 1px);
259
+ }
260
+ .rounded-lg {
261
+ border-radius: var(--radius-lg);
262
+ }
263
+ .border {
264
+ border-style: var(--tw-border-style);
265
+ border-width: 1px;
266
+ }
267
+ .bg-gray-50 {
268
+ background-color: var(--color-gray-50);
269
+ }
270
+ .bg-green-500 {
271
+ background-color: var(--color-green-500);
272
+ }
273
+ .bg-white {
274
+ background-color: var(--color-white);
275
+ }
276
+ .p-8 {
277
+ padding: calc(var(--spacing) * 8);
278
+ }
279
+ .text-center {
280
+ text-align: center;
281
+ }
282
+ .text-2xl {
283
+ font-size: var(--text-2xl);
284
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
285
+ }
286
+ .text-base {
287
+ font-size: var(--text-base);
288
+ line-height: var(--tw-leading, var(--text-base--line-height));
289
+ }
290
+ .text-sm {
291
+ font-size: var(--text-sm);
292
+ line-height: var(--tw-leading, var(--text-sm--line-height));
293
+ }
294
+ .font-medium {
295
+ --tw-font-weight: var(--font-weight-medium);
296
+ font-weight: var(--font-weight-medium);
297
+ }
298
+ .text-gray-500 {
299
+ color: var(--color-gray-500);
300
+ }
301
+ .text-gray-600 {
302
+ color: var(--color-gray-600);
303
+ }
304
+ .text-gray-900 {
305
+ color: var(--color-gray-900);
306
+ }
307
+ .text-white {
308
+ color: var(--color-white);
309
+ }
310
+ .shadow-lg {
311
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
312
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
313
+ }
314
+ .filter {
315
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
316
+ }
317
+ }
318
+ @property --tw-rotate-x {
319
+ syntax: "*";
320
+ inherits: false;
321
+ }
322
+ @property --tw-rotate-y {
323
+ syntax: "*";
324
+ inherits: false;
325
+ }
326
+ @property --tw-rotate-z {
327
+ syntax: "*";
328
+ inherits: false;
329
+ }
330
+ @property --tw-skew-x {
331
+ syntax: "*";
332
+ inherits: false;
333
+ }
334
+ @property --tw-skew-y {
335
+ syntax: "*";
336
+ inherits: false;
337
+ }
338
+ @property --tw-border-style {
339
+ syntax: "*";
340
+ inherits: false;
341
+ initial-value: solid;
342
+ }
343
+ @property --tw-font-weight {
344
+ syntax: "*";
345
+ inherits: false;
346
+ }
347
+ @property --tw-shadow {
348
+ syntax: "*";
349
+ inherits: false;
350
+ initial-value: 0 0 #0000;
351
+ }
352
+ @property --tw-shadow-color {
353
+ syntax: "*";
354
+ inherits: false;
355
+ }
356
+ @property --tw-shadow-alpha {
357
+ syntax: "<percentage>";
358
+ inherits: false;
359
+ initial-value: 100%;
360
+ }
361
+ @property --tw-inset-shadow {
362
+ syntax: "*";
363
+ inherits: false;
364
+ initial-value: 0 0 #0000;
365
+ }
366
+ @property --tw-inset-shadow-color {
367
+ syntax: "*";
368
+ inherits: false;
369
+ }
370
+ @property --tw-inset-shadow-alpha {
371
+ syntax: "<percentage>";
372
+ inherits: false;
373
+ initial-value: 100%;
374
+ }
375
+ @property --tw-ring-color {
376
+ syntax: "*";
377
+ inherits: false;
378
+ }
379
+ @property --tw-ring-shadow {
380
+ syntax: "*";
381
+ inherits: false;
382
+ initial-value: 0 0 #0000;
383
+ }
384
+ @property --tw-inset-ring-color {
385
+ syntax: "*";
386
+ inherits: false;
387
+ }
388
+ @property --tw-inset-ring-shadow {
389
+ syntax: "*";
390
+ inherits: false;
391
+ initial-value: 0 0 #0000;
392
+ }
393
+ @property --tw-ring-inset {
394
+ syntax: "*";
395
+ inherits: false;
396
+ }
397
+ @property --tw-ring-offset-width {
398
+ syntax: "<length>";
399
+ inherits: false;
400
+ initial-value: 0px;
401
+ }
402
+ @property --tw-ring-offset-color {
403
+ syntax: "*";
404
+ inherits: false;
405
+ initial-value: #fff;
406
+ }
407
+ @property --tw-ring-offset-shadow {
408
+ syntax: "*";
409
+ inherits: false;
410
+ initial-value: 0 0 #0000;
411
+ }
412
+ @property --tw-blur {
413
+ syntax: "*";
414
+ inherits: false;
415
+ }
416
+ @property --tw-brightness {
417
+ syntax: "*";
418
+ inherits: false;
419
+ }
420
+ @property --tw-contrast {
421
+ syntax: "*";
422
+ inherits: false;
423
+ }
424
+ @property --tw-grayscale {
425
+ syntax: "*";
426
+ inherits: false;
427
+ }
428
+ @property --tw-hue-rotate {
429
+ syntax: "*";
430
+ inherits: false;
431
+ }
432
+ @property --tw-invert {
433
+ syntax: "*";
434
+ inherits: false;
435
+ }
436
+ @property --tw-opacity {
437
+ syntax: "*";
438
+ inherits: false;
439
+ }
440
+ @property --tw-saturate {
441
+ syntax: "*";
442
+ inherits: false;
443
+ }
444
+ @property --tw-sepia {
445
+ syntax: "*";
446
+ inherits: false;
447
+ }
448
+ @property --tw-drop-shadow {
449
+ syntax: "*";
450
+ inherits: false;
451
+ }
452
+ @property --tw-drop-shadow-color {
453
+ syntax: "*";
454
+ inherits: false;
455
+ }
456
+ @property --tw-drop-shadow-alpha {
457
+ syntax: "<percentage>";
458
+ inherits: false;
459
+ initial-value: 100%;
460
+ }
461
+ @property --tw-drop-shadow-size {
462
+ syntax: "*";
463
+ inherits: false;
464
+ }
465
+ @layer properties {
466
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
467
+ *, ::before, ::after, ::backdrop {
468
+ --tw-rotate-x: initial;
469
+ --tw-rotate-y: initial;
470
+ --tw-rotate-z: initial;
471
+ --tw-skew-x: initial;
472
+ --tw-skew-y: initial;
473
+ --tw-border-style: solid;
474
+ --tw-font-weight: initial;
475
+ --tw-shadow: 0 0 #0000;
476
+ --tw-shadow-color: initial;
477
+ --tw-shadow-alpha: 100%;
478
+ --tw-inset-shadow: 0 0 #0000;
479
+ --tw-inset-shadow-color: initial;
480
+ --tw-inset-shadow-alpha: 100%;
481
+ --tw-ring-color: initial;
482
+ --tw-ring-shadow: 0 0 #0000;
483
+ --tw-inset-ring-color: initial;
484
+ --tw-inset-ring-shadow: 0 0 #0000;
485
+ --tw-ring-inset: initial;
486
+ --tw-ring-offset-width: 0px;
487
+ --tw-ring-offset-color: #fff;
488
+ --tw-ring-offset-shadow: 0 0 #0000;
489
+ --tw-blur: initial;
490
+ --tw-brightness: initial;
491
+ --tw-contrast: initial;
492
+ --tw-grayscale: initial;
493
+ --tw-hue-rotate: initial;
494
+ --tw-invert: initial;
495
+ --tw-opacity: initial;
496
+ --tw-saturate: initial;
497
+ --tw-sepia: initial;
498
+ --tw-drop-shadow: initial;
499
+ --tw-drop-shadow-color: initial;
500
+ --tw-drop-shadow-alpha: 100%;
501
+ --tw-drop-shadow-size: initial;
502
+ }
503
+ }
504
+ }