cnpmcore 3.2.3 → 3.2.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.
@@ -1,20 +1,16 @@
1
1
  import { BinaryType } from '../app/common/enum/Binary';
2
2
  export type BinaryTaskConfig = {
3
- category: string;
3
+ category: CategoryName;
4
4
  description: string;
5
5
  type: BinaryType;
6
6
  repo: string;
7
7
  distUrl: string;
8
- ignoreDirs?: string[];
9
- ignoreFiles?: string[];
8
+ ignoreDirs?: readonly string[];
9
+ ignoreFiles?: readonly string[];
10
10
  options?: {
11
- nodePlatforms?: string[];
12
- nodeArchs?: {
13
- [key: string]: string[];
14
- };
15
- binFiles?: {
16
- [key: string]: string[];
17
- };
11
+ nodePlatforms?: readonly string[];
12
+ nodeArchs?: Record<string, readonly string[]>;
13
+ binFiles?: Record<string, readonly string[]>;
18
14
  maxPage?: number;
19
15
  npmPackageName?: string;
20
16
  requiredNapiVersions?: boolean;
@@ -22,6 +18,799 @@ export type BinaryTaskConfig = {
22
18
  disable?: boolean;
23
19
  };
24
20
  declare const binaries: {
25
- [category: string]: BinaryTaskConfig;
21
+ readonly nwjs: {
22
+ readonly category: "nwjs";
23
+ readonly description: "NW.js (previously known as node-webkit) lets you call all Node.js modules directly from DOM and enables a new way of writing applications with all Web technologies.";
24
+ readonly type: BinaryType.Nwjs;
25
+ readonly repo: "nwjs/nw.js";
26
+ readonly distUrl: "https://dl.nwjs.io/";
27
+ };
28
+ readonly node: {
29
+ readonly category: "node";
30
+ readonly description: "Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.";
31
+ readonly type: BinaryType.Node;
32
+ readonly repo: "nodejs/node";
33
+ readonly distUrl: "https://nodejs.org/dist";
34
+ };
35
+ readonly 'node-rc': {
36
+ readonly category: "node-rc";
37
+ readonly description: "Node.js Release Candidate";
38
+ readonly type: BinaryType.Node;
39
+ readonly repo: "nodejs/node";
40
+ readonly distUrl: "https://nodejs.org/download/rc";
41
+ };
42
+ readonly 'node-nightly': {
43
+ readonly category: "node-nightly";
44
+ readonly description: "Node.js Nightly Build";
45
+ readonly type: BinaryType.Node;
46
+ readonly repo: "nodejs/node";
47
+ readonly distUrl: "https://nodejs.org/download/nightly";
48
+ };
49
+ readonly 'node-unofficial-builds': {
50
+ readonly category: "node-unofficial-builds";
51
+ readonly description: "Node.js unofficial-builds project https://unofficial-builds.nodejs.org/";
52
+ readonly type: BinaryType.Node;
53
+ readonly repo: "nodejs/unofficial-builds";
54
+ readonly distUrl: "https://unofficial-builds.nodejs.org/download/release";
55
+ };
56
+ readonly alinode: {
57
+ readonly category: "alinode";
58
+ readonly description: "Node.js 性能平台(Node.js Performance Platform)是面向中大型 Node.js 应用提供性能监控、安全提醒、故障排查、性能优化等服务的整体性解决方案。凭借对 Node.js 内核深入的理解,我们提供完善的工具链和服务,协助客户主动、快速发现和定位线上问题。";
59
+ readonly type: BinaryType.Node;
60
+ readonly repo: "";
61
+ readonly distUrl: "http://alinode.aliyun.com/dist/new-alinode";
62
+ };
63
+ readonly python: {
64
+ readonly category: "python";
65
+ readonly description: "The Python programming language https://www.python.org/";
66
+ readonly type: BinaryType.Node;
67
+ readonly repo: "python/cpython";
68
+ readonly distUrl: "https://www.python.org/ftp/python";
69
+ readonly ignoreFiles: readonly ["/src/Python-1.6.tar.gz"];
70
+ };
71
+ readonly cypress: {
72
+ readonly category: "cypress";
73
+ readonly description: "Fast, easy and reliable testing for anything that runs in a browser.";
74
+ readonly type: BinaryType.Cypress;
75
+ readonly repo: "cypress-io/cypress";
76
+ readonly distUrl: "https://www.cypress.io/";
77
+ };
78
+ readonly '@journeyapps/sqlcipher': {
79
+ readonly category: "@journeyapps/sqlcipher";
80
+ readonly description: "SQLCipher bindings for Node";
81
+ readonly type: BinaryType.Sqlcipher;
82
+ readonly repo: "journeyapps/node-sqlcipher";
83
+ readonly distUrl: "https://journeyapps-node-binary.s3.amazonaws.com";
84
+ };
85
+ readonly 'chromium-browser-snapshots': {
86
+ readonly category: "chromium-browser-snapshots";
87
+ readonly description: "chromium-browser-snapshots sync for puppeteer";
88
+ readonly type: BinaryType.Puppeteer;
89
+ readonly repo: "puppeteer/puppeteer";
90
+ readonly distUrl: "https://chromium-browser-snapshots.storage.googleapis.com/?delimiter=/&prefix=";
91
+ };
92
+ readonly 'grpc-tools': {
93
+ readonly category: "grpc-tools";
94
+ readonly description: "Tools for developing with gRPC on Node.js";
95
+ readonly type: BinaryType.NodePreGyp;
96
+ readonly repo: "https://github.com/grpc/grpc-node/blob/master/packages/grpc-tools/";
97
+ readonly distUrl: "https://node-precompiled-binaries.grpc.io";
98
+ };
99
+ readonly grpc: {
100
+ readonly category: "grpc";
101
+ readonly description: "gRPC Library for Node";
102
+ readonly type: BinaryType.NodePreGyp;
103
+ readonly repo: "grpc/grpc-node";
104
+ readonly distUrl: "https://node-precompiled-binaries.grpc.io";
105
+ };
106
+ readonly 'skia-canvas': {
107
+ readonly category: "skia-canvas";
108
+ readonly description: "A canvas environment for Node";
109
+ readonly type: BinaryType.NodePreGyp;
110
+ readonly repo: "samizdatco/skia-canvas";
111
+ readonly distUrl: "https://skia-canvas.s3.us-east-1.amazonaws.com";
112
+ readonly options: {
113
+ readonly requiredNapiVersions: true;
114
+ };
115
+ };
116
+ readonly wrtc: {
117
+ readonly category: "wrtc";
118
+ readonly description: "node-webrtc is a Node.js Native Addon that provides bindings to WebRTC M87.";
119
+ readonly type: BinaryType.NodePreGyp;
120
+ readonly repo: "node-webrtc/node-webrtc";
121
+ readonly distUrl: "https://node-webrtc.s3.amazonaws.com";
122
+ };
123
+ readonly nodegit: {
124
+ readonly category: "nodegit";
125
+ readonly description: "Native Node bindings to Git.";
126
+ readonly type: BinaryType.NodePreGyp;
127
+ readonly repo: "nodegit/nodegit";
128
+ readonly distUrl: "https://axonodegit.s3.amazonaws.com/nodegit";
129
+ readonly options: {
130
+ readonly nodeArchs: {
131
+ readonly linux: readonly ["x64"];
132
+ readonly darwin: readonly ["x64"];
133
+ readonly win32: readonly ["x64", "ia32"];
134
+ };
135
+ };
136
+ readonly disable: true;
137
+ };
138
+ readonly chromedriver: {
139
+ readonly category: "chromedriver";
140
+ readonly description: "WebDriver is an open source tool for automated testing of webapps across many browsers";
141
+ readonly type: BinaryType.Bucket;
142
+ readonly repo: "https://chromedriver.chromium.org/contributing";
143
+ readonly distUrl: "https://chromedriver.storage.googleapis.com/";
144
+ };
145
+ readonly selenium: {
146
+ readonly category: "selenium";
147
+ readonly description: "Selenium automates browsers. That's it!";
148
+ readonly type: BinaryType.Bucket;
149
+ readonly repo: "https://www.selenium.dev/";
150
+ readonly distUrl: "https://selenium-release.storage.googleapis.com/";
151
+ };
152
+ readonly 'node-inspector': {
153
+ readonly category: "node-inspector";
154
+ readonly description: "Node.js debugger based on Blink Developer Tools";
155
+ readonly type: BinaryType.Bucket;
156
+ readonly repo: "node-inspector/node-inspector";
157
+ readonly distUrl: "https://node-inspector.s3.amazonaws.com/";
158
+ readonly ignoreDirs: readonly ["/AWSLogs/"];
159
+ };
160
+ readonly fsevents: {
161
+ readonly category: "fsevents";
162
+ readonly description: "Native access to MacOS FSEvents in Node.js";
163
+ readonly type: BinaryType.Bucket;
164
+ readonly repo: "fsevents/fsevents";
165
+ readonly distUrl: "https://fsevents-binaries.s3-us-west-2.amazonaws.com/";
166
+ };
167
+ readonly 'tfjs-models': {
168
+ readonly category: "tfjs-models";
169
+ readonly description: "Pretrained models for TensorFlow.js";
170
+ readonly type: BinaryType.Bucket;
171
+ readonly repo: "tensorflow/tfjs-models";
172
+ readonly distUrl: "https://tfjs-models.storage.googleapis.com/";
173
+ };
174
+ readonly tensorflow: {
175
+ readonly category: "tensorflow";
176
+ readonly description: "A WebGL accelerated JavaScript library for training and deploying ML models.";
177
+ readonly type: BinaryType.Bucket;
178
+ readonly repo: "tensorflow/tfjs";
179
+ readonly distUrl: "https://tensorflow.storage.googleapis.com/";
180
+ };
181
+ readonly 'tf-builds': {
182
+ readonly category: "tf-builds";
183
+ readonly description: "A WebGL accelerated JavaScript library for training and deploying ML models.";
184
+ readonly type: BinaryType.Bucket;
185
+ readonly repo: "tensorflow/tfjs";
186
+ readonly distUrl: "https://tf-builds.storage.googleapis.com/";
187
+ };
188
+ readonly prisma: {
189
+ readonly category: "prisma";
190
+ readonly description: "Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite & MongoDB (Preview) https://www.prisma.io/";
191
+ readonly type: BinaryType.Bucket;
192
+ readonly repo: "prisma/prisma";
193
+ readonly distUrl: "https://prisma-builds.s3-eu-west-1.amazonaws.com/";
194
+ readonly ignoreDirs: readonly ["/build_testruns/", "/bump_engineer/", "/m1_builds/", "/master/", "/ci/", "/unreverse/", "/signature_test_run/", "/sql-server-char-collation-fix/", "/test-ldd-output-on-release/", "/windows-mysql-ci/"];
195
+ };
196
+ readonly 'jpegtran-bin': {
197
+ readonly category: "jpegtran-bin";
198
+ readonly description: "jpegtran bin-wrapper that makes it seamlessly available as a local dependency";
199
+ readonly type: BinaryType.Imagemin;
200
+ readonly repo: "imagemin/jpegtran-bin";
201
+ readonly distUrl: "https://raw.githubusercontent.com";
202
+ readonly options: {
203
+ readonly nodePlatforms: readonly ["macos", "linux", "freebsd", "sunos", "win"];
204
+ readonly nodeArchs: {
205
+ readonly macos: readonly [];
206
+ readonly linux: readonly ["x86", "x64"];
207
+ readonly freebsd: readonly ["x86", "x64"];
208
+ readonly sunos: readonly ["x86", "x64"];
209
+ readonly win: readonly ["x86", "x64"];
210
+ };
211
+ readonly binFiles: {
212
+ readonly macos: readonly ["jpegtran"];
213
+ readonly linux: readonly ["jpegtran"];
214
+ readonly freebsd: readonly ["jpegtran"];
215
+ readonly sunos: readonly ["jpegtran"];
216
+ readonly win: readonly ["jpegtran.exe", "libjpeg-62.dll"];
217
+ };
218
+ };
219
+ };
220
+ readonly 'pngquant-bin': {
221
+ readonly category: "pngquant-bin";
222
+ readonly description: "pngquant bin-wrapper that makes it seamlessly available as a local dependency";
223
+ readonly type: BinaryType.Imagemin;
224
+ readonly repo: "imagemin/pngquant-bin";
225
+ readonly distUrl: "https://raw.githubusercontent.com";
226
+ readonly options: {
227
+ readonly nodePlatforms: readonly ["macos", "linux", "freebsd", "win"];
228
+ readonly nodeArchs: {
229
+ readonly macos: readonly [];
230
+ readonly linux: readonly ["x86", "x64"];
231
+ readonly freebsd: readonly ["x64"];
232
+ readonly win: readonly [];
233
+ };
234
+ readonly binFiles: {
235
+ readonly macos: readonly ["pngquant"];
236
+ readonly linux: readonly ["pngquant"];
237
+ readonly freebsd: readonly ["pngquant"];
238
+ readonly win: readonly ["pngquant.exe"];
239
+ };
240
+ };
241
+ };
242
+ readonly 'mozjpeg-bin': {
243
+ readonly category: "mozjpeg-bin";
244
+ readonly description: "mozjpeg bin-wrapper that makes it seamlessly available as a local dependency";
245
+ readonly type: BinaryType.Imagemin;
246
+ readonly repo: "imagemin/mozjpeg-bin";
247
+ readonly distUrl: "https://raw.githubusercontent.com";
248
+ readonly options: {
249
+ readonly npmPackageName: "mozjpeg";
250
+ readonly nodePlatforms: readonly ["osx", "macos", "linux", "win"];
251
+ readonly nodeArchs: {
252
+ readonly osx: readonly [];
253
+ readonly macos: readonly [];
254
+ readonly linux: readonly [];
255
+ readonly win: readonly [];
256
+ };
257
+ readonly binFiles: {
258
+ readonly osx: readonly ["cjpeg"];
259
+ readonly macos: readonly ["cjpeg"];
260
+ readonly linux: readonly ["cjpeg"];
261
+ readonly win: readonly ["cjpeg.exe"];
262
+ };
263
+ };
264
+ };
265
+ readonly 'gifsicle-bin': {
266
+ readonly category: "gifsicle-bin";
267
+ readonly description: "gifsicle bin-wrapper that makes it seamlessly available as a local dependency";
268
+ readonly type: BinaryType.Imagemin;
269
+ readonly repo: "imagemin/gifsicle-bin";
270
+ readonly distUrl: "https://raw.githubusercontent.com";
271
+ readonly options: {
272
+ readonly npmPackageName: "gifsicle";
273
+ readonly nodePlatforms: readonly ["macos", "linux", "freebsd", "win"];
274
+ readonly nodeArchs: {
275
+ readonly macos: readonly [];
276
+ readonly linux: readonly ["x86", "x64"];
277
+ readonly freebsd: readonly ["x86", "x64"];
278
+ readonly win: readonly ["x86", "x64"];
279
+ };
280
+ readonly binFiles: {
281
+ readonly macos: readonly ["gifsicle"];
282
+ readonly linux: readonly ["gifsicle"];
283
+ readonly freebsd: readonly ["gifsicle"];
284
+ readonly win: readonly ["gifsicle.exe"];
285
+ };
286
+ };
287
+ };
288
+ readonly 'optipng-bin': {
289
+ readonly category: "optipng-bin";
290
+ readonly description: "optipng bin-wrapper that makes it seamlessly available as a local dependency";
291
+ readonly type: BinaryType.Imagemin;
292
+ readonly repo: "imagemin/optipng-bin";
293
+ readonly distUrl: "https://raw.githubusercontent.com";
294
+ readonly options: {
295
+ readonly nodePlatforms: readonly ["macos", "linux", "freebsd", "sunos", "win"];
296
+ readonly nodeArchs: {
297
+ readonly macos: readonly [];
298
+ readonly linux: readonly ["x86", "x64"];
299
+ readonly freebsd: readonly ["x86", "x64"];
300
+ readonly sunos: readonly ["x86", "x64"];
301
+ readonly win: readonly [];
302
+ };
303
+ readonly binFiles: {
304
+ readonly macos: readonly ["optipng"];
305
+ readonly linux: readonly ["optipng"];
306
+ readonly freebsd: readonly ["optipng"];
307
+ readonly sunos: readonly ["optipng"];
308
+ readonly win: readonly ["optipng.exe"];
309
+ };
310
+ };
311
+ };
312
+ readonly 'zopflipng-bin': {
313
+ readonly category: "zopflipng-bin";
314
+ readonly description: "zopflipng bin-wrapper that makes it seamlessly available as a local dependency";
315
+ readonly type: BinaryType.Imagemin;
316
+ readonly repo: "imagemin/zopflipng-bin";
317
+ readonly distUrl: "https://raw.githubusercontent.com";
318
+ readonly options: {
319
+ readonly nodePlatforms: readonly ["osx", "linux", "win32"];
320
+ readonly nodeArchs: {
321
+ readonly osx: readonly [];
322
+ readonly linux: readonly [];
323
+ readonly win32: readonly [];
324
+ };
325
+ readonly binFiles: {
326
+ readonly osx: readonly ["zopflipng"];
327
+ readonly linux: readonly ["zopflipng"];
328
+ readonly win32: readonly ["zopflipng.exe"];
329
+ };
330
+ };
331
+ };
332
+ readonly 'jpegoptim-bin': {
333
+ readonly category: "jpegoptim-bin";
334
+ readonly description: "jpegoptim bin-wrapper that makes it seamlessly available as a local dependency";
335
+ readonly type: BinaryType.Imagemin;
336
+ readonly repo: "imagemin/jpegoptim-bin";
337
+ readonly distUrl: "https://raw.githubusercontent.com";
338
+ readonly options: {
339
+ readonly nodePlatforms: readonly ["osx", "linux", "win32"];
340
+ readonly nodeArchs: {
341
+ readonly osx: readonly [];
342
+ readonly linux: readonly [];
343
+ readonly win32: readonly [];
344
+ };
345
+ readonly binFiles: {
346
+ readonly osx: readonly ["jpegoptim"];
347
+ readonly linux: readonly ["jpegoptim"];
348
+ readonly win32: readonly ["jpegoptim.exe"];
349
+ };
350
+ };
351
+ };
352
+ readonly 'jpeg-recompress-bin': {
353
+ readonly category: "jpeg-recompress-bin";
354
+ readonly description: "jpeg-recompress bin-wrapper that makes it seamlessly available as a local dependency";
355
+ readonly type: BinaryType.Imagemin;
356
+ readonly repo: "imagemin/jpeg-recompress-bin";
357
+ readonly distUrl: "https://raw.githubusercontent.com";
358
+ readonly options: {
359
+ readonly nodePlatforms: readonly ["osx", "linux", "win"];
360
+ readonly nodeArchs: {
361
+ readonly osx: readonly [];
362
+ readonly linux: readonly [];
363
+ readonly win: readonly [];
364
+ };
365
+ readonly binFiles: {
366
+ readonly osx: readonly ["jpeg-recompress"];
367
+ readonly linux: readonly ["jpeg-recompress"];
368
+ readonly win: readonly ["jpeg-recompress.exe"];
369
+ };
370
+ };
371
+ };
372
+ readonly 'pngcrush-bin': {
373
+ readonly category: "pngcrush-bin";
374
+ readonly description: "pngcrush bin-wrapper that makes it seamlessly available as a local dependency";
375
+ readonly type: BinaryType.Imagemin;
376
+ readonly repo: "imagemin/pngcrush-bin";
377
+ readonly distUrl: "https://raw.githubusercontent.com";
378
+ readonly options: {
379
+ readonly nodePlatforms: readonly ["osx", "linux", "win"];
380
+ readonly nodeArchs: {
381
+ readonly osx: readonly [];
382
+ readonly linux: readonly [];
383
+ readonly win: readonly ["x64", "x86"];
384
+ };
385
+ readonly binFiles: {
386
+ readonly osx: readonly ["pngcrush"];
387
+ readonly linux: readonly ["pngcrush"];
388
+ readonly win: readonly ["pngcrush.exe"];
389
+ };
390
+ };
391
+ };
392
+ readonly 'pngout-bin': {
393
+ readonly category: "pngout-bin";
394
+ readonly description: "pngout bin-wrapper that makes it seamlessly available as a local dependency";
395
+ readonly type: BinaryType.Imagemin;
396
+ readonly repo: "imagemin/pngout-bin";
397
+ readonly distUrl: "https://raw.githubusercontent.com";
398
+ readonly options: {
399
+ readonly nodePlatforms: readonly ["osx", "linux", "freebsd", "win32"];
400
+ readonly nodeArchs: {
401
+ readonly osx: readonly [];
402
+ readonly linux: readonly ["x64", "x86"];
403
+ readonly freebsd: readonly ["x64", "x86"];
404
+ readonly win32: readonly [];
405
+ };
406
+ readonly binFiles: {
407
+ readonly osx: readonly ["pngcrush"];
408
+ readonly linux: readonly ["pngcrush"];
409
+ readonly freebsd: readonly ["pngout"];
410
+ readonly win32: readonly ["pngcrush.exe"];
411
+ };
412
+ };
413
+ };
414
+ readonly 'gif2webp-bin': {
415
+ readonly category: "gif2webp-bin";
416
+ readonly description: "gif2webp bin-wrapper that makes it seamlessly available as a local dependency";
417
+ readonly type: BinaryType.Imagemin;
418
+ readonly repo: "imagemin/gif2webp-bin";
419
+ readonly distUrl: "https://raw.githubusercontent.com";
420
+ readonly options: {
421
+ readonly nodePlatforms: readonly ["macos", "linux", "win"];
422
+ readonly nodeArchs: {
423
+ readonly macos: readonly [];
424
+ readonly linux: readonly [];
425
+ readonly win: readonly [];
426
+ };
427
+ readonly binFiles: {
428
+ readonly macos: readonly ["gif2webp"];
429
+ readonly linux: readonly ["gif2webp"];
430
+ readonly win: readonly ["gif2webp.exe"];
431
+ };
432
+ };
433
+ };
434
+ readonly 'guetzli-bin': {
435
+ readonly category: "guetzli-bin";
436
+ readonly description: "guetzli bin-wrapper that makes it seamlessly available as a local dependency";
437
+ readonly type: BinaryType.Imagemin;
438
+ readonly repo: "imagemin/guetzli-bin";
439
+ readonly distUrl: "https://raw.githubusercontent.com";
440
+ readonly options: {
441
+ readonly npmPackageName: "guetzli";
442
+ readonly nodePlatforms: readonly ["macos", "linux", "win"];
443
+ readonly nodeArchs: {
444
+ readonly macos: readonly [];
445
+ readonly linux: readonly [];
446
+ readonly win: readonly [];
447
+ };
448
+ readonly binFiles: {
449
+ readonly macos: readonly ["guetzli"];
450
+ readonly linux: readonly ["guetzli"];
451
+ readonly win: readonly ["guetzli.exe"];
452
+ };
453
+ };
454
+ };
455
+ readonly 'advpng-bin': {
456
+ readonly category: "advpng-bin";
457
+ readonly description: "advpng bin-wrapper that makes it seamlessly available as a local dependency";
458
+ readonly type: BinaryType.Imagemin;
459
+ readonly repo: "imagemin/advpng-bin";
460
+ readonly distUrl: "https://raw.githubusercontent.com";
461
+ readonly options: {
462
+ readonly nodePlatforms: readonly ["osx", "linux", "win32"];
463
+ readonly nodeArchs: {
464
+ readonly osx: readonly [];
465
+ readonly linux: readonly [];
466
+ readonly win32: readonly [];
467
+ };
468
+ readonly binFiles: {
469
+ readonly osx: readonly ["advpng"];
470
+ readonly linux: readonly ["advpng"];
471
+ readonly win32: readonly ["advpng.exe"];
472
+ };
473
+ };
474
+ };
475
+ readonly 'cwebp-bin': {
476
+ readonly category: "cwebp-bin";
477
+ readonly description: "cwebp bin-wrapper that makes it seamlessly available as a local dependency";
478
+ readonly type: BinaryType.Imagemin;
479
+ readonly repo: "imagemin/cwebp-bin";
480
+ readonly distUrl: "https://raw.githubusercontent.com";
481
+ readonly options: {
482
+ readonly nodePlatforms: readonly ["osx", "linux", "win"];
483
+ readonly nodeArchs: {
484
+ readonly osx: readonly [];
485
+ readonly linux: readonly ["x86", "x64"];
486
+ readonly win: readonly ["x86", "x64"];
487
+ };
488
+ readonly binFiles: {
489
+ readonly osx: readonly ["cwebp"];
490
+ readonly linux: readonly ["cwebp"];
491
+ readonly win: readonly ["cwebp.exe"];
492
+ };
493
+ };
494
+ };
495
+ readonly npm: {
496
+ readonly category: "npm";
497
+ readonly description: "the package manager for JavaScript";
498
+ readonly type: BinaryType.GitHub;
499
+ readonly repo: "npm/cli";
500
+ readonly distUrl: "https://github.com/npm/cli/releases";
501
+ readonly options: {
502
+ readonly maxPage: 3;
503
+ };
504
+ };
505
+ readonly xprofiler: {
506
+ readonly category: "xprofiler";
507
+ readonly description: "🌀An addon for node.js, which supporting output performance log and real-time profiling through sampling.";
508
+ readonly type: BinaryType.GitHub;
509
+ readonly repo: "X-Profiler/xprofiler";
510
+ readonly distUrl: "https://github.com/X-Profiler/xprofiler/releases";
511
+ };
512
+ readonly 'node-sass': {
513
+ readonly category: "node-sass";
514
+ readonly description: "🌈 Node.js bindings to libsass";
515
+ readonly type: BinaryType.GitHub;
516
+ readonly repo: "sass/node-sass";
517
+ readonly distUrl: "https://github.com/sass/node-sass/releases";
518
+ };
519
+ readonly 'sass-embedded': {
520
+ readonly category: "sass-embedded";
521
+ readonly description: "This is a wrapper for Dart Sass that implements the compiler side of the Embedded Sass protocol.";
522
+ readonly type: BinaryType.GitHub;
523
+ readonly repo: "sass/dart-sass-embedded";
524
+ readonly distUrl: "https://github.com/sass/dart-sass-embedded/releases";
525
+ };
526
+ readonly electron: {
527
+ readonly category: "electron";
528
+ readonly description: "Build cross-platform desktop apps with JavaScript, HTML, and CSS";
529
+ readonly type: BinaryType.Electron;
530
+ readonly repo: "electron/electron";
531
+ readonly distUrl: "https://github.com/electron/electron/releases";
532
+ readonly options: {
533
+ readonly maxPage: 1;
534
+ };
535
+ };
536
+ readonly 'electron-nightly': {
537
+ readonly category: "electron-nightly";
538
+ readonly description: "Build cross-platform desktop apps with JavaScript, HTML, and CSS";
539
+ readonly type: BinaryType.GitHub;
540
+ readonly repo: "electron/nightlies";
541
+ readonly distUrl: "https://github.com/electron/nightlies/releases";
542
+ readonly options: {
543
+ readonly maxPage: 3;
544
+ };
545
+ };
546
+ readonly 'electron-builder-binaries': {
547
+ readonly category: "electron-builder-binaries";
548
+ readonly description: "electron-builder downloads required tools files on demand (e.g. to code sign windows application, to make AppX).";
549
+ readonly type: BinaryType.GitHub;
550
+ readonly repo: "electron-userland/electron-builder-binaries";
551
+ readonly distUrl: "https://github.com/electron-userland/electron-builder-binaries/releases";
552
+ };
553
+ readonly 'ffmpeg-static': {
554
+ readonly category: "ffmpeg-static";
555
+ readonly description: "ffmpeg static binaries for Mac OSX and Linux and Windows";
556
+ readonly type: BinaryType.GitHub;
557
+ readonly repo: "eugeneware/ffmpeg-static";
558
+ readonly distUrl: "https://github.com/eugeneware/ffmpeg-static/releases";
559
+ };
560
+ readonly nodejieba: {
561
+ readonly category: "nodejieba";
562
+ readonly description: "\"结巴\"中文分词的Node.js版本";
563
+ readonly type: BinaryType.GitHub;
564
+ readonly repo: "yanyiwu/nodejieba";
565
+ readonly distUrl: "https://github.com/yanyiwu/nodejieba/releases";
566
+ };
567
+ readonly 'git-for-windows': {
568
+ readonly category: "git-for-windows";
569
+ readonly description: "A fork of Git containing Windows-specific patches.";
570
+ readonly type: BinaryType.GitHub;
571
+ readonly repo: "git-for-windows/git";
572
+ readonly distUrl: "https://github.com/git-for-windows/git/releases";
573
+ };
574
+ readonly atom: {
575
+ readonly category: "atom";
576
+ readonly description: "The hackable text editor";
577
+ readonly type: BinaryType.GitHub;
578
+ readonly repo: "atom/atom";
579
+ readonly distUrl: "https://github.com/atom/atom/releases";
580
+ };
581
+ readonly operadriver: {
582
+ readonly category: "operadriver";
583
+ readonly description: "OperaDriver for Chromium-based Opera releases";
584
+ readonly type: BinaryType.GitHub;
585
+ readonly repo: "operasoftware/operachromiumdriver";
586
+ readonly distUrl: "https://github.com/operasoftware/operachromiumdriver/releases";
587
+ };
588
+ readonly geckodriver: {
589
+ readonly category: "geckodriver";
590
+ readonly description: "WebDriver for Firefox";
591
+ readonly type: BinaryType.GitHub;
592
+ readonly repo: "mozilla/geckodriver";
593
+ readonly distUrl: "https://github.com/mozilla/geckodriver/releases";
594
+ };
595
+ readonly leveldown: {
596
+ readonly category: "leveldown";
597
+ readonly description: "Pure C++ Node.js LevelDB binding. An abstract-leveldown compliant store.";
598
+ readonly type: BinaryType.GitHub;
599
+ readonly repo: "Level/leveldown";
600
+ readonly distUrl: "https://github.com/Level/leveldown/releases";
601
+ };
602
+ readonly couchbase: {
603
+ readonly category: "couchbase";
604
+ readonly description: "Couchbase Node.js Client Library (Official)";
605
+ readonly type: BinaryType.GitHub;
606
+ readonly repo: "couchbase/couchnode";
607
+ readonly distUrl: "https://github.com/couchbase/couchnode/releases";
608
+ };
609
+ readonly gl: {
610
+ readonly category: "gl";
611
+ readonly description: "🎃 Windowless WebGL for node.js";
612
+ readonly type: BinaryType.GitHub;
613
+ readonly repo: "stackgl/headless-gl";
614
+ readonly distUrl: "https://github.com/stackgl/headless-gl/releases";
615
+ };
616
+ readonly flow: {
617
+ readonly category: "flow";
618
+ readonly description: "Adds static typing to JavaScript to improve developer productivity and code quality.";
619
+ readonly type: BinaryType.GitHub;
620
+ readonly repo: "facebook/flow";
621
+ readonly distUrl: "https://github.com/facebook/flow/releases";
622
+ };
623
+ readonly robotjs: {
624
+ readonly category: "robotjs";
625
+ readonly description: "Node.js Desktop Automation. http://robotjs.io/";
626
+ readonly type: BinaryType.GitHub;
627
+ readonly repo: "octalmage/robotjs";
628
+ readonly distUrl: "https://github.com/octalmage/robotjs/releases";
629
+ };
630
+ readonly poi: {
631
+ readonly category: "poi";
632
+ readonly description: "Scalable KanColle browser and tool. https://poi.io/";
633
+ readonly type: BinaryType.GitHub;
634
+ readonly repo: "poooi/poi";
635
+ readonly distUrl: "https://github.com/poooi/poi/releases";
636
+ };
637
+ readonly 'utf-8-validate': {
638
+ readonly category: "utf-8-validate";
639
+ readonly description: "Check if a buffer contains valid UTF-8";
640
+ readonly type: BinaryType.GitHub;
641
+ readonly repo: "websockets/utf-8-validate";
642
+ readonly distUrl: "https://github.com/websockets/utf-8-validate/releases";
643
+ };
644
+ readonly minikube: {
645
+ readonly category: "minikube";
646
+ readonly description: "Run Kubernetes locally https://minikube.sigs.k8s.io/";
647
+ readonly type: BinaryType.GitHub;
648
+ readonly repo: "kubernetes/minikube";
649
+ readonly distUrl: "https://github.com/kubernetes/minikube/releases";
650
+ };
651
+ readonly 'sentry-cli': {
652
+ readonly category: "sentry-cli";
653
+ readonly description: "A command line utility to work with Sentry. https://docs.sentry.io/cli/";
654
+ readonly type: BinaryType.GitHub;
655
+ readonly repo: "getsentry/sentry-cli";
656
+ readonly distUrl: "https://github.com/getsentry/sentry-cli/releases";
657
+ };
658
+ readonly 'sharp-libvips': {
659
+ readonly category: "sharp-libvips";
660
+ readonly description: "Packaging scripts to prebuild libvips and its dependencies - you're probably looking for https://github.com/lovell/sharp";
661
+ readonly type: BinaryType.GitHub;
662
+ readonly repo: "lovell/sharp-libvips";
663
+ readonly distUrl: "https://github.com/lovell/sharp-libvips/releases";
664
+ };
665
+ readonly sharp: {
666
+ readonly category: "sharp";
667
+ readonly description: "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, AVIF and TIFF images. Uses the libvips library. https://sharp.pixelplumbing.com/";
668
+ readonly type: BinaryType.GitHub;
669
+ readonly repo: "lovell/sharp";
670
+ readonly distUrl: "https://github.com/lovell/sharp/releases";
671
+ };
672
+ readonly swc: {
673
+ readonly category: "swc";
674
+ readonly description: "swc is a super-fast compiler written in rust; producing widely-supported javascript from modern standards and typescript. https://swc.rs/";
675
+ readonly type: BinaryType.GitHub;
676
+ readonly repo: "swc-project/swc";
677
+ readonly distUrl: "https://github.com/swc-project/swc/releases";
678
+ };
679
+ readonly 'node-swc': {
680
+ readonly category: "node-swc";
681
+ readonly description: "Experimental repo to avoid spamming watchers, see https://github.com/swc-project/swc";
682
+ readonly type: BinaryType.GitHub;
683
+ readonly repo: "swc-project/node-swc";
684
+ readonly distUrl: "https://github.com/swc-project/node-swc/releases";
685
+ };
686
+ readonly argon2: {
687
+ readonly category: "argon2";
688
+ readonly description: "Node.js bindings for Argon2 hashing algorithm";
689
+ readonly type: BinaryType.GitHub;
690
+ readonly repo: "ranisalt/node-argon2";
691
+ readonly distUrl: "https://github.com/ranisalt/node-argon2/releases";
692
+ };
693
+ readonly iohook: {
694
+ readonly category: "iohook";
695
+ readonly description: "Node.js global keyboard and mouse listener.";
696
+ readonly type: BinaryType.GitHub;
697
+ readonly repo: "wilix-team/iohook";
698
+ readonly distUrl: "https://github.com/wilix-team/iohook/releases";
699
+ };
700
+ readonly saucectl: {
701
+ readonly category: "saucectl";
702
+ readonly description: "A command line interface to run testrunner tests";
703
+ readonly type: BinaryType.GitHub;
704
+ readonly repo: "saucelabs/saucectl";
705
+ readonly distUrl: "https://github.com/saucelabs/saucectl/releases";
706
+ };
707
+ readonly 'node-gdal-async': {
708
+ readonly category: "node-gdal-async";
709
+ readonly description: "Node.js bindings for GDAL (Geospatial Data Abstraction Library) with full async support. https://mmomtchev.github.io/node-gdal-async/";
710
+ readonly type: BinaryType.GitHub;
711
+ readonly repo: "mmomtchev/node-gdal-async";
712
+ readonly distUrl: "https://github.com/mmomtchev/node-gdal-async/releases";
713
+ };
714
+ readonly 'looksgood-s2': {
715
+ readonly category: "looksgood-s2";
716
+ readonly description: "Node.js JavaScript & TypeScript bindings for Google S2.";
717
+ readonly type: BinaryType.GitHub;
718
+ readonly repo: "looksgood/s2";
719
+ readonly distUrl: "https://github.com/looksgood/s2/releases";
720
+ };
721
+ readonly 'ali-zeromq': {
722
+ readonly category: "ali-zeromq";
723
+ readonly description: "Node.js bindings for zeromq";
724
+ readonly type: BinaryType.GitHub;
725
+ readonly repo: "looksgood/zeromq.js";
726
+ readonly distUrl: "https://github.com/looksgood/zeromq.js/releases";
727
+ };
728
+ readonly 'ali-usb_ctl': {
729
+ readonly category: "ali-usb_ctl";
730
+ readonly description: "Node.js usb control module";
731
+ readonly type: BinaryType.GitHub;
732
+ readonly repo: "looksgood/ali-usb_ctl";
733
+ readonly distUrl: "https://github.com/looksgood/ali-usb_ctl/releases";
734
+ };
735
+ readonly 'node-re2': {
736
+ readonly category: "node-re2";
737
+ readonly description: "node.js bindings for RE2: fast, safe alternative to backtracking regular expression engines.";
738
+ readonly type: BinaryType.GitHub;
739
+ readonly repo: "uhop/node-re2";
740
+ readonly distUrl: "https://github.com/uhop/node-re2/releases";
741
+ };
742
+ readonly sqlite3: {
743
+ readonly category: "sqlite3";
744
+ readonly description: "Asynchronous, non-blocking SQLite3 bindings for Node.js";
745
+ readonly type: BinaryType.GitHub;
746
+ readonly repo: "TryGhost/node-sqlite3";
747
+ readonly distUrl: "https://github.com/TryGhost/node-sqlite3/releases";
748
+ };
749
+ readonly 'better-sqlite3': {
750
+ readonly category: "better-sqlite3";
751
+ readonly description: "AsyncThe fastest and simplest library for SQLite3 in Node.js";
752
+ readonly type: BinaryType.GitHub;
753
+ readonly repo: "WiseLibs/better-sqlite3";
754
+ readonly distUrl: "https://github.com/WiseLibs/better-sqlite3/releases";
755
+ };
756
+ readonly keytar: {
757
+ readonly category: "keytar";
758
+ readonly description: "Native Password Node Module";
759
+ readonly type: BinaryType.GitHub;
760
+ readonly repo: "atom/node-keytar";
761
+ readonly distUrl: "https://github.com/atom/node-keytar/releases";
762
+ };
763
+ readonly playwright: {
764
+ readonly category: "playwright";
765
+ readonly description: "Playwright is a framework for Web Testing and Automation.";
766
+ readonly type: BinaryType.Playwright;
767
+ readonly repo: "microsoft/playwright";
768
+ readonly distUrl: "https://github.com/microsoft/playwright/releases";
769
+ };
770
+ readonly nydus: {
771
+ readonly category: "nydus";
772
+ readonly description: "the Dragonfly image service, providing fast, secure and easy access to container images.";
773
+ readonly type: BinaryType.GitHub;
774
+ readonly repo: "dragonflyoss/image-service";
775
+ readonly distUrl: "https://github.com/dragonflyoss/image-service/releases";
776
+ };
777
+ readonly canvas: {
778
+ readonly category: "node-canvas-prebuilt";
779
+ readonly description: "Node canvas is a Cairo backed Canvas implementation for NodeJS.";
780
+ readonly type: BinaryType.GitHub;
781
+ readonly repo: "Automattic/node-canvas";
782
+ readonly distUrl: "https://github.com/Automattic/node-canvas/releases";
783
+ };
784
+ readonly 'canvas-prebuilt': {
785
+ readonly category: "canvas-prebuilt";
786
+ readonly distUrl: "https://github.com/node-gfx/node-canvas-prebuilt/releases";
787
+ readonly repo: "chearon/node-canvas-prebuilt";
788
+ readonly description: "Prebuilt versions of node-canvas as a drop-in replacement";
789
+ readonly type: BinaryType.GitHub;
790
+ readonly options: {
791
+ readonly nodeArchs: {
792
+ readonly linux: readonly ["x64"];
793
+ readonly darwin: readonly ["x64"];
794
+ readonly win32: readonly ["x64"];
795
+ };
796
+ };
797
+ };
798
+ readonly 'node-canvas-prebuilt': {
799
+ readonly category: "node-canvas-prebuilt";
800
+ readonly distUrl: "https://github.com/node-gfx/node-canvas-prebuilt/releases";
801
+ readonly repo: "node-gfx/node-canvas-prebuilt";
802
+ readonly description: "Repo used to build binaries for node-canvas on CI";
803
+ readonly type: BinaryType.GitHub;
804
+ readonly options: {
805
+ readonly nodeArchs: {
806
+ readonly linux: readonly ["x64"];
807
+ readonly darwin: readonly ["x64"];
808
+ readonly win32: readonly ["x64"];
809
+ };
810
+ };
811
+ };
26
812
  };
27
- export default binaries;
813
+ export type BinaryName = keyof typeof binaries;
814
+ export type CategoryName = typeof binaries[BinaryName]['category'];
815
+ declare const BinaryConfigMap: Record<BinaryName, BinaryTaskConfig>;
816
+ export default BinaryConfigMap;