@js-utils-kit/constants 0.2.0 โ†’ 0.3.0

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/index.d.mts CHANGED
@@ -131,7 +131,7 @@ declare const COMMIT_SCOPE_VALUES: CommitScope[];
131
131
  declare const COMMIT_TYPES: {
132
132
  readonly feat: {
133
133
  readonly type: "feat";
134
- readonly title: "Feature";
134
+ readonly title: "Features";
135
135
  readonly icon: "โœจ";
136
136
  readonly description: "Introduce a new feature";
137
137
  readonly allowsBreakingChange: true;
@@ -141,7 +141,7 @@ declare const COMMIT_TYPES: {
141
141
  };
142
142
  readonly fix: {
143
143
  readonly type: "fix";
144
- readonly title: "Bug Fix";
144
+ readonly title: "Bug Fixes";
145
145
  readonly icon: "๐Ÿ›";
146
146
  readonly description: "Fix a bug";
147
147
  readonly allowsBreakingChange: true;
@@ -161,7 +161,7 @@ declare const COMMIT_TYPES: {
161
161
  };
162
162
  readonly style: {
163
163
  readonly type: "style";
164
- readonly title: "Style";
164
+ readonly title: "Styling";
165
165
  readonly icon: "๐ŸŽจ";
166
166
  readonly description: "Formatting or style changes that do not affect code behavior";
167
167
  readonly allowsBreakingChange: false;
@@ -171,7 +171,7 @@ declare const COMMIT_TYPES: {
171
171
  };
172
172
  readonly refactor: {
173
173
  readonly type: "refactor";
174
- readonly title: "Refactor";
174
+ readonly title: "Refactors";
175
175
  readonly icon: "๐Ÿงน";
176
176
  readonly description: "Code change that neither fixes a bug nor adds a feature";
177
177
  readonly allowsBreakingChange: true;
@@ -181,7 +181,7 @@ declare const COMMIT_TYPES: {
181
181
  };
182
182
  readonly perf: {
183
183
  readonly type: "perf";
184
- readonly title: "Performance";
184
+ readonly title: "Performance Improvements";
185
185
  readonly icon: "โšก";
186
186
  readonly description: "Improve performance";
187
187
  readonly allowsBreakingChange: true;
@@ -201,7 +201,7 @@ declare const COMMIT_TYPES: {
201
201
  };
202
202
  readonly build: {
203
203
  readonly type: "build";
204
- readonly title: "Build";
204
+ readonly title: "Build System";
205
205
  readonly icon: "๐Ÿ—๏ธ";
206
206
  readonly description: "Changes affecting build system or dependencies";
207
207
  readonly allowsBreakingChange: false;
@@ -211,7 +211,7 @@ declare const COMMIT_TYPES: {
211
211
  };
212
212
  readonly ci: {
213
213
  readonly type: "ci";
214
- readonly title: "CI";
214
+ readonly title: "Continuous Integration";
215
215
  readonly icon: "๐Ÿค–";
216
216
  readonly description: "CI/CD related changes";
217
217
  readonly allowsBreakingChange: false;
@@ -221,7 +221,7 @@ declare const COMMIT_TYPES: {
221
221
  };
222
222
  readonly chore: {
223
223
  readonly type: "chore";
224
- readonly title: "Chore";
224
+ readonly title: "Chores";
225
225
  readonly icon: "๐Ÿ”ง";
226
226
  readonly description: "Maintenance tasks";
227
227
  readonly allowsBreakingChange: false;
@@ -231,7 +231,7 @@ declare const COMMIT_TYPES: {
231
231
  };
232
232
  readonly revert: {
233
233
  readonly type: "revert";
234
- readonly title: "Revert";
234
+ readonly title: "Reverts";
235
235
  readonly icon: "โช";
236
236
  readonly description: "Revert a previous commit";
237
237
  readonly allowsBreakingChange: false;
@@ -241,7 +241,7 @@ declare const COMMIT_TYPES: {
241
241
  };
242
242
  readonly deps: {
243
243
  readonly type: "deps";
244
- readonly title: "Dependencies";
244
+ readonly title: "Dependency Updates";
245
245
  readonly icon: "๐Ÿ“ฆ";
246
246
  readonly description: "Update, add, or remove dependencies";
247
247
  readonly allowsBreakingChange: false;
@@ -261,7 +261,7 @@ declare const COMMIT_TYPES: {
261
261
  };
262
262
  readonly security: {
263
263
  readonly type: "security";
264
- readonly title: "Security";
264
+ readonly title: "Security Fixes";
265
265
  readonly icon: "๐Ÿ”’";
266
266
  readonly description: "Security fixes or vulnerability mitigation";
267
267
  readonly allowsBreakingChange: true;
@@ -271,7 +271,7 @@ declare const COMMIT_TYPES: {
271
271
  };
272
272
  readonly types: {
273
273
  readonly type: "types";
274
- readonly title: "Types";
274
+ readonly title: "Type Changes";
275
275
  readonly icon: "๐Ÿ“";
276
276
  readonly description: "Type definitions or TypeScript-related changes";
277
277
  readonly allowsBreakingChange: false;
@@ -281,7 +281,7 @@ declare const COMMIT_TYPES: {
281
281
  };
282
282
  readonly lint: {
283
283
  readonly type: "lint";
284
- readonly title: "Lint";
284
+ readonly title: "Linting";
285
285
  readonly icon: "๐Ÿงน";
286
286
  readonly description: "Linting rules or fixes";
287
287
  readonly allowsBreakingChange: false;
@@ -291,7 +291,7 @@ declare const COMMIT_TYPES: {
291
291
  };
292
292
  readonly format: {
293
293
  readonly type: "format";
294
- readonly title: "Format";
294
+ readonly title: "Formatting";
295
295
  readonly icon: "๐Ÿ–Œ๏ธ";
296
296
  readonly description: "Code formatting changes (prettier, etc.)";
297
297
  readonly allowsBreakingChange: false;
@@ -301,7 +301,7 @@ declare const COMMIT_TYPES: {
301
301
  };
302
302
  readonly release: {
303
303
  readonly type: "release";
304
- readonly title: "Release";
304
+ readonly title: "Release Process";
305
305
  readonly icon: "๐Ÿท๏ธ";
306
306
  readonly description: "Release-related changes (versioning, tags, changelog)";
307
307
  readonly allowsBreakingChange: false;
@@ -311,7 +311,7 @@ declare const COMMIT_TYPES: {
311
311
  };
312
312
  readonly meta: {
313
313
  readonly type: "meta";
314
- readonly title: "Meta";
314
+ readonly title: "Repository Meta";
315
315
  readonly icon: "๐Ÿงฉ";
316
316
  readonly description: "Repository metadata (README, templates, tooling)";
317
317
  readonly allowsBreakingChange: false;
@@ -331,7 +331,7 @@ declare const COMMIT_TYPES: {
331
331
  };
332
332
  readonly hotfix: {
333
333
  readonly type: "hotfix";
334
- readonly title: "Hotfix";
334
+ readonly title: "Hotfixes";
335
335
  readonly icon: "๐Ÿš‘";
336
336
  readonly description: "Critical production fix applied quickly";
337
337
  readonly allowsBreakingChange: true;
@@ -341,7 +341,7 @@ declare const COMMIT_TYPES: {
341
341
  };
342
342
  readonly version: {
343
343
  readonly type: "version";
344
- readonly title: "Version";
344
+ readonly title: "Versioning";
345
345
  readonly icon: "๐Ÿ”ข";
346
346
  readonly description: "Version bumps without code changes";
347
347
  readonly allowsBreakingChange: false;
@@ -351,7 +351,7 @@ declare const COMMIT_TYPES: {
351
351
  };
352
352
  readonly workflow: {
353
353
  readonly type: "workflow";
354
- readonly title: "Workflow";
354
+ readonly title: "Workflows";
355
355
  readonly icon: "๐Ÿ”";
356
356
  readonly description: "Workflow-related changes (GitHub Actions, hooks)";
357
357
  readonly allowsBreakingChange: false;
@@ -361,7 +361,7 @@ declare const COMMIT_TYPES: {
361
361
  };
362
362
  readonly package: {
363
363
  readonly type: "package";
364
- readonly title: "Package";
364
+ readonly title: "Package Changes";
365
365
  readonly icon: "๐Ÿ“ฆ";
366
366
  readonly description: "Package-level changes in a monorepo";
367
367
  readonly allowsBreakingChange: false;
@@ -371,7 +371,7 @@ declare const COMMIT_TYPES: {
371
371
  };
372
372
  readonly workspace: {
373
373
  readonly type: "workspace";
374
- readonly title: "Workspace";
374
+ readonly title: "Workspace Changes";
375
375
  readonly icon: "๐Ÿงฑ";
376
376
  readonly description: "Workspace or monorepo configuration changes";
377
377
  readonly allowsBreakingChange: false;
@@ -381,7 +381,7 @@ declare const COMMIT_TYPES: {
381
381
  };
382
382
  readonly api: {
383
383
  readonly type: "api";
384
- readonly title: "API";
384
+ readonly title: "API Changes";
385
385
  readonly icon: "๐Ÿ”Œ";
386
386
  readonly description: "API surface or contract changes";
387
387
  readonly allowsBreakingChange: true;
@@ -391,7 +391,7 @@ declare const COMMIT_TYPES: {
391
391
  };
392
392
  readonly 'BREAKING CHANGE': {
393
393
  readonly type: "BREAKING CHANGE";
394
- readonly title: "Breaking Change";
394
+ readonly title: "Breaking Changes";
395
395
  readonly icon: "๐Ÿ’ฅ";
396
396
  readonly description: "An explicit breaking change as defined by the Conventional Commits specification";
397
397
  readonly allowsBreakingChange: true;
@@ -401,7 +401,7 @@ declare const COMMIT_TYPES: {
401
401
  };
402
402
  readonly db: {
403
403
  readonly type: "db";
404
- readonly title: "Database";
404
+ readonly title: "Database Changes";
405
405
  readonly icon: "๐Ÿ—„๏ธ";
406
406
  readonly description: "Database schema, migrations, or queries";
407
407
  readonly allowsBreakingChange: true;
@@ -411,7 +411,7 @@ declare const COMMIT_TYPES: {
411
411
  };
412
412
  readonly data: {
413
413
  readonly type: "data";
414
- readonly title: "Data";
414
+ readonly title: "Data Changes";
415
415
  readonly icon: "๐Ÿ“Š";
416
416
  readonly description: "Data fixes, seeds, or transformations";
417
417
  readonly allowsBreakingChange: false;
@@ -421,7 +421,7 @@ declare const COMMIT_TYPES: {
421
421
  };
422
422
  readonly ui: {
423
423
  readonly type: "ui";
424
- readonly title: "UI";
424
+ readonly title: "UI Changes";
425
425
  readonly icon: "๐ŸŽจ";
426
426
  readonly description: "UI-related changes";
427
427
  readonly allowsBreakingChange: false;
@@ -431,7 +431,7 @@ declare const COMMIT_TYPES: {
431
431
  };
432
432
  readonly ux: {
433
433
  readonly type: "ux";
434
- readonly title: "UX";
434
+ readonly title: "UX Improvements";
435
435
  readonly icon: "๐Ÿง ";
436
436
  readonly description: "User experience improvements";
437
437
  readonly allowsBreakingChange: false;
@@ -441,7 +441,7 @@ declare const COMMIT_TYPES: {
441
441
  };
442
442
  readonly accessibility: {
443
443
  readonly type: "accessibility";
444
- readonly title: "Accessibility";
444
+ readonly title: "Accessibility Improvements";
445
445
  readonly icon: "โ™ฟ";
446
446
  readonly description: "Accessibility improvements (a11y)";
447
447
  readonly allowsBreakingChange: false;
@@ -451,7 +451,7 @@ declare const COMMIT_TYPES: {
451
451
  };
452
452
  readonly backend: {
453
453
  readonly type: "backend";
454
- readonly title: "Backend";
454
+ readonly title: "Backend Changes";
455
455
  readonly icon: "๐Ÿ–ฅ๏ธ";
456
456
  readonly description: "Backend logic changes";
457
457
  readonly allowsBreakingChange: true;
@@ -461,7 +461,7 @@ declare const COMMIT_TYPES: {
461
461
  };
462
462
  readonly frontend: {
463
463
  readonly type: "frontend";
464
- readonly title: "Frontend";
464
+ readonly title: "Frontend Changes";
465
465
  readonly icon: "๐ŸŒ";
466
466
  readonly description: "Frontend logic changes";
467
467
  readonly allowsBreakingChange: false;
@@ -491,7 +491,7 @@ declare const COMMIT_TYPES: {
491
491
  };
492
492
  readonly stability: {
493
493
  readonly type: "stability";
494
- readonly title: "Stability";
494
+ readonly title: "Stability Improvements";
495
495
  readonly icon: "๐Ÿ›ก๏ธ";
496
496
  readonly description: "Stability and reliability improvements";
497
497
  readonly allowsBreakingChange: false;
@@ -501,7 +501,7 @@ declare const COMMIT_TYPES: {
501
501
  };
502
502
  readonly optimization: {
503
503
  readonly type: "optimization";
504
- readonly title: "Optimization";
504
+ readonly title: "Optimization Improvements";
505
505
  readonly icon: "๐Ÿš€";
506
506
  readonly description: "Code or runtime optimizations";
507
507
  readonly allowsBreakingChange: false;
@@ -551,7 +551,7 @@ declare const COMMIT_TYPES: {
551
551
  };
552
552
  readonly migration: {
553
553
  readonly type: "migration";
554
- readonly title: "Migration";
554
+ readonly title: "Migrations";
555
555
  readonly icon: "๐Ÿšš";
556
556
  readonly description: "Migration-related changes";
557
557
  readonly allowsBreakingChange: true;
@@ -561,7 +561,7 @@ declare const COMMIT_TYPES: {
561
561
  };
562
562
  readonly rollback: {
563
563
  readonly type: "rollback";
564
- readonly title: "Rollback";
564
+ readonly title: "Rollbacks";
565
565
  readonly icon: "โ†ฉ๏ธ";
566
566
  readonly description: "Rollback changes after a bad release";
567
567
  readonly allowsBreakingChange: false;
@@ -787,6 +787,85 @@ declare const PLANCK = 6.62607015e-34;
787
787
  */
788
788
  declare const GAS = 8.314462618;
789
789
  //#endregion
790
+ //#region src/shebang.d.ts
791
+ declare const SHEBANG: {
792
+ readonly SH: "#!/bin/sh";
793
+ readonly BASH: "#!/bin/bash";
794
+ readonly ENV_BASH: "#!/usr/bin/env bash";
795
+ readonly DASH: "#!/bin/dash";
796
+ readonly ASH: "#!/bin/ash";
797
+ readonly KSH: "#!/bin/ksh";
798
+ readonly ZSH: "#!/usr/bin/env zsh";
799
+ readonly FISH: "#!/usr/bin/env fish";
800
+ readonly NODE: "#!/usr/bin/env node";
801
+ readonly NODE_DIRECT: "#!/usr/bin/node";
802
+ readonly NODE_NO_WARNINGS: "#!/usr/bin/env -S node --no-warnings";
803
+ readonly NODE_INSPECT: "#!/usr/bin/env -S node --inspect";
804
+ readonly NODE_LOADER_TS_NODE: "#!/usr/bin/env -S node --loader ts-node/esm";
805
+ readonly NODE_EXPERIMENTAL_MODULES: "#!/usr/bin/env -S node --experimental-modules";
806
+ readonly JITI: "#!/usr/bin/env jiti";
807
+ readonly TS_NODE: "#!/usr/bin/env ts-node";
808
+ readonly TS_NODE_ESM: "#!/usr/bin/env ts-node-esm";
809
+ readonly TSX: "#!/usr/bin/env tsx";
810
+ readonly DENO: "#!/usr/bin/env deno";
811
+ readonly DENO_RUN: "#!/usr/bin/env -S deno run";
812
+ readonly DENO_ALLOW_ALL: "#!/usr/bin/env -S deno run --allow-all";
813
+ readonly DENO_ALLOW_ENV: "#!/usr/bin/env -S deno run --allow-env";
814
+ readonly DENO_ALLOW_NET: "#!/usr/bin/env -S deno run --allow-net";
815
+ readonly DENO_ALLOW_READ: "#!/usr/bin/env -S deno run --allow-read";
816
+ readonly DENO_ALLOW_WRITE: "#!/usr/bin/env -S deno run --allow-write";
817
+ readonly DENO_ALLOW_FS: "#!/usr/bin/env -S deno run --allow-read --allow-write";
818
+ readonly DENO_EXT_JS: "#!/usr/bin/env -S deno run --ext=js";
819
+ readonly BUN: "#!/usr/bin/env bun";
820
+ readonly BUN_RUN: "#!/usr/bin/env -S bun run";
821
+ readonly PYTHON: "#!/usr/bin/python";
822
+ readonly ENV_PYTHON: "#!/usr/bin/env python";
823
+ readonly PYTHON3: "#!/usr/bin/python3";
824
+ readonly ENV_PYTHON3: "#!/usr/bin/env python3";
825
+ readonly PYPY: "#!/usr/bin/env pypy";
826
+ readonly PYPY3: "#!/usr/bin/env pypy3";
827
+ readonly RUBY: "#!/usr/bin/ruby";
828
+ readonly ENV_RUBY: "#!/usr/bin/env ruby";
829
+ readonly PERL: "#!/usr/bin/perl";
830
+ readonly ENV_PERL: "#!/usr/bin/env perl";
831
+ readonly PHP: "#!/usr/bin/php";
832
+ readonly ENV_PHP: "#!/usr/bin/env php";
833
+ readonly LUA: "#!/usr/bin/lua";
834
+ readonly ENV_LUA: "#!/usr/bin/env lua";
835
+ readonly TCLSH: "#!/usr/bin/tclsh";
836
+ readonly ENV_TCLSH: "#!/usr/bin/env tclsh";
837
+ readonly RSCRIPT: "#!/usr/bin/env Rscript";
838
+ readonly JULIA: "#!/usr/bin/env julia";
839
+ readonly CARGO_SCRIPT: "#!/usr/bin/env -S cargo script";
840
+ readonly RUST_SCRIPT: "#!/usr/bin/env -S rust-script";
841
+ readonly JAVA: "#!/usr/bin/env java";
842
+ readonly SWIFT: "#!/usr/bin/env swift";
843
+ readonly POWERSHELL: "#!/usr/bin/pwsh";
844
+ readonly ENV_POWERSHELL: "#!/usr/bin/env pwsh";
845
+ readonly ENV: "#!/usr/bin/env";
846
+ readonly ENV_SPLIT: "#!/usr/bin/env -S";
847
+ readonly TRUE: "#!/bin/true";
848
+ readonly FALSE: "#!/bin/false";
849
+ };
850
+ //#endregion
851
+ //#region src/spdx-license.d.ts
852
+ type SPDX = Record<string, {
853
+ id: string;
854
+ name: string;
855
+ referenceNumber: number;
856
+ isOsiApproved: boolean;
857
+ isFsfLibre?: boolean;
858
+ isDeprecated: boolean;
859
+ url: string;
860
+ }>;
861
+ declare const SPDX_LICENSE_IDENTIFIERS: readonly ["0BSD", "3D-Slicer-1.0", "AAL", "Abstyles", "AdaCore-doc", "Adobe-2006", "Adobe-Display-PostScript", "Adobe-Glyph", "Adobe-Utopia", "ADSL", "Advanced-Cryptics-Dictionary", "AFL-1.1", "AFL-1.2", "AFL-2.0", "AFL-2.1", "AFL-3.0", "Afmparse", "AGPL-1.0", "AGPL-1.0-only", "AGPL-1.0-or-later", "AGPL-3.0", "AGPL-3.0-only", "AGPL-3.0-or-later", "Aladdin", "ALGLIB-Documentation", "AMD-newlib", "AMDPLPA", "AML", "AML-glslang", "AMPAS", "ANTLR-PD", "ANTLR-PD-fallback", "any-OSI", "any-OSI-perl-modules", "Apache-1.0", "Apache-1.1", "Apache-2.0", "APAFML", "APL-1.0", "App-s2p", "APSL-1.0", "APSL-1.1", "APSL-1.2", "APSL-2.0", "Arphic-1999", "Artistic-1.0", "Artistic-1.0-cl8", "Artistic-1.0-Perl", "Artistic-2.0", "Artistic-dist", "Aspell-RU", "ASWF-Digital-Assets-1.0", "ASWF-Digital-Assets-1.1", "Baekmuk", "Bahyph", "Barr", "bcrypt-Solar-Designer", "Beerware", "Bitstream-Charter", "Bitstream-Vera", "BitTorrent-1.0", "BitTorrent-1.1", "blessing", "BlueOak-1.0.0", "Boehm-GC", "Boehm-GC-without-fee", "BOLA-1.1", "Borceux", "Brian-Gladman-2-Clause", "Brian-Gladman-3-Clause", "BSD-1-Clause", "BSD-2-Clause", "BSD-2-Clause-Darwin", "BSD-2-Clause-first-lines", "BSD-2-Clause-FreeBSD", "BSD-2-Clause-NetBSD", "BSD-2-Clause-Patent", "BSD-2-Clause-pkgconf-disclaimer", "BSD-2-Clause-Views", "BSD-3-Clause", "BSD-3-Clause-acpica", "BSD-3-Clause-Attribution", "BSD-3-Clause-Clear", "BSD-3-Clause-flex", "BSD-3-Clause-HP", "BSD-3-Clause-LBNL", "BSD-3-Clause-Modification", "BSD-3-Clause-No-Military-License", "BSD-3-Clause-No-Nuclear-License", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause-No-Nuclear-Warranty", "BSD-3-Clause-Open-MPI", "BSD-3-Clause-Sun", "BSD-3-Clause-Tso", "BSD-4-Clause", "BSD-4-Clause-Shortened", "BSD-4-Clause-UC", "BSD-4.3RENO", "BSD-4.3TAHOE", "BSD-Advertising-Acknowledgement", "BSD-Attribution-HPND-disclaimer", "BSD-Inferno-Nettverk", "BSD-Mark-Modifications", "BSD-Protection", "BSD-Source-beginning-file", "BSD-Source-Code", "BSD-Systemics", "BSD-Systemics-W3Works", "BSL-1.0", "Buddy", "BUSL-1.1", "bzip2-1.0.5", "bzip2-1.0.6", "C-UDA-1.0", "CAL-1.0", "CAL-1.0-Combined-Work-Exception", "Caldera", "Caldera-no-preamble", "CAPEC-tou", "Catharon", "CATOSL-1.1", "CC-BY-1.0", "CC-BY-2.0", "CC-BY-2.5", "CC-BY-2.5-AU", "CC-BY-3.0", "CC-BY-3.0-AT", "CC-BY-3.0-AU", "CC-BY-3.0-DE", "CC-BY-3.0-IGO", "CC-BY-3.0-NL", "CC-BY-3.0-US", "CC-BY-4.0", "CC-BY-NC-1.0", "CC-BY-NC-2.0", "CC-BY-NC-2.5", "CC-BY-NC-3.0", "CC-BY-NC-3.0-DE", "CC-BY-NC-4.0", "CC-BY-NC-ND-1.0", "CC-BY-NC-ND-2.0", "CC-BY-NC-ND-2.5", "CC-BY-NC-ND-3.0", "CC-BY-NC-ND-3.0-DE", "CC-BY-NC-ND-3.0-IGO", "CC-BY-NC-ND-4.0", "CC-BY-NC-SA-1.0", "CC-BY-NC-SA-2.0", "CC-BY-NC-SA-2.0-DE", "CC-BY-NC-SA-2.0-FR", "CC-BY-NC-SA-2.0-UK", "CC-BY-NC-SA-2.5", "CC-BY-NC-SA-3.0", "CC-BY-NC-SA-3.0-DE", "CC-BY-NC-SA-3.0-IGO", "CC-BY-NC-SA-4.0", "CC-BY-ND-1.0", "CC-BY-ND-2.0", "CC-BY-ND-2.5", "CC-BY-ND-3.0", "CC-BY-ND-3.0-DE", "CC-BY-ND-4.0", "CC-BY-SA-1.0", "CC-BY-SA-2.0", "CC-BY-SA-2.0-UK", "CC-BY-SA-2.1-JP", "CC-BY-SA-2.5", "CC-BY-SA-3.0", "CC-BY-SA-3.0-AT", "CC-BY-SA-3.0-DE", "CC-BY-SA-3.0-IGO", "CC-BY-SA-4.0", "CC-PDDC", "CC-PDM-1.0", "CC-SA-1.0", "CC0-1.0", "CDDL-1.0", "CDDL-1.1", "CDL-1.0", "CDLA-Permissive-1.0", "CDLA-Permissive-2.0", "CDLA-Sharing-1.0", "CECILL-1.0", "CECILL-1.1", "CECILL-2.0", "CECILL-2.1", "CECILL-B", "CECILL-C", "CERN-OHL-1.1", "CERN-OHL-1.2", "CERN-OHL-P-2.0", "CERN-OHL-S-2.0", "CERN-OHL-W-2.0", "CFITSIO", "check-cvs", "checkmk", "ClArtistic", "Clips", "CMU-Mach", "CMU-Mach-nodoc", "CNRI-Jython", "CNRI-Python", "CNRI-Python-GPL-Compatible", "COIL-1.0", "Community-Spec-1.0", "Condor-1.1", "copyleft-next-0.3.0", "copyleft-next-0.3.1", "Cornell-Lossless-JPEG", "CPAL-1.0", "CPL-1.0", "CPOL-1.02", "Cronyx", "Crossword", "CryptoSwift", "CrystalStacker", "CUA-OPL-1.0", "Cube", "curl", "cve-tou", "D-FSL-1.0", "DEC-3-Clause", "diffmark", "DL-DE-BY-2.0", "DL-DE-ZERO-2.0", "DOC", "DocBook-DTD", "DocBook-Schema", "DocBook-Stylesheet", "DocBook-XML", "Dotseqn", "DRL-1.0", "DRL-1.1", "DSDP", "dtoa", "dvipdfm", "ECL-1.0", "ECL-2.0", "eCos-2.0", "EFL-1.0", "EFL-2.0", "eGenix", "Elastic-2.0", "Entessa", "EPICS", "EPL-1.0", "EPL-2.0", "ErlPL-1.1", "ESA-PL-permissive-2.4", "ESA-PL-strong-copyleft-2.4", "ESA-PL-weak-copyleft-2.4", "etalab-2.0", "EUDatagrid", "EUPL-1.0", "EUPL-1.1", "EUPL-1.2", "Eurosym", "Fair", "FBM", "FDK-AAC", "Ferguson-Twofish", "Frameworx-1.0", "FreeBSD-DOC", "FreeImage", "FSFAP", "FSFAP-no-warranty-disclaimer", "FSFUL", "FSFULLR", "FSFULLRSD", "FSFULLRWD", "FSL-1.1-ALv2", "FSL-1.1-MIT", "FTL", "Furuseth", "fwlw", "Game-Programming-Gems", "GCR-docs", "GD", "generic-xts", "GFDL-1.1", "GFDL-1.1-invariants-only", "GFDL-1.1-invariants-or-later", "GFDL-1.1-no-invariants-only", "GFDL-1.1-no-invariants-or-later", "GFDL-1.1-only", "GFDL-1.1-or-later", "GFDL-1.2", "GFDL-1.2-invariants-only", "GFDL-1.2-invariants-or-later", "GFDL-1.2-no-invariants-only", "GFDL-1.2-no-invariants-or-later", "GFDL-1.2-only", "GFDL-1.2-or-later", "GFDL-1.3", "GFDL-1.3-invariants-only", "GFDL-1.3-invariants-or-later", "GFDL-1.3-no-invariants-only", "GFDL-1.3-no-invariants-or-later", "GFDL-1.3-only", "GFDL-1.3-or-later", "Giftware", "GL2PS", "Glide", "Glulxe", "GLWTPL", "gnuplot", "GPL-1.0", "GPL-1.0+", "GPL-1.0-only", "GPL-1.0-or-later", "GPL-2.0", "GPL-2.0+", "GPL-2.0-only", "GPL-2.0-or-later", "GPL-2.0-with-autoconf-exception", "GPL-2.0-with-bison-exception", "GPL-2.0-with-classpath-exception", "GPL-2.0-with-font-exception", "GPL-2.0-with-GCC-exception", "GPL-3.0", "GPL-3.0+", "GPL-3.0-only", "GPL-3.0-or-later", "GPL-3.0-with-autoconf-exception", "GPL-3.0-with-GCC-exception", "Graphics-Gems", "gSOAP-1.3b", "gtkbook", "Gutmann", "HaskellReport", "HDF5", "hdparm", "HIDAPI", "Hippocratic-2.1", "HP-1986", "HP-1989", "HPND", "HPND-DEC", "HPND-doc", "HPND-doc-sell", "HPND-export-US", "HPND-export-US-acknowledgement", "HPND-export-US-modify", "HPND-export2-US", "HPND-Fenneberg-Livingston", "HPND-INRIA-IMAG", "HPND-Intel", "HPND-Kevlin-Henney", "HPND-Markus-Kuhn", "HPND-merchantability-variant", "HPND-MIT-disclaimer", "HPND-Netrek", "HPND-Pbmplus", "HPND-sell-MIT-disclaimer-xserver", "HPND-sell-regexpr", "HPND-sell-variant", "HPND-sell-variant-critical-systems", "HPND-sell-variant-MIT-disclaimer", "HPND-sell-variant-MIT-disclaimer-rev", "HPND-SMC", "HPND-UC", "HPND-UC-export-US", "HTMLTIDY", "hyphen-bulgarian", "IBM-pibs", "ICU", "IEC-Code-Components-EULA", "IJG", "IJG-short", "ImageMagick", "iMatix", "Imlib2", "Info-ZIP", "Inner-Net-2.0", "InnoSetup", "Intel", "Intel-ACPI", "Interbase-1.0", "IPA", "IPL-1.0", "ISC", "ISC-Veillard", "ISO-permission", "Jam", "JasPer-2.0", "jove", "JPL-image", "JPNIC", "JSON", "Kastrup", "Kazlib", "Knuth-CTAN", "LAL-1.2", "LAL-1.3", "Latex2e", "Latex2e-translated-notice", "Leptonica", "LGPL-2.0", "LGPL-2.0+", "LGPL-2.0-only", "LGPL-2.0-or-later", "LGPL-2.1", "LGPL-2.1+", "LGPL-2.1-only", "LGPL-2.1-or-later", "LGPL-3.0", "LGPL-3.0+", "LGPL-3.0-only", "LGPL-3.0-or-later", "LGPLLR", "Libpng", "libpng-1.6.35", "libpng-2.0", "libselinux-1.0", "libtiff", "libutil-David-Nugent", "LiLiQ-P-1.1", "LiLiQ-R-1.1", "LiLiQ-Rplus-1.1", "Linux-man-pages-1-para", "Linux-man-pages-copyleft", "Linux-man-pages-copyleft-2-para", "Linux-man-pages-copyleft-var", "Linux-OpenIB", "LOOP", "LPD-document", "LPL-1.0", "LPL-1.02", "LPPL-1.0", "LPPL-1.1", "LPPL-1.2", "LPPL-1.3a", "LPPL-1.3c", "lsof", "Lucida-Bitmap-Fonts", "LZMA-SDK-9.11-to-9.20", "LZMA-SDK-9.22", "Mackerras-3-Clause", "Mackerras-3-Clause-acknowledgment", "magaz", "mailprio", "MakeIndex", "man2html", "Martin-Birgmeier", "McPhee-slideshow", "metamail", "Minpack", "MIPS", "MirOS", "MIT", "MIT-0", "MIT-advertising", "MIT-Click", "MIT-CMU", "MIT-enna", "MIT-feh", "MIT-Festival", "MIT-Khronos-old", "MIT-Modern-Variant", "MIT-open-group", "MIT-STK", "MIT-testregex", "MIT-Wu", "MITNFA", "MMIXware", "MMPL-1.0.1", "Motosoto", "MPEG-SSG", "mpi-permissive", "mpich2", "MPL-1.0", "MPL-1.1", "MPL-2.0", "MPL-2.0-no-copyleft-exception", "mplus", "MS-LPL", "MS-PL", "MS-RL", "MTLL", "MulanPSL-1.0", "MulanPSL-2.0", "Multics", "Mup", "NAIST-2003", "NASA-1.3", "Naumen", "NBPL-1.0", "NCBI-PD", "NCGL-UK-2.0", "NCL", "NCSA", "Net-SNMP", "NetCDF", "Newsletr", "NGPL", "ngrep", "NICTA-1.0", "NIST-PD", "NIST-PD-fallback", "NIST-PD-TNT", "NIST-Software", "NLOD-1.0", "NLOD-2.0", "NLPL", "Nokia", "NOSL", "Noweb", "NPL-1.0", "NPL-1.1", "NPOSL-3.0", "NRL", "NTIA-PD", "NTP", "NTP-0", "Nunit", "O-UDA-1.0", "OAR", "OCCT-PL", "OCLC-2.0", "ODbL-1.0", "ODC-By-1.0", "OFFIS", "OFL-1.0", "OFL-1.0-no-RFN", "OFL-1.0-RFN", "OFL-1.1", "OFL-1.1-no-RFN", "OFL-1.1-RFN", "OGC-1.0", "OGDL-Taiwan-1.0", "OGL-Canada-2.0", "OGL-UK-1.0", "OGL-UK-2.0", "OGL-UK-3.0", "OGTSL", "OLDAP-1.1", "OLDAP-1.2", "OLDAP-1.3", "OLDAP-1.4", "OLDAP-2.0", "OLDAP-2.0.1", "OLDAP-2.1", "OLDAP-2.2", "OLDAP-2.2.1", "OLDAP-2.2.2", "OLDAP-2.3", "OLDAP-2.4", "OLDAP-2.5", "OLDAP-2.6", "OLDAP-2.7", "OLDAP-2.8", "OLFL-1.3", "OML", "OpenMDW-1.0", "OpenPBS-2.3", "OpenSSL", "OpenSSL-standalone", "OpenVision", "OPL-1.0", "OPL-UK-3.0", "OPUBL-1.0", "OSC-1.0", "OSET-PL-2.1", "OSL-1.0", "OSL-1.1", "OSL-2.0", "OSL-2.1", "OSL-3.0", "OSSP", "PADL", "ParaType-Free-Font-1.3", "Parity-6.0.0", "Parity-7.0.0", "PDDL-1.0", "PHP-3.0", "PHP-3.01", "Pixar", "pkgconf", "Plexus", "pnmstitch", "PolyForm-Noncommercial-1.0.0", "PolyForm-Small-Business-1.0.0", "PostgreSQL", "PPL", "PSF-2.0", "psfrag", "psutils", "Python-2.0", "Python-2.0.1", "python-ldap", "Qhull", "QPL-1.0", "QPL-1.0-INRIA-2004", "radvd", "Rdisc", "RHeCos-1.1", "RPL-1.1", "RPL-1.5", "RPSL-1.0", "RSA-MD", "RSCPL", "Ruby", "Ruby-pty", "SAX-PD", "SAX-PD-2.0", "Saxpath", "SCEA", "SchemeReport", "Sendmail", "Sendmail-8.23", "Sendmail-Open-Source-1.1", "SGI-B-1.0", "SGI-B-1.1", "SGI-B-2.0", "SGI-OpenGL", "SGMLUG-PM", "SGP4", "SHL-0.5", "SHL-0.51", "SimPL-2.0", "SISSL", "SISSL-1.2", "SL", "Sleepycat", "SMAIL-GPL", "SMLNJ", "SMPPL", "SNIA", "snprintf", "SOFA", "softSurfer", "Soundex", "Spencer-86", "Spencer-94", "Spencer-99", "SPL-1.0", "ssh-keyscan", "SSH-OpenSSH", "SSH-short", "SSLeay-standalone", "SSPL-1.0", "StandardML-NJ", "SugarCRM-1.1.3", "SUL-1.0", "Sun-PPP", "Sun-PPP-2000", "SunPro", "SWL", "swrule", "Symlinks", "TAPR-OHL-1.0", "TCL", "TCP-wrappers", "TekHVC", "TermReadKey", "TGPPL-1.0", "ThirdEye", "threeparttable", "TMate", "TORQUE-1.1", "TOSL", "TPDL", "TPL-1.0", "TrustedQSL", "TTWL", "TTYP0", "TU-Berlin-1.0", "TU-Berlin-2.0", "Ubuntu-font-1.0", "UCAR", "UCL-1.0", "ulem", "UMich-Merit", "Unicode-3.0", "Unicode-DFS-2015", "Unicode-DFS-2016", "Unicode-TOU", "UnixCrypt", "Unlicense", "Unlicense-libtelnet", "Unlicense-libwhirlpool", "UnRAR", "UPL-1.0", "URT-RLE", "Vim", "Vixie-Cron", "VOSTROM", "VSL-1.0", "W3C", "W3C-19980720", "W3C-20150513", "w3m", "Watcom-1.0", "Widget-Workshop", "WordNet", "Wsuipa", "WTFNMFPL", "WTFPL", "wwl", "wxWindows", "X11", "X11-distribute-modifications-variant", "X11-no-permit-persons", "X11-swapped", "Xdebug-1.03", "Xerox", "Xfig", "XFree86-1.1", "xinetd", "xkeyboard-config-Zinoviev", "xlock", "Xnet", "xpp", "XSkat", "xzoom", "YPL-1.0", "YPL-1.1", "Zed", "Zeeff", "Zend-2.0", "Zimbra-1.3", "Zimbra-1.4", "Zlib", "zlib-acknowledgement", "ZPL-1.1", "ZPL-2.0", "ZPL-2.1"];
862
+ /**
863
+ * SPDX License Identifiers
864
+ *
865
+ * Source: https://spdx.org/licenses
866
+ */
867
+ declare const SPDX_LICENSE: SPDX;
868
+ //#endregion
790
869
  //#region src/symbols.d.ts
791
870
  /**
792
871
  * New line character.
@@ -865,4 +944,4 @@ declare const DEG_TO_RAD: number;
865
944
  */
866
945
  declare const RAD_TO_DEG: number;
867
946
  //#endregion
868
- export { ALPHANUMERIC, CM_TO_MM, COMMIT_SCOPES, COMMIT_SCOPE_VALUES, COMMIT_TYPES, COMMIT_TYPE_VALUES, CommitScope, CommitType, DAY, DEFAULT_RADIX, DEG_TO_RAD, DIGITS, E, EMPTY_STRING, EPSILON, GAS, GRAVITY, HOUR, HTTP_METHODS, HTTP_STATUS, KG_TO_G, KM_TO_M, LN_10, LN_2, LOG10_E, LOG2_E, LOWERCASE_ALPHABET, MAX_SAFE_INT, MAX_VALUE, MINUTE, MIN_SAFE_INT, MIN_VALUE, MONTH_AVG, M_TO_CM, NEGATIVE_INFINITY, NEW_LINE, PI, PLANCK, POSITIVE_INFINITY, RAD_TO_DEG, SECOND, SPACE, SPEED_OF_LIGHT, SQRT_1_2, SQRT_2, TAB, TAU, TON_TO_KG, UPPERCASE_ALPHABET, WEEK, YEAR };
947
+ export { ALPHANUMERIC, CM_TO_MM, COMMIT_SCOPES, COMMIT_SCOPE_VALUES, COMMIT_TYPES, COMMIT_TYPE_VALUES, CommitScope, CommitType, DAY, DEFAULT_RADIX, DEG_TO_RAD, DIGITS, E, EMPTY_STRING, EPSILON, GAS, GRAVITY, HOUR, HTTP_METHODS, HTTP_STATUS, KG_TO_G, KM_TO_M, LN_10, LN_2, LOG10_E, LOG2_E, LOWERCASE_ALPHABET, MAX_SAFE_INT, MAX_VALUE, MINUTE, MIN_SAFE_INT, MIN_VALUE, MONTH_AVG, M_TO_CM, NEGATIVE_INFINITY, NEW_LINE, PI, PLANCK, POSITIVE_INFINITY, RAD_TO_DEG, SECOND, SHEBANG, SPACE, SPDX, SPDX_LICENSE, SPDX_LICENSE_IDENTIFIERS, SPEED_OF_LIGHT, SQRT_1_2, SQRT_2, TAB, TAU, TON_TO_KG, UPPERCASE_ALPHABET, WEEK, YEAR };