code-languages 1.32.1 → 1.33.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.
Files changed (70) hide show
  1. package/README.md +17 -7
  2. package/dist/api.cjs +428 -6
  3. package/dist/api.d.cts +1 -1
  4. package/dist/api.d.ts +1 -1
  5. package/dist/api.js +428 -6
  6. package/dist/detect-slugs.cjs +10 -0
  7. package/dist/detect-slugs.d.cts +1 -1
  8. package/dist/detect-slugs.d.ts +1 -1
  9. package/dist/detect-slugs.js +10 -0
  10. package/dist/detect.cjs +308 -6
  11. package/dist/detect.js +308 -6
  12. package/dist/index.cjs +438 -6
  13. package/dist/index.d.cts +273 -1
  14. package/dist/index.d.ts +273 -1
  15. package/dist/index.js +439 -7
  16. package/dist/{language-registry-BWMgasX6.d.cts → language-registry-CAI9lyyx.d.cts} +30 -0
  17. package/dist/{language-registry-BWMgasX6.d.ts → language-registry-CAI9lyyx.d.ts} +30 -0
  18. package/dist/languages/eiffel.cjs +1 -1
  19. package/dist/languages/eiffel.js +1 -1
  20. package/dist/languages/hocon.cjs +1 -1
  21. package/dist/languages/hocon.js +1 -1
  22. package/dist/languages/json5.cjs +1 -1
  23. package/dist/languages/json5.js +1 -1
  24. package/dist/languages/lobster.cjs +32 -0
  25. package/dist/languages/lobster.d.cts +29 -0
  26. package/dist/languages/lobster.d.ts +29 -0
  27. package/dist/languages/lobster.js +30 -0
  28. package/dist/languages/logo.cjs +32 -0
  29. package/dist/languages/logo.d.cts +29 -0
  30. package/dist/languages/logo.d.ts +29 -0
  31. package/dist/languages/logo.js +30 -0
  32. package/dist/languages/mercury.cjs +33 -0
  33. package/dist/languages/mercury.d.cts +30 -0
  34. package/dist/languages/mercury.d.ts +30 -0
  35. package/dist/languages/mercury.js +31 -0
  36. package/dist/languages/modula-2.cjs +32 -0
  37. package/dist/languages/modula-2.d.cts +29 -0
  38. package/dist/languages/modula-2.d.ts +29 -0
  39. package/dist/languages/modula-2.js +30 -0
  40. package/dist/languages/mustache.cjs +1 -1
  41. package/dist/languages/mustache.js +1 -1
  42. package/dist/languages/nunjucks.cjs +1 -1
  43. package/dist/languages/nunjucks.js +1 -1
  44. package/dist/languages/nushell.cjs +1 -1
  45. package/dist/languages/nushell.js +1 -1
  46. package/dist/languages/oberon.cjs +32 -0
  47. package/dist/languages/oberon.d.cts +29 -0
  48. package/dist/languages/oberon.d.ts +29 -0
  49. package/dist/languages/oberon.js +30 -0
  50. package/dist/languages/pl-i.cjs +32 -0
  51. package/dist/languages/pl-i.d.cts +29 -0
  52. package/dist/languages/pl-i.d.ts +29 -0
  53. package/dist/languages/pl-i.js +30 -0
  54. package/dist/languages/rebol.cjs +32 -0
  55. package/dist/languages/rebol.d.cts +29 -0
  56. package/dist/languages/rebol.d.ts +29 -0
  57. package/dist/languages/rebol.js +30 -0
  58. package/dist/languages/red.cjs +32 -0
  59. package/dist/languages/red.d.cts +29 -0
  60. package/dist/languages/red.d.ts +29 -0
  61. package/dist/languages/red.js +30 -0
  62. package/dist/languages/roc.cjs +33 -0
  63. package/dist/languages/roc.d.cts +30 -0
  64. package/dist/languages/roc.d.ts +30 -0
  65. package/dist/languages/roc.js +31 -0
  66. package/dist/languages/self.cjs +32 -0
  67. package/dist/languages/self.d.cts +29 -0
  68. package/dist/languages/self.d.ts +29 -0
  69. package/dist/languages/self.js +30 -0
  70. package/package.json +51 -1
@@ -338,6 +338,12 @@ declare const languageIndex: readonly [{
338
338
  }, {
339
339
  readonly slug: "llvm-ir";
340
340
  readonly extensions: readonly [".ll", ".bc"];
341
+ }, {
342
+ readonly slug: "lobster";
343
+ readonly extensions: readonly [".lobster"];
344
+ }, {
345
+ readonly slug: "logo";
346
+ readonly extensions: readonly [".logo", ".lgo"];
341
347
  }, {
342
348
  readonly slug: "lua";
343
349
  readonly extensions: readonly [".lua", ".rockspec"];
@@ -368,12 +374,18 @@ declare const languageIndex: readonly [{
368
374
  }, {
369
375
  readonly slug: "meson";
370
376
  readonly extensions: readonly ["meson.build", "meson_options.txt", "meson.options", ".wrap"];
377
+ }, {
378
+ readonly slug: "mercury";
379
+ readonly extensions: readonly [".m"];
371
380
  }, {
372
381
  readonly slug: "metal";
373
382
  readonly extensions: readonly [".metal"];
374
383
  }, {
375
384
  readonly slug: "mojo";
376
385
  readonly extensions: readonly [".mojo"];
386
+ }, {
387
+ readonly slug: "modula-2";
388
+ readonly extensions: readonly [".mod", ".def"];
377
389
  }, {
378
390
  readonly slug: "moonbit";
379
391
  readonly extensions: readonly [".mbt"];
@@ -407,6 +419,9 @@ declare const languageIndex: readonly [{
407
419
  }, {
408
420
  readonly slug: "ocaml";
409
421
  readonly extensions: readonly [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"];
422
+ }, {
423
+ readonly slug: "oberon";
424
+ readonly extensions: readonly [".ob", ".mod"];
410
425
  }, {
411
426
  readonly slug: "odin";
412
427
  readonly extensions: readonly [".odin"];
@@ -428,6 +443,9 @@ declare const languageIndex: readonly [{
428
443
  }, {
429
444
  readonly slug: "pine-script";
430
445
  readonly extensions: readonly [".pine"];
446
+ }, {
447
+ readonly slug: "pl-i";
448
+ readonly extensions: readonly [".pli", ".pl1"];
431
449
  }, {
432
450
  readonly slug: "pkl";
433
451
  readonly extensions: readonly [".pkl"];
@@ -482,6 +500,12 @@ declare const languageIndex: readonly [{
482
500
  }, {
483
501
  readonly slug: "razor";
484
502
  readonly extensions: readonly [".cshtml", ".razor"];
503
+ }, {
504
+ readonly slug: "rebol";
505
+ readonly extensions: readonly [".r", ".reb", ".rebol"];
506
+ }, {
507
+ readonly slug: "red";
508
+ readonly extensions: readonly [".red", ".reds"];
485
509
  }, {
486
510
  readonly slug: "reasonml";
487
511
  readonly extensions: readonly [".re", ".rei"];
@@ -494,6 +518,9 @@ declare const languageIndex: readonly [{
494
518
  }, {
495
519
  readonly slug: "restructuredtext";
496
520
  readonly extensions: readonly [".rst", ".rest"];
521
+ }, {
522
+ readonly slug: "roc";
523
+ readonly extensions: readonly [".roc"];
497
524
  }, {
498
525
  readonly slug: "ruby";
499
526
  readonly extensions: readonly [".rb", ".rbw", ".rake", ".gemspec", "Gemfile", "Rakefile", "config.ru"];
@@ -512,6 +539,9 @@ declare const languageIndex: readonly [{
512
539
  }, {
513
540
  readonly slug: "scss";
514
541
  readonly extensions: readonly [".scss", ".sass"];
542
+ }, {
543
+ readonly slug: "self";
544
+ readonly extensions: readonly [".self"];
515
545
  }, {
516
546
  readonly slug: "smalltalk";
517
547
  readonly extensions: readonly [".st"];
@@ -338,6 +338,12 @@ declare const languageIndex: readonly [{
338
338
  }, {
339
339
  readonly slug: "llvm-ir";
340
340
  readonly extensions: readonly [".ll", ".bc"];
341
+ }, {
342
+ readonly slug: "lobster";
343
+ readonly extensions: readonly [".lobster"];
344
+ }, {
345
+ readonly slug: "logo";
346
+ readonly extensions: readonly [".logo", ".lgo"];
341
347
  }, {
342
348
  readonly slug: "lua";
343
349
  readonly extensions: readonly [".lua", ".rockspec"];
@@ -368,12 +374,18 @@ declare const languageIndex: readonly [{
368
374
  }, {
369
375
  readonly slug: "meson";
370
376
  readonly extensions: readonly ["meson.build", "meson_options.txt", "meson.options", ".wrap"];
377
+ }, {
378
+ readonly slug: "mercury";
379
+ readonly extensions: readonly [".m"];
371
380
  }, {
372
381
  readonly slug: "metal";
373
382
  readonly extensions: readonly [".metal"];
374
383
  }, {
375
384
  readonly slug: "mojo";
376
385
  readonly extensions: readonly [".mojo"];
386
+ }, {
387
+ readonly slug: "modula-2";
388
+ readonly extensions: readonly [".mod", ".def"];
377
389
  }, {
378
390
  readonly slug: "moonbit";
379
391
  readonly extensions: readonly [".mbt"];
@@ -407,6 +419,9 @@ declare const languageIndex: readonly [{
407
419
  }, {
408
420
  readonly slug: "ocaml";
409
421
  readonly extensions: readonly [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"];
422
+ }, {
423
+ readonly slug: "oberon";
424
+ readonly extensions: readonly [".ob", ".mod"];
410
425
  }, {
411
426
  readonly slug: "odin";
412
427
  readonly extensions: readonly [".odin"];
@@ -428,6 +443,9 @@ declare const languageIndex: readonly [{
428
443
  }, {
429
444
  readonly slug: "pine-script";
430
445
  readonly extensions: readonly [".pine"];
446
+ }, {
447
+ readonly slug: "pl-i";
448
+ readonly extensions: readonly [".pli", ".pl1"];
431
449
  }, {
432
450
  readonly slug: "pkl";
433
451
  readonly extensions: readonly [".pkl"];
@@ -482,6 +500,12 @@ declare const languageIndex: readonly [{
482
500
  }, {
483
501
  readonly slug: "razor";
484
502
  readonly extensions: readonly [".cshtml", ".razor"];
503
+ }, {
504
+ readonly slug: "rebol";
505
+ readonly extensions: readonly [".r", ".reb", ".rebol"];
506
+ }, {
507
+ readonly slug: "red";
508
+ readonly extensions: readonly [".red", ".reds"];
485
509
  }, {
486
510
  readonly slug: "reasonml";
487
511
  readonly extensions: readonly [".re", ".rei"];
@@ -494,6 +518,9 @@ declare const languageIndex: readonly [{
494
518
  }, {
495
519
  readonly slug: "restructuredtext";
496
520
  readonly extensions: readonly [".rst", ".rest"];
521
+ }, {
522
+ readonly slug: "roc";
523
+ readonly extensions: readonly [".roc"];
497
524
  }, {
498
525
  readonly slug: "ruby";
499
526
  readonly extensions: readonly [".rb", ".rbw", ".rake", ".gemspec", "Gemfile", "Rakefile", "config.ru"];
@@ -512,6 +539,9 @@ declare const languageIndex: readonly [{
512
539
  }, {
513
540
  readonly slug: "scss";
514
541
  readonly extensions: readonly [".scss", ".sass"];
542
+ }, {
543
+ readonly slug: "self";
544
+ readonly extensions: readonly [".self"];
515
545
  }, {
516
546
  readonly slug: "smalltalk";
517
547
  readonly extensions: readonly [".st"];
@@ -14,7 +14,7 @@ var eiffel = {
14
14
  ecosystems: ["Enterprise", "Systems"]
15
15
  },
16
16
  version: "24.05",
17
- logo: "https://www.eiffel.org/images/eiffel_logo.png",
17
+ logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Eiffel_logo.svg",
18
18
  color: "#4D6977",
19
19
  i18n: {
20
20
  en: {
@@ -12,7 +12,7 @@ var eiffel = {
12
12
  ecosystems: ["Enterprise", "Systems"]
13
13
  },
14
14
  version: "24.05",
15
- logo: "https://www.eiffel.org/images/eiffel_logo.png",
15
+ logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Eiffel_logo.svg",
16
16
  color: "#4D6977",
17
17
  i18n: {
18
18
  en: {
@@ -12,7 +12,7 @@ var hocon = {
12
12
  ecosystems: ["JVM", "Scala", "Akka", "Play Framework", "Configuration"]
13
13
  },
14
14
  version: "1.4.3",
15
- logo: "https://www.lightbend.com/assets/images/brand/lightbend-icon-reverse.svg",
15
+ logo: "https://dummyimage.com/32x32/F26822/ffffff.png&text=HC",
16
16
  color: "#F26822",
17
17
  i18n: {
18
18
  en: {
@@ -10,7 +10,7 @@ var hocon = {
10
10
  ecosystems: ["JVM", "Scala", "Akka", "Play Framework", "Configuration"]
11
11
  },
12
12
  version: "1.4.3",
13
- logo: "https://www.lightbend.com/assets/images/brand/lightbend-icon-reverse.svg",
13
+ logo: "https://dummyimage.com/32x32/F26822/ffffff.png&text=HC",
14
14
  color: "#F26822",
15
15
  i18n: {
16
16
  en: {
@@ -14,7 +14,7 @@ var json5 = {
14
14
  ecosystems: ["Configuration", "Web", "Node.js"]
15
15
  },
16
16
  version: "2.2.3",
17
- logo: "https://json5.org/assets/logo.svg",
17
+ logo: "https://dummyimage.com/32x32/267CB9/ffffff.png&text=J5",
18
18
  color: "#267CB9",
19
19
  i18n: {
20
20
  en: {
@@ -12,7 +12,7 @@ var json5 = {
12
12
  ecosystems: ["Configuration", "Web", "Node.js"]
13
13
  },
14
14
  version: "2.2.3",
15
- logo: "https://json5.org/assets/logo.svg",
15
+ logo: "https://dummyimage.com/32x32/267CB9/ffffff.png&text=J5",
16
16
  color: "#267CB9",
17
17
  i18n: {
18
18
  en: {
@@ -0,0 +1,32 @@
1
+ 'use strict';
2
+
3
+ // src/languages/lobster.ts
4
+ var lobster = {
5
+ slug: "lobster",
6
+ publishedDate: "2014-01-01",
7
+ extensions: [".lobster"],
8
+ author: "Wouter van Oortmerssen",
9
+ website: "https://strlen.com/lobster/",
10
+ paradigms: ["functional", "imperative", "game-development"],
11
+ tooling: {
12
+ runtimes: ["Lobster compiler"],
13
+ ecosystems: ["Games", "Interactive Graphics", "Language Experiments"]
14
+ },
15
+ version: "development snapshot",
16
+ logo: "https://dummyimage.com/32x32/DC2626/ffffff.png&text=Lo",
17
+ color: "#DC2626",
18
+ i18n: {
19
+ en: {
20
+ name: "Lobster",
21
+ description: "A statically typed language for games and graphical applications with fast iteration.",
22
+ longDescription: "Lobster is a statically typed programming language designed for game programming, interactive graphics, and rapid iteration. It combines functional-style values with imperative code and a compiler intended to keep feedback loops short.\n\nIts ecosystem is small, but the language is useful as a compact environment for prototypes, graphics experiments, and language design work focused on games and real-time programs."
23
+ },
24
+ es: {
25
+ name: "Lobster",
26
+ description: "Lenguaje tipado estaticamente para juegos y aplicaciones graficas con iteracion rapida.",
27
+ longDescription: "Lobster es un lenguaje de programacion tipado estaticamente para juegos, graficos interactivos e iteracion rapida. Combina valores de estilo funcional con codigo imperativo y un compilador pensado para ciclos de feedback cortos.\n\nSu ecosistema es pequeno, pero sirve para prototipos, experimentos graficos y trabajo de diseno de lenguajes orientado a programas en tiempo real."
28
+ }
29
+ }
30
+ };
31
+
32
+ exports.lobster = lobster;
@@ -0,0 +1,29 @@
1
+ declare const lobster: {
2
+ slug: string;
3
+ publishedDate: string;
4
+ extensions: string[];
5
+ author: string;
6
+ website: string;
7
+ paradigms: string[];
8
+ tooling: {
9
+ runtimes: string[];
10
+ ecosystems: string[];
11
+ };
12
+ version: string;
13
+ logo: string;
14
+ color: "#DC2626";
15
+ i18n: {
16
+ en: {
17
+ name: string;
18
+ description: string;
19
+ longDescription: string;
20
+ };
21
+ es: {
22
+ name: string;
23
+ description: string;
24
+ longDescription: string;
25
+ };
26
+ };
27
+ };
28
+
29
+ export { lobster };
@@ -0,0 +1,29 @@
1
+ declare const lobster: {
2
+ slug: string;
3
+ publishedDate: string;
4
+ extensions: string[];
5
+ author: string;
6
+ website: string;
7
+ paradigms: string[];
8
+ tooling: {
9
+ runtimes: string[];
10
+ ecosystems: string[];
11
+ };
12
+ version: string;
13
+ logo: string;
14
+ color: "#DC2626";
15
+ i18n: {
16
+ en: {
17
+ name: string;
18
+ description: string;
19
+ longDescription: string;
20
+ };
21
+ es: {
22
+ name: string;
23
+ description: string;
24
+ longDescription: string;
25
+ };
26
+ };
27
+ };
28
+
29
+ export { lobster };
@@ -0,0 +1,30 @@
1
+ // src/languages/lobster.ts
2
+ var lobster = {
3
+ slug: "lobster",
4
+ publishedDate: "2014-01-01",
5
+ extensions: [".lobster"],
6
+ author: "Wouter van Oortmerssen",
7
+ website: "https://strlen.com/lobster/",
8
+ paradigms: ["functional", "imperative", "game-development"],
9
+ tooling: {
10
+ runtimes: ["Lobster compiler"],
11
+ ecosystems: ["Games", "Interactive Graphics", "Language Experiments"]
12
+ },
13
+ version: "development snapshot",
14
+ logo: "https://dummyimage.com/32x32/DC2626/ffffff.png&text=Lo",
15
+ color: "#DC2626",
16
+ i18n: {
17
+ en: {
18
+ name: "Lobster",
19
+ description: "A statically typed language for games and graphical applications with fast iteration.",
20
+ longDescription: "Lobster is a statically typed programming language designed for game programming, interactive graphics, and rapid iteration. It combines functional-style values with imperative code and a compiler intended to keep feedback loops short.\n\nIts ecosystem is small, but the language is useful as a compact environment for prototypes, graphics experiments, and language design work focused on games and real-time programs."
21
+ },
22
+ es: {
23
+ name: "Lobster",
24
+ description: "Lenguaje tipado estaticamente para juegos y aplicaciones graficas con iteracion rapida.",
25
+ longDescription: "Lobster es un lenguaje de programacion tipado estaticamente para juegos, graficos interactivos e iteracion rapida. Combina valores de estilo funcional con codigo imperativo y un compilador pensado para ciclos de feedback cortos.\n\nSu ecosistema es pequeno, pero sirve para prototipos, experimentos graficos y trabajo de diseno de lenguajes orientado a programas en tiempo real."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { lobster };
@@ -0,0 +1,32 @@
1
+ 'use strict';
2
+
3
+ // src/languages/logo.ts
4
+ var logo = {
5
+ slug: "logo",
6
+ publishedDate: "1967-01-01",
7
+ extensions: [".logo", ".lgo"],
8
+ author: "Wally Feurzeig, Seymour Papert, and Cynthia Solomon",
9
+ website: "https://people.eecs.berkeley.edu/~bh/logo.html",
10
+ paradigms: ["educational", "procedural", "interactive"],
11
+ tooling: {
12
+ runtimes: ["UCBLogo", "FMSLogo", "Logo interpreters"],
13
+ ecosystems: ["Education", "Turtle Graphics", "Creative Coding"]
14
+ },
15
+ version: "UCBLogo 6.2",
16
+ logo: "https://dummyimage.com/32x32/16A34A/ffffff.png&text=Lg",
17
+ color: "#16A34A",
18
+ i18n: {
19
+ en: {
20
+ name: "Logo",
21
+ description: "An educational language known for turtle graphics, interactivity, and procedural ideas.",
22
+ longDescription: "Logo is an educational programming language created to help learners explore procedures, recursion, geometry, and interactive problem solving. Its turtle graphics model made programming visual and concrete for generations of students.\n\nLogo dialects are still used in teaching, creative coding, and language-history contexts where immediate feedback and simple commands make computational ideas easier to explore."
23
+ },
24
+ es: {
25
+ name: "Logo",
26
+ description: "Lenguaje educativo conocido por graficos de tortuga, interactividad e ideas procedurales.",
27
+ longDescription: "Logo es un lenguaje educativo creado para explorar procedimientos, recursion, geometria y resolucion interactiva de problemas. Su modelo de graficos de tortuga hizo la programacion visual y concreta para generaciones de estudiantes.\n\nSus dialectos siguen presentes en ensenanza, codigo creativo e historia de lenguajes, donde el feedback inmediato facilita explorar ideas computacionales."
28
+ }
29
+ }
30
+ };
31
+
32
+ exports.logo = logo;
@@ -0,0 +1,29 @@
1
+ declare const logo: {
2
+ slug: string;
3
+ publishedDate: string;
4
+ extensions: string[];
5
+ author: string;
6
+ website: string;
7
+ paradigms: string[];
8
+ tooling: {
9
+ runtimes: string[];
10
+ ecosystems: string[];
11
+ };
12
+ version: string;
13
+ logo: string;
14
+ color: "#16A34A";
15
+ i18n: {
16
+ en: {
17
+ name: string;
18
+ description: string;
19
+ longDescription: string;
20
+ };
21
+ es: {
22
+ name: string;
23
+ description: string;
24
+ longDescription: string;
25
+ };
26
+ };
27
+ };
28
+
29
+ export { logo };
@@ -0,0 +1,29 @@
1
+ declare const logo: {
2
+ slug: string;
3
+ publishedDate: string;
4
+ extensions: string[];
5
+ author: string;
6
+ website: string;
7
+ paradigms: string[];
8
+ tooling: {
9
+ runtimes: string[];
10
+ ecosystems: string[];
11
+ };
12
+ version: string;
13
+ logo: string;
14
+ color: "#16A34A";
15
+ i18n: {
16
+ en: {
17
+ name: string;
18
+ description: string;
19
+ longDescription: string;
20
+ };
21
+ es: {
22
+ name: string;
23
+ description: string;
24
+ longDescription: string;
25
+ };
26
+ };
27
+ };
28
+
29
+ export { logo };
@@ -0,0 +1,30 @@
1
+ // src/languages/logo.ts
2
+ var logo = {
3
+ slug: "logo",
4
+ publishedDate: "1967-01-01",
5
+ extensions: [".logo", ".lgo"],
6
+ author: "Wally Feurzeig, Seymour Papert, and Cynthia Solomon",
7
+ website: "https://people.eecs.berkeley.edu/~bh/logo.html",
8
+ paradigms: ["educational", "procedural", "interactive"],
9
+ tooling: {
10
+ runtimes: ["UCBLogo", "FMSLogo", "Logo interpreters"],
11
+ ecosystems: ["Education", "Turtle Graphics", "Creative Coding"]
12
+ },
13
+ version: "UCBLogo 6.2",
14
+ logo: "https://dummyimage.com/32x32/16A34A/ffffff.png&text=Lg",
15
+ color: "#16A34A",
16
+ i18n: {
17
+ en: {
18
+ name: "Logo",
19
+ description: "An educational language known for turtle graphics, interactivity, and procedural ideas.",
20
+ longDescription: "Logo is an educational programming language created to help learners explore procedures, recursion, geometry, and interactive problem solving. Its turtle graphics model made programming visual and concrete for generations of students.\n\nLogo dialects are still used in teaching, creative coding, and language-history contexts where immediate feedback and simple commands make computational ideas easier to explore."
21
+ },
22
+ es: {
23
+ name: "Logo",
24
+ description: "Lenguaje educativo conocido por graficos de tortuga, interactividad e ideas procedurales.",
25
+ longDescription: "Logo es un lenguaje educativo creado para explorar procedimientos, recursion, geometria y resolucion interactiva de problemas. Su modelo de graficos de tortuga hizo la programacion visual y concreta para generaciones de estudiantes.\n\nSus dialectos siguen presentes en ensenanza, codigo creativo e historia de lenguajes, donde el feedback inmediato facilita explorar ideas computacionales."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { logo };
@@ -0,0 +1,33 @@
1
+ 'use strict';
2
+
3
+ // src/languages/mercury.ts
4
+ var mercury = {
5
+ slug: "mercury",
6
+ publishedDate: "1995-04-08",
7
+ extensions: [".m"],
8
+ author: "University of Melbourne",
9
+ website: "https://www.mercurylang.org",
10
+ paradigms: ["logic", "functional", "declarative"],
11
+ tooling: {
12
+ runtimes: ["Melbourne Mercury Compiler"],
13
+ packageManagers: ["mmc build tooling"],
14
+ ecosystems: ["Logic Programming", "Declarative Systems", "Academic Computing"]
15
+ },
16
+ version: "22.01.8",
17
+ logo: "https://dummyimage.com/32x32/0891B2/ffffff.png&text=Me",
18
+ color: "#0891B2",
19
+ i18n: {
20
+ en: {
21
+ name: "Mercury",
22
+ description: "A pure logic and functional language with strong static typing and determinism analysis.",
23
+ longDescription: "Mercury is a declarative programming language that combines logic programming with functional programming, strong static typing, modes, and determinism analysis. It aims to make logic programs more reliable and efficient for larger software.\n\nMercury is used in research, compiler work, and specialized systems where Prolog-like relations benefit from compile-time checks, explicit module structure, and predictable execution behavior."
24
+ },
25
+ es: {
26
+ name: "Mercury",
27
+ description: "Lenguaje logico y funcional puro con tipado estatico fuerte y analisis de determinismo.",
28
+ longDescription: "Mercury es un lenguaje declarativo que combina programacion logica y funcional con tipado estatico fuerte, modos y analisis de determinismo. Busca que programas de estilo logico sean mas fiables y eficientes en software grande.\n\nSe usa en investigacion, compiladores y sistemas especializados donde relaciones estilo Prolog se benefician de chequeos en compilacion, modulos explicitos y ejecucion predecible."
29
+ }
30
+ }
31
+ };
32
+
33
+ exports.mercury = mercury;
@@ -0,0 +1,30 @@
1
+ declare const mercury: {
2
+ slug: string;
3
+ publishedDate: string;
4
+ extensions: string[];
5
+ author: string;
6
+ website: string;
7
+ paradigms: string[];
8
+ tooling: {
9
+ runtimes: string[];
10
+ packageManagers: string[];
11
+ ecosystems: string[];
12
+ };
13
+ version: string;
14
+ logo: string;
15
+ color: "#0891B2";
16
+ i18n: {
17
+ en: {
18
+ name: string;
19
+ description: string;
20
+ longDescription: string;
21
+ };
22
+ es: {
23
+ name: string;
24
+ description: string;
25
+ longDescription: string;
26
+ };
27
+ };
28
+ };
29
+
30
+ export { mercury };
@@ -0,0 +1,30 @@
1
+ declare const mercury: {
2
+ slug: string;
3
+ publishedDate: string;
4
+ extensions: string[];
5
+ author: string;
6
+ website: string;
7
+ paradigms: string[];
8
+ tooling: {
9
+ runtimes: string[];
10
+ packageManagers: string[];
11
+ ecosystems: string[];
12
+ };
13
+ version: string;
14
+ logo: string;
15
+ color: "#0891B2";
16
+ i18n: {
17
+ en: {
18
+ name: string;
19
+ description: string;
20
+ longDescription: string;
21
+ };
22
+ es: {
23
+ name: string;
24
+ description: string;
25
+ longDescription: string;
26
+ };
27
+ };
28
+ };
29
+
30
+ export { mercury };
@@ -0,0 +1,31 @@
1
+ // src/languages/mercury.ts
2
+ var mercury = {
3
+ slug: "mercury",
4
+ publishedDate: "1995-04-08",
5
+ extensions: [".m"],
6
+ author: "University of Melbourne",
7
+ website: "https://www.mercurylang.org",
8
+ paradigms: ["logic", "functional", "declarative"],
9
+ tooling: {
10
+ runtimes: ["Melbourne Mercury Compiler"],
11
+ packageManagers: ["mmc build tooling"],
12
+ ecosystems: ["Logic Programming", "Declarative Systems", "Academic Computing"]
13
+ },
14
+ version: "22.01.8",
15
+ logo: "https://dummyimage.com/32x32/0891B2/ffffff.png&text=Me",
16
+ color: "#0891B2",
17
+ i18n: {
18
+ en: {
19
+ name: "Mercury",
20
+ description: "A pure logic and functional language with strong static typing and determinism analysis.",
21
+ longDescription: "Mercury is a declarative programming language that combines logic programming with functional programming, strong static typing, modes, and determinism analysis. It aims to make logic programs more reliable and efficient for larger software.\n\nMercury is used in research, compiler work, and specialized systems where Prolog-like relations benefit from compile-time checks, explicit module structure, and predictable execution behavior."
22
+ },
23
+ es: {
24
+ name: "Mercury",
25
+ description: "Lenguaje logico y funcional puro con tipado estatico fuerte y analisis de determinismo.",
26
+ longDescription: "Mercury es un lenguaje declarativo que combina programacion logica y funcional con tipado estatico fuerte, modos y analisis de determinismo. Busca que programas de estilo logico sean mas fiables y eficientes en software grande.\n\nSe usa en investigacion, compiladores y sistemas especializados donde relaciones estilo Prolog se benefician de chequeos en compilacion, modulos explicitos y ejecucion predecible."
27
+ }
28
+ }
29
+ };
30
+
31
+ export { mercury };
@@ -0,0 +1,32 @@
1
+ 'use strict';
2
+
3
+ // src/languages/modula-2.ts
4
+ var modula2 = {
5
+ slug: "modula-2",
6
+ publishedDate: "1978-01-01",
7
+ extensions: [".mod", ".def"],
8
+ author: "Niklaus Wirth",
9
+ website: "https://www.modula2.org",
10
+ paradigms: ["imperative", "procedural", "modular"],
11
+ tooling: {
12
+ runtimes: ["GNU Modula-2", "ADW Modula-2", "Classic compilers"],
13
+ ecosystems: ["Systems Programming", "Education", "Language History"]
14
+ },
15
+ version: "ISO/IEC 10514-1:1996",
16
+ logo: "https://dummyimage.com/32x32/2563EB/ffffff.png&text=M2",
17
+ color: "#2563EB",
18
+ i18n: {
19
+ en: {
20
+ name: "Modula-2",
21
+ description: "A modular systems language from Niklaus Wirth with explicit interfaces and modules.",
22
+ longDescription: "Modula-2 was designed as a successor to Pascal for systems programming and teaching. It emphasizes separate compilation, explicit definition modules, strong typing, coroutines, and structured imperative programming.\n\nThe language influenced later modular languages and remains relevant in compiler history, embedded systems, and educational settings where clear module boundaries and small language design matter."
23
+ },
24
+ es: {
25
+ name: "Modula-2",
26
+ description: "Lenguaje modular de sistemas de Niklaus Wirth con interfaces y modulos explicitos.",
27
+ longDescription: "Modula-2 fue disenado como sucesor de Pascal para sistemas y ensenanza. Enfatiza compilacion separada, modulos de definicion explicitos, tipado fuerte, corrutinas y programacion imperativa estructurada.\n\nInfluyo en lenguajes modulares posteriores y sigue siendo relevante en historia de compiladores, sistemas embebidos y contextos educativos."
28
+ }
29
+ }
30
+ };
31
+
32
+ exports.modula2 = modula2;