@socketsecurity/cli-with-sentry 0.14.137 → 0.14.138

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.
Files changed (109) hide show
  1. package/dist/blessed/LICENSE +20 -0
  2. package/dist/blessed/lib/alias.js +519 -0
  3. package/dist/blessed/lib/blessed.js +32 -0
  4. package/dist/blessed/lib/colors.js +490 -0
  5. package/dist/blessed/lib/events.js +195 -0
  6. package/dist/blessed/lib/gpmclient.js +245 -0
  7. package/dist/blessed/lib/helpers.js +170 -0
  8. package/dist/blessed/lib/keys.js +512 -0
  9. package/dist/blessed/lib/program.js +4530 -0
  10. package/dist/blessed/lib/tput.js +3111 -0
  11. package/dist/blessed/lib/unicode.js +912 -0
  12. package/dist/blessed/lib/widget.js +60 -0
  13. package/dist/blessed/lib/widgets/ansiimage.js +173 -0
  14. package/dist/blessed/lib/widgets/bigtext.js +170 -0
  15. package/dist/blessed/lib/widgets/box.js +34 -0
  16. package/dist/blessed/lib/widgets/button.js +62 -0
  17. package/dist/blessed/lib/widgets/checkbox.js +95 -0
  18. package/dist/blessed/lib/widgets/element.js +2871 -0
  19. package/dist/blessed/lib/widgets/filemanager.js +223 -0
  20. package/dist/blessed/lib/widgets/form.js +301 -0
  21. package/dist/blessed/lib/widgets/image.js +71 -0
  22. package/dist/blessed/lib/widgets/input.js +34 -0
  23. package/dist/blessed/lib/widgets/layout.js +249 -0
  24. package/dist/blessed/lib/widgets/line.js +59 -0
  25. package/dist/blessed/lib/widgets/list.js +652 -0
  26. package/dist/blessed/lib/widgets/listbar.js +452 -0
  27. package/dist/blessed/lib/widgets/listtable.js +265 -0
  28. package/dist/blessed/lib/widgets/loading.js +88 -0
  29. package/dist/blessed/lib/widgets/log.js +82 -0
  30. package/dist/blessed/lib/widgets/message.js +145 -0
  31. package/dist/blessed/lib/widgets/node.js +314 -0
  32. package/dist/blessed/lib/widgets/overlayimage.js +794 -0
  33. package/dist/blessed/lib/widgets/progressbar.js +166 -0
  34. package/dist/blessed/lib/widgets/prompt.js +127 -0
  35. package/dist/blessed/lib/widgets/question.js +129 -0
  36. package/dist/blessed/lib/widgets/radiobutton.js +62 -0
  37. package/dist/blessed/lib/widgets/radioset.js +36 -0
  38. package/dist/blessed/lib/widgets/screen.js +2485 -0
  39. package/dist/blessed/lib/widgets/scrollablebox.js +415 -0
  40. package/dist/blessed/lib/widgets/scrollabletext.js +35 -0
  41. package/dist/blessed/lib/widgets/table.js +383 -0
  42. package/dist/blessed/lib/widgets/terminal.js +452 -0
  43. package/dist/blessed/lib/widgets/text.js +35 -0
  44. package/dist/blessed/lib/widgets/textarea.js +376 -0
  45. package/dist/blessed/lib/widgets/textbox.js +79 -0
  46. package/dist/blessed/lib/widgets/video.js +130 -0
  47. package/dist/blessed/usr/fonts/AUTHORS +1 -0
  48. package/dist/blessed/usr/fonts/LICENSE +94 -0
  49. package/dist/blessed/usr/fonts/README +340 -0
  50. package/dist/blessed/usr/fonts/ter-u14b.json +17826 -0
  51. package/dist/blessed/usr/fonts/ter-u14n.json +17826 -0
  52. package/dist/blessed/usr/linux +0 -0
  53. package/dist/blessed/usr/windows-ansi +0 -0
  54. package/dist/blessed/usr/xterm +0 -0
  55. package/dist/blessed/usr/xterm-256color +0 -0
  56. package/dist/blessed/usr/xterm.termcap +243 -0
  57. package/dist/blessed/usr/xterm.terminfo +1977 -0
  58. package/dist/blessed/vendor/tng.js +1876 -0
  59. package/dist/blessed-contrib/LICENSE.md +21 -0
  60. package/dist/blessed-contrib/lib/layout/carousel.js +82 -0
  61. package/dist/blessed-contrib/lib/layout/grid.js +46 -0
  62. package/dist/blessed-contrib/lib/server-utils.js +83 -0
  63. package/dist/blessed-contrib/lib/utils.js +73 -0
  64. package/dist/blessed-contrib/lib/widget/canvas.js +52 -0
  65. package/dist/blessed-contrib/lib/widget/charts/bar.js +99 -0
  66. package/dist/blessed-contrib/lib/widget/charts/line.js +311 -0
  67. package/dist/blessed-contrib/lib/widget/charts/stacked-bar.js +245 -0
  68. package/dist/blessed-contrib/lib/widget/donut.js +183 -0
  69. package/dist/blessed-contrib/lib/widget/gauge-list.js +111 -0
  70. package/dist/blessed-contrib/lib/widget/gauge.js +127 -0
  71. package/dist/blessed-contrib/lib/widget/lcd.js +497 -0
  72. package/dist/blessed-contrib/lib/widget/log.js +32 -0
  73. package/dist/blessed-contrib/lib/widget/map.js +97 -0
  74. package/dist/blessed-contrib/lib/widget/markdown.js +68 -0
  75. package/dist/blessed-contrib/lib/widget/picture.js +61 -0
  76. package/dist/blessed-contrib/lib/widget/sparkline.js +66 -0
  77. package/dist/blessed-contrib/lib/widget/table.js +141 -0
  78. package/dist/blessed-contrib/lib/widget/tree.js +179 -0
  79. package/dist/blessed-contrib/node_modules/ansi-regex/index.js +6 -0
  80. package/dist/blessed-contrib/node_modules/ansi-regex/license +21 -0
  81. package/dist/blessed-contrib/node_modules/ansi-regex/package.json +64 -0
  82. package/dist/blessed-contrib/node_modules/ansi-regex/readme.md +39 -0
  83. package/dist/blessed-contrib/node_modules/ansi-styles/index.js +67 -0
  84. package/dist/blessed-contrib/node_modules/ansi-styles/license +21 -0
  85. package/dist/blessed-contrib/node_modules/ansi-styles/package.json +50 -0
  86. package/dist/blessed-contrib/node_modules/ansi-styles/readme.md +86 -0
  87. package/dist/blessed-contrib/node_modules/chalk/index.js +118 -0
  88. package/dist/blessed-contrib/node_modules/chalk/license +21 -0
  89. package/dist/blessed-contrib/node_modules/chalk/package.json +70 -0
  90. package/dist/blessed-contrib/node_modules/chalk/readme.md +213 -0
  91. package/dist/blessed-contrib/node_modules/escape-string-regexp/index.js +13 -0
  92. package/dist/blessed-contrib/node_modules/escape-string-regexp/license +21 -0
  93. package/dist/blessed-contrib/node_modules/escape-string-regexp/package.json +41 -0
  94. package/dist/blessed-contrib/node_modules/escape-string-regexp/readme.md +27 -0
  95. package/dist/blessed-contrib/node_modules/strip-ansi/index.js +8 -0
  96. package/dist/blessed-contrib/node_modules/strip-ansi/license +21 -0
  97. package/dist/blessed-contrib/node_modules/strip-ansi/package.json +57 -0
  98. package/dist/blessed-contrib/node_modules/strip-ansi/readme.md +33 -0
  99. package/dist/blessed-contrib/node_modules/supports-color/index.js +52 -0
  100. package/dist/blessed-contrib/node_modules/supports-color/license +21 -0
  101. package/dist/blessed-contrib/node_modules/supports-color/package.json +49 -0
  102. package/dist/blessed-contrib/node_modules/supports-color/readme.md +36 -0
  103. package/dist/cli.js +9 -8
  104. package/dist/cli.js.map +1 -1
  105. package/dist/instrument-with-sentry.js +2 -2
  106. package/dist/instrument-with-sentry.js.map +1 -1
  107. package/dist/shadow-npm-inject.js +2 -2
  108. package/dist/shadow-npm-inject.js.map +1 -1
  109. package/package.json +4 -4
@@ -0,0 +1,340 @@
1
+ NOTE: This directory contains the terminus font compiled to a JSON format.
2
+
3
+ Contents:
4
+
5
+ 1. About.
6
+ 1.1. Quick installation.
7
+ 1.2. Legend.
8
+ 1.3. Variants.
9
+ 1.4. Notes.
10
+
11
+ 2. Linux console.
12
+ 2.1. consoletools.
13
+ 2.2. kbd.
14
+ 2.3. Quick reference.
15
+ 2.4. Legend.
16
+ 2.5. Notes.
17
+
18
+ 3. UNIX console.
19
+ 3.1. bsd-pcvt.
20
+ 3.2. Legend.
21
+ 3.3. Notes.
22
+
23
+ 4. X11 Window System.
24
+ 4.1. Installation.
25
+ 4.2. Notes.
26
+
27
+ 5. Frequently Asked Questions.
28
+
29
+ 6. Legal information.
30
+ 6.1. Licenses.
31
+ 6.2. Copyright.
32
+
33
+
34
+ 1. About.
35
+
36
+ This archive contains source code for generating and installing Terminus
37
+ Font for Linux console, BSD console and X11 Window System.
38
+
39
+ - version 4.39
40
+ - sizes 6x12, 8x14, 8x16, 10x18, 10x20, 11x22, 12x24, 14x28, 16x32
41
+ - styles normal, bold, EGA/VGA bold
42
+ - characters 891
43
+ - format Bitmap Distribution Format (BDF) version 2.1
44
+
45
+ The character set covers about 120 language sets and supports ISO8859-1/2/5/
46
+ 7/9/13/15/16, Paratype-PT154/PT254, KOI8-R/U/E/F, Esperanto and many IBM,
47
+ Windows and Macintosh code pages, as well as the IBM VGA, vt100 and xterm
48
+ pseudographic characters.
49
+
50
+ 1.1. Quick installation.
51
+
52
+ The commands:
53
+
54
+ $ ./configure [--prefix=PREFIX]
55
+ $ make
56
+ # make install fontdir
57
+
58
+ compile and install the Linux console and X11 Window System fonts.
59
+ The default PREFIX is /usr/local.
60
+
61
+ 1.2. Legend.
62
+
63
+ The file names are structured as follows:
64
+
65
+ ter-u<SIZE><STYLE>.bdf
66
+
67
+ where <SIZE> is the font height, and <STYLE> is n for normal (all sizes), b
68
+ for bold (all sizes except 6x12) and v for EGA/VGA bold (8x14 and 8x16 only,
69
+ makes use of the eight character matrix column).
70
+
71
+ 1.3. Variants.
72
+
73
+ Some characters are implemented in two variants. To use the alternate
74
+ variant, execute:
75
+
76
+ $ patch -p1 -i alt/<NAME>.diff
77
+
78
+ before installation. See the font page for examples about the differences.
79
+ If you want to combine hi2 with dv1 and/or ka2, apply hi2 and then hi2-dv1
80
+ and/or hi2-ka2.
81
+
82
+ 1.4. Notes.
83
+
84
+ The commands marked with $ can be executed by a regular user.
85
+ The configure commands are optional.
86
+ The make commands require GNU make.
87
+
88
+ A lot of characters are available only under X11/ISO10646-1 (UTF+8/Unicode).
89
+
90
+ Sizes 6x12, 11x22, 14x28-bold and 16x32-normal are worse than the others.
91
+ Avoid them.
92
+
93
+ 210E and 210F are not italic.
94
+
95
+
96
+ 2. Linux console.
97
+
98
+ - sizes all available, see "About"
99
+ - styles normal, bold, framebuffer-bold
100
+ - code pages ISO8859-1/ISO8859-15/Windows-1252, ISO8859-2/Windows-1250,
101
+ Windows-1251/ISO8859-5, ISO8859-9/Windows-1254, ISO8859-16,
102
+ ISO8859-7/Windows-1253, ISO8859-13/Windows-1257, IBM-437,
103
+ Bulgarian-MIK, KOI8-R, KOI8-U, Paratype-PT154, combined
104
+ - format PC Screen Font (PSF) with unicode data
105
+
106
+ 2.1. consoletools.
107
+
108
+ $ ./configure [--prefix=PREFIX | --psfdir=DIRECTORY]
109
+ $ make psf
110
+ # make install-psf
111
+
112
+ The files are compressed with gzip and installed in DIRECTORY. The default
113
+ DIRECTORY is PREFIX/share/consolefonts. Requires Perl.
114
+
115
+ If you lack mappings for Windows-1252/1250/1251/1254/1253/1257, ISO8859-16,
116
+ IBM-437, KOI8-R, Bulgarian-MIK or Paratype-PT154/PT254, also run:
117
+
118
+ $ ./configure [--prefix=PREFIX | --acmdir=DIRECTORY]
119
+ $ make txt
120
+ # make install-acm
121
+
122
+ The default DIRECTORY is PREFIX/share/consoletrans. Requires awk.
123
+ Uninstallation of the mappings is not supported. To load a font:
124
+
125
+ $ consolechars [-m MAPPING] -f ter-<X><SIZE><STYLE>
126
+
127
+ where <X> is a character identifying the code page as listed in p.2.4.
128
+
129
+ 2.2. kbd.
130
+
131
+ $ ./configure [--psfdir=DIRECTORY]
132
+ $ make psf
133
+ # make install-psf
134
+
135
+ where DIRECTORY should be either PREFIX/lib/kbd/consolefonts or
136
+ PREFIX/share/kbd/consolefonts, depending on kbd version. Missing mappings
137
+ are installed with:
138
+
139
+ $ ./configure [--prefix=PREFIX | --unidir=DIRECTORY]
140
+ $ make txt
141
+ # make install-uni
142
+
143
+ The default DIRECTORY is PREFIX/share/kbd/consoletrans. Requires awk. To
144
+ load a font:
145
+
146
+ $ setfont [-m MAPPING] ter-<X><SIZE><STYLE>
147
+
148
+ where <X> is a character identifying the code page as listed in p.2.4.
149
+
150
+ 2.3. Quick reference.
151
+
152
+ The commands:
153
+
154
+ $ ./configure [--prefix=PREFIX | --psfdir=DIRECTORY | --ref=FILENAME]
155
+ # make install-ref
156
+
157
+ install the text from p.2.4 as FILENAME (the default is README.terminus)
158
+ in DIRECTORY.
159
+
160
+ 2.4. Legend.
161
+
162
+ names mappings covered codepage(s)
163
+
164
+ ter-1* iso01, iso15, cp1252 ISO8859-1, ISO8859-15, Windows-1252
165
+ ter-2* iso02, cp1250 ISO8859-2, Windows-1250
166
+ ter-7* iso07, cp1253 ISO8859-7, Windows-1253
167
+ ter-9* iso09, cp1254 ISO8859-9, Windows-1254
168
+ ter-c* cp1251, iso05 Windows-1251, ISO8859-5
169
+ ter-d* iso13, cp1257 ISO8859-13, Windows-1257
170
+ ter-g* iso16 ISO8859-16
171
+ ter-i* cp437 IBM-437
172
+ ter-k* koi8r KOI8-R
173
+ ter-m* mik Bulgarian-MIK
174
+ ter-p* pt154 Paratype-PT154
175
+ ter-u* koi8u KOI8-U
176
+ ter-v* all listed above all listed above and many others (about 110
177
+ and many others language sets), 8 foreground colors
178
+
179
+ names style
180
+
181
+ ter-*n normal
182
+ ter-*b bold
183
+ ter-*f framebuffer-bold
184
+
185
+ 2.5. Notes.
186
+
187
+ The combined code page is based on IBM-437 (character 0xFF is ogonek).
188
+ The ISO8859-16 font also includes all letters and accents from Windows-1250.
189
+
190
+
191
+ 3. UNIX console.
192
+
193
+ - sizes 8x14 and 8x16 only
194
+ - styles normal, bold, framebuffer-bold
195
+ - code pages ISO8859-1/Windows-1252, ISO8859-2, ISO8859-5, ISO8859-7,
196
+ ISO8859-9/Windows-1254, ISO8859-13, ISO8859-15, ISO8859-16,
197
+ Windows-1251, IBM-437, KOI8-R, KOI8-U, Paratype-PT154
198
+ - format raw data
199
+
200
+ 3.1. bsd-pcvt.
201
+
202
+ $ ./configure [--prefix=PREFIX | --rawdir=DIRECTORY]
203
+ $ make raw
204
+ # make install.raw
205
+
206
+ or, for file names with minus instead of period:
207
+
208
+ # make install-raw
209
+
210
+ The default DIRECTORY is PREFIX/share/misc/pcvtfonts. The fonts are
211
+ installed uncompressed. Requires Perl. To load a font:
212
+
213
+ $ loadfont -f /usr/share/misc/pcvtfonts/ter-<X><STYLE>.8<SIZE>
214
+
215
+ or, for file names with minus instead of period:
216
+
217
+ $ loadfont -f /usr/share/misc/pcvtfonts/ter-<X><STYLE>-8x<SIZE>
218
+
219
+ where <X> is a character identifying the code page as listed in p.3.2.
220
+
221
+ 3.2. Legend.
222
+
223
+ names covered codepage(s)
224
+
225
+ ter-1* ISO8859-1, Windows-1252
226
+ ter-2* ISO8859-2
227
+ ter-5* ISO8859-5
228
+ ter-7* ISO8859-7
229
+ ter-9* ISO8859-9, Windows-1254
230
+ ter-c* Windows-1251
231
+ ter-d* ISO8859-13
232
+ ter-f* ISO8859-15
233
+ ter-g* ISO8859-16
234
+ ter-i* IBM-437
235
+ ter-k* KOI8-R
236
+ ter-p* Paratype-PT154
237
+ ter-u* KOI8-U
238
+
239
+ names style
240
+
241
+ ter-*n normal
242
+ ter-*b bold
243
+ ter-*f framebuffer-bold
244
+
245
+ 3.3. Notes.
246
+
247
+ The RAW font contains data only and should be compatible with all UNIX
248
+ systems. If any of the bold fonts doesn't look good try framebuffer-bold,
249
+ or, if you are using an EGA/VGA adapter, program it to to clear column 8 of
250
+ the character matrix (attribute controller register 0x10 bit 0x02).
251
+
252
+
253
+ 4. X11 Window System.
254
+
255
+ - sizes all available, see "About"
256
+ - styles normal, bold
257
+ - code pages ISO8859-1/Windows-1252, ISO8859-2, ISO8859-5, ISO8859-7,
258
+ ISO8859-9/Windows-1254, ISO8859-13, ISO8859-15, ISO8859-16,
259
+ Windows-1251, KOI8-R, KOI8-U, Paratype-PT154, ISO10646-1
260
+ - format Portable Compiled Font (PCF)
261
+
262
+ 4.1. Installation.
263
+
264
+ $ ./configure [--prefix=PREFIX | --x11dir=DIRECTORY]
265
+ $ make pcf
266
+ # make install-pcf
267
+
268
+ The files are compressed with gzip and installed in DIRECTORY. The default
269
+ DIRECTORY is PREFIX/share/fonts/terminus. Requires Perl and bdftopcf.
270
+
271
+ A copy of the normal 6x12 font is installed as "bold", because some X11
272
+ libraries and applications substitute the missing bold fonts by shifting the
273
+ normal fonts, and others do not recognize the bold style at all if the
274
+ lowest font size lacks it. To install only the normal font, use "n12"
275
+ instead of "pcf" in the above commands.
276
+
277
+ To update the font cache in DIRECTORY after (un)installation, run:
278
+
279
+ # make fontdir
280
+
281
+ The configuration file which lists the font directories must contain
282
+ DIRECTORY. If xfs or the X-server were active during the installation, they
283
+ should be restarted so the font list can be updated.
284
+
285
+ 4.2. Notes.
286
+
287
+ The ISO8859-1 and ISO8859-9 fonts contain the Windows Western characters and
288
+ can be used as Windows-1252 and Windows-1254 respectively.
289
+
290
+
291
+ 5. Frequently Asked Questions.
292
+
293
+ Q. Italic version?
294
+
295
+ A. No. The quality is significantly lower, and preserving the font width
296
+ requires overlapping characters, which are not handled very well by X11/Xft.
297
+ If you need it than much, try mkitalic from FreeBSD or bdfslant from Debian.
298
+
299
+ Q. Scalable version?
300
+
301
+ A. Long story short, when the average display resolution becomes at least
302
+ 150 DPI. Prefferably 200.
303
+
304
+ Q. How about some new characters?
305
+
306
+ A. Contact me and be ready to help.
307
+
308
+ Q. The bold 6x12 font...
309
+
310
+ A. ...does not exist, there is no space for a bold font in a 6x12 matrix.
311
+ However, the "normal" font is somewhere between.
312
+
313
+ Q. The font works in X11/Motif, but not in GNOME/KDE/Xfce.
314
+
315
+ A. Try adding 75-yes-terminus.conf to the Fontconfig configuration files.
316
+ See also mkfontscale(1), mkfontdir(1), fc-cache(1), xorg.conf(5), xfs(1),
317
+ xlsfonts(1), fonts-conf(5) etc.
318
+
319
+
320
+ 6. Legal information.
321
+
322
+ 6.1. Licenses.
323
+
324
+ Terminus Font is licensed under the SIL Open Font License, Version 1.1.
325
+ The license is included as OFL.TXT, and is also available with a FAQ at:
326
+ http://scripts.sil.org/OFL
327
+
328
+ The files configure, configure.help, bdftopsf.pl and ucstoany.pl are
329
+ distributed under the GNU General Public License version 2.0 or (at your
330
+ choice) any later version.
331
+
332
+
333
+ 6.2. Copyright.
334
+
335
+ Terminus Font 4.39, Copyright (C) 2014 Dimitar Toshkov Zhekov.
336
+ Report bugs to <dimitar.zhekov@gmail.com>
337
+
338
+
339
+ Thanks to Anton Zinoviev, Tim Allen, Kir Koliushkin, Antonios Galanopoulos
340
+ and all the others who helped.