code-languages 1.32.0 → 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 (90) hide show
  1. package/README.md +27 -17
  2. package/dist/api.cjs +438 -16
  3. package/dist/api.d.cts +1 -1
  4. package/dist/api.d.ts +1 -1
  5. package/dist/api.js +438 -16
  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 +318 -16
  11. package/dist/detect.js +318 -16
  12. package/dist/index.cjs +448 -16
  13. package/dist/index.d.cts +273 -1
  14. package/dist/index.d.ts +273 -1
  15. package/dist/index.js +449 -17
  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/astro.cjs +1 -1
  19. package/dist/languages/astro.js +1 -1
  20. package/dist/languages/dart.cjs +1 -1
  21. package/dist/languages/dart.js +1 -1
  22. package/dist/languages/eiffel.cjs +1 -1
  23. package/dist/languages/eiffel.js +1 -1
  24. package/dist/languages/elixir.cjs +1 -1
  25. package/dist/languages/elixir.js +1 -1
  26. package/dist/languages/hocon.cjs +1 -1
  27. package/dist/languages/hocon.js +1 -1
  28. package/dist/languages/json5.cjs +1 -1
  29. package/dist/languages/json5.js +1 -1
  30. package/dist/languages/lobster.cjs +32 -0
  31. package/dist/languages/lobster.d.cts +29 -0
  32. package/dist/languages/lobster.d.ts +29 -0
  33. package/dist/languages/lobster.js +30 -0
  34. package/dist/languages/logo.cjs +32 -0
  35. package/dist/languages/logo.d.cts +29 -0
  36. package/dist/languages/logo.d.ts +29 -0
  37. package/dist/languages/logo.js +30 -0
  38. package/dist/languages/luau.cjs +1 -1
  39. package/dist/languages/luau.js +1 -1
  40. package/dist/languages/mercury.cjs +33 -0
  41. package/dist/languages/mercury.d.cts +30 -0
  42. package/dist/languages/mercury.d.ts +30 -0
  43. package/dist/languages/mercury.js +31 -0
  44. package/dist/languages/modula-2.cjs +32 -0
  45. package/dist/languages/modula-2.d.cts +29 -0
  46. package/dist/languages/modula-2.d.ts +29 -0
  47. package/dist/languages/modula-2.js +30 -0
  48. package/dist/languages/mustache.cjs +1 -1
  49. package/dist/languages/mustache.js +1 -1
  50. package/dist/languages/nickel.cjs +1 -1
  51. package/dist/languages/nickel.js +1 -1
  52. package/dist/languages/nunjucks.cjs +1 -1
  53. package/dist/languages/nunjucks.js +1 -1
  54. package/dist/languages/nushell.cjs +1 -1
  55. package/dist/languages/nushell.js +1 -1
  56. package/dist/languages/oberon.cjs +32 -0
  57. package/dist/languages/oberon.d.cts +29 -0
  58. package/dist/languages/oberon.d.ts +29 -0
  59. package/dist/languages/oberon.js +30 -0
  60. package/dist/languages/pl-i.cjs +32 -0
  61. package/dist/languages/pl-i.d.cts +29 -0
  62. package/dist/languages/pl-i.d.ts +29 -0
  63. package/dist/languages/pl-i.js +30 -0
  64. package/dist/languages/plantuml.cjs +1 -1
  65. package/dist/languages/plantuml.js +1 -1
  66. package/dist/languages/razor.cjs +1 -1
  67. package/dist/languages/razor.js +1 -1
  68. package/dist/languages/rebol.cjs +32 -0
  69. package/dist/languages/rebol.d.cts +29 -0
  70. package/dist/languages/rebol.d.ts +29 -0
  71. package/dist/languages/rebol.js +30 -0
  72. package/dist/languages/red.cjs +32 -0
  73. package/dist/languages/red.d.cts +29 -0
  74. package/dist/languages/red.d.ts +29 -0
  75. package/dist/languages/red.js +30 -0
  76. package/dist/languages/rego.cjs +1 -1
  77. package/dist/languages/rego.js +1 -1
  78. package/dist/languages/roc.cjs +33 -0
  79. package/dist/languages/roc.d.cts +30 -0
  80. package/dist/languages/roc.d.ts +30 -0
  81. package/dist/languages/roc.js +31 -0
  82. package/dist/languages/scala.cjs +1 -1
  83. package/dist/languages/scala.js +1 -1
  84. package/dist/languages/self.cjs +32 -0
  85. package/dist/languages/self.d.cts +29 -0
  86. package/dist/languages/self.d.ts +29 -0
  87. package/dist/languages/self.js +30 -0
  88. package/dist/languages/svelte.cjs +1 -1
  89. package/dist/languages/svelte.js +1 -1
  90. package/package.json +51 -1
package/dist/detect.cjs CHANGED
@@ -668,7 +668,7 @@ var astro = {
668
668
  packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
669
669
  ecosystems: ["Web", "Static Sites", "Content"]
670
670
  },
671
- version: "6.4.4",
671
+ version: "6.4.5",
672
672
  logo: "https://astro.build/assets/press/astro-icon-light.svg",
673
673
  color: "#FF5D01",
674
674
  i18n: {
@@ -2284,7 +2284,7 @@ var dart = {
2284
2284
  packageManagers: ["pub"],
2285
2285
  ecosystems: ["Flutter", "Web", "Server-side"]
2286
2286
  },
2287
- version: "3.12.1",
2287
+ version: "3.12.2",
2288
2288
  logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Dart_programming_language_logo.svg",
2289
2289
  color: "#0175C2",
2290
2290
  i18n: {
@@ -2534,7 +2534,7 @@ var eiffel = {
2534
2534
  ecosystems: ["Enterprise", "Systems"]
2535
2535
  },
2536
2536
  version: "24.05",
2537
- logo: "https://www.eiffel.org/images/eiffel_logo.png",
2537
+ logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Eiffel_logo.svg",
2538
2538
  color: "#4D6977",
2539
2539
  i18n: {
2540
2540
  en: {
@@ -2613,7 +2613,7 @@ var elixir = {
2613
2613
  packageManagers: ["Mix", "Hex"],
2614
2614
  ecosystems: ["Web", "Distributed Systems", "Fault-tolerant Systems", "Data Processing"]
2615
2615
  },
2616
- version: "1.20.0",
2616
+ version: "1.20.1",
2617
2617
  logo: "https://cdn.simpleicons.org/elixir/4B275F",
2618
2618
  color: "#4B275F",
2619
2619
  i18n: {
@@ -4049,7 +4049,7 @@ var hocon = {
4049
4049
  ecosystems: ["JVM", "Scala", "Akka", "Play Framework", "Configuration"]
4050
4050
  },
4051
4051
  version: "1.4.3",
4052
- logo: "https://www.lightbend.com/assets/images/brand/lightbend-icon-reverse.svg",
4052
+ logo: "https://dummyimage.com/32x32/F26822/ffffff.png&text=HC",
4053
4053
  color: "#F26822",
4054
4054
  i18n: {
4055
4055
  en: {
@@ -4595,7 +4595,7 @@ var json5 = {
4595
4595
  ecosystems: ["Configuration", "Web", "Node.js"]
4596
4596
  },
4597
4597
  version: "2.2.3",
4598
- logo: "https://json5.org/assets/logo.svg",
4598
+ logo: "https://dummyimage.com/32x32/267CB9/ffffff.png&text=J5",
4599
4599
  color: "#267CB9",
4600
4600
  i18n: {
4601
4601
  en: {
@@ -5249,6 +5249,64 @@ var llvmIr = {
5249
5249
  }
5250
5250
  };
5251
5251
 
5252
+ // src/languages/lobster.ts
5253
+ var lobster = {
5254
+ slug: "lobster",
5255
+ publishedDate: "2014-01-01",
5256
+ extensions: [".lobster"],
5257
+ author: "Wouter van Oortmerssen",
5258
+ website: "https://strlen.com/lobster/",
5259
+ paradigms: ["functional", "imperative", "game-development"],
5260
+ tooling: {
5261
+ runtimes: ["Lobster compiler"],
5262
+ ecosystems: ["Games", "Interactive Graphics", "Language Experiments"]
5263
+ },
5264
+ version: "development snapshot",
5265
+ logo: "https://dummyimage.com/32x32/DC2626/ffffff.png&text=Lo",
5266
+ color: "#DC2626",
5267
+ i18n: {
5268
+ en: {
5269
+ name: "Lobster",
5270
+ description: "A statically typed language for games and graphical applications with fast iteration.",
5271
+ 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."
5272
+ },
5273
+ es: {
5274
+ name: "Lobster",
5275
+ description: "Lenguaje tipado estaticamente para juegos y aplicaciones graficas con iteracion rapida.",
5276
+ 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."
5277
+ }
5278
+ }
5279
+ };
5280
+
5281
+ // src/languages/logo.ts
5282
+ var logo = {
5283
+ slug: "logo",
5284
+ publishedDate: "1967-01-01",
5285
+ extensions: [".logo", ".lgo"],
5286
+ author: "Wally Feurzeig, Seymour Papert, and Cynthia Solomon",
5287
+ website: "https://people.eecs.berkeley.edu/~bh/logo.html",
5288
+ paradigms: ["educational", "procedural", "interactive"],
5289
+ tooling: {
5290
+ runtimes: ["UCBLogo", "FMSLogo", "Logo interpreters"],
5291
+ ecosystems: ["Education", "Turtle Graphics", "Creative Coding"]
5292
+ },
5293
+ version: "UCBLogo 6.2",
5294
+ logo: "https://dummyimage.com/32x32/16A34A/ffffff.png&text=Lg",
5295
+ color: "#16A34A",
5296
+ i18n: {
5297
+ en: {
5298
+ name: "Logo",
5299
+ description: "An educational language known for turtle graphics, interactivity, and procedural ideas.",
5300
+ 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."
5301
+ },
5302
+ es: {
5303
+ name: "Logo",
5304
+ description: "Lenguaje educativo conocido por graficos de tortuga, interactividad e ideas procedurales.",
5305
+ 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."
5306
+ }
5307
+ }
5308
+ };
5309
+
5252
5310
  // src/languages/lua.ts
5253
5311
  var lua = {
5254
5312
  slug: "lua",
@@ -5312,7 +5370,7 @@ var luau = {
5312
5370
  packageManagers: ["Wally", "Pesde"],
5313
5371
  ecosystems: ["Roblox", "Games", "Embedded scripting"]
5314
5372
  },
5315
- version: "0.723",
5373
+ version: "0.724",
5316
5374
  logo: "https://cdn.simpleicons.org/roblox/000000",
5317
5375
  color: "#000000",
5318
5376
  i18n: {
@@ -5642,6 +5700,36 @@ var mdx = {
5642
5700
  }
5643
5701
  };
5644
5702
 
5703
+ // src/languages/mercury.ts
5704
+ var mercury = {
5705
+ slug: "mercury",
5706
+ publishedDate: "1995-04-08",
5707
+ extensions: [".m"],
5708
+ author: "University of Melbourne",
5709
+ website: "https://www.mercurylang.org",
5710
+ paradigms: ["logic", "functional", "declarative"],
5711
+ tooling: {
5712
+ runtimes: ["Melbourne Mercury Compiler"],
5713
+ packageManagers: ["mmc build tooling"],
5714
+ ecosystems: ["Logic Programming", "Declarative Systems", "Academic Computing"]
5715
+ },
5716
+ version: "22.01.8",
5717
+ logo: "https://dummyimage.com/32x32/0891B2/ffffff.png&text=Me",
5718
+ color: "#0891B2",
5719
+ i18n: {
5720
+ en: {
5721
+ name: "Mercury",
5722
+ description: "A pure logic and functional language with strong static typing and determinism analysis.",
5723
+ 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."
5724
+ },
5725
+ es: {
5726
+ name: "Mercury",
5727
+ description: "Lenguaje logico y funcional puro con tipado estatico fuerte y analisis de determinismo.",
5728
+ 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."
5729
+ }
5730
+ }
5731
+ };
5732
+
5645
5733
  // src/languages/mermaid.ts
5646
5734
  var mermaid = {
5647
5735
  slug: "mermaid",
@@ -5791,6 +5879,35 @@ var metal = {
5791
5879
  }
5792
5880
  };
5793
5881
 
5882
+ // src/languages/modula-2.ts
5883
+ var modula2 = {
5884
+ slug: "modula-2",
5885
+ publishedDate: "1978-01-01",
5886
+ extensions: [".mod", ".def"],
5887
+ author: "Niklaus Wirth",
5888
+ website: "https://www.modula2.org",
5889
+ paradigms: ["imperative", "procedural", "modular"],
5890
+ tooling: {
5891
+ runtimes: ["GNU Modula-2", "ADW Modula-2", "Classic compilers"],
5892
+ ecosystems: ["Systems Programming", "Education", "Language History"]
5893
+ },
5894
+ version: "ISO/IEC 10514-1:1996",
5895
+ logo: "https://dummyimage.com/32x32/2563EB/ffffff.png&text=M2",
5896
+ color: "#2563EB",
5897
+ i18n: {
5898
+ en: {
5899
+ name: "Modula-2",
5900
+ description: "A modular systems language from Niklaus Wirth with explicit interfaces and modules.",
5901
+ 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."
5902
+ },
5903
+ es: {
5904
+ name: "Modula-2",
5905
+ description: "Lenguaje modular de sistemas de Niklaus Wirth con interfaces y modulos explicitos.",
5906
+ 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."
5907
+ }
5908
+ }
5909
+ };
5910
+
5794
5911
  // src/languages/mojo.ts
5795
5912
  var mojo = {
5796
5913
  slug: "mojo",
@@ -5953,7 +6070,7 @@ var mustache = {
5953
6070
  ecosystems: ["Web", "Node.js", "Ruby", "Python", "Java", "Go"]
5954
6071
  },
5955
6072
  version: "1.0",
5956
- logo: "https://mustache.github.io/images/mustache.png",
6073
+ logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Mustache-js-logo.png",
5957
6074
  color: "#974A01",
5958
6075
  i18n: {
5959
6076
  en: {
@@ -6050,7 +6167,7 @@ var nickel = {
6050
6167
  runtimes: ["nickel CLI"],
6051
6168
  ecosystems: ["Configuration", "Infrastructure", "Nix", "DevOps"]
6052
6169
  },
6053
- version: "1.16.0",
6170
+ version: "1.17.0",
6054
6171
  logo: "https://avatars.githubusercontent.com/u/83021462?v=4",
6055
6172
  color: "#3C6EB4",
6056
6173
  i18n: {
@@ -6201,7 +6318,7 @@ var nunjucks = {
6201
6318
  ecosystems: ["Web", "Node.js", "Static Sites"]
6202
6319
  },
6203
6320
  version: "3.2.4",
6204
- logo: "https://mozilla.github.io/nunjucks/img/nunjucks-logo.png",
6321
+ logo: "https://cdn.simpleicons.org/nunjucks/1C4A1C",
6205
6322
  color: "#1C4A1C",
6206
6323
  i18n: {
6207
6324
  en: {
@@ -6251,7 +6368,7 @@ var nushell = {
6251
6368
  ecosystems: ["Shell", "Unix", "Windows", "macOS"]
6252
6369
  },
6253
6370
  version: "0.113.1",
6254
- logo: "https://www.nushell.sh/icons/android-chrome-512x512.png",
6371
+ logo: "https://cdn.simpleicons.org/nushell/3AA675",
6255
6372
  color: "#3AA675",
6256
6373
  i18n: {
6257
6374
  en: {
@@ -6287,6 +6404,35 @@ var nushell = {
6287
6404
  }
6288
6405
  };
6289
6406
 
6407
+ // src/languages/oberon.ts
6408
+ var oberon = {
6409
+ slug: "oberon",
6410
+ publishedDate: "1987-01-01",
6411
+ extensions: [".ob", ".mod"],
6412
+ author: "Niklaus Wirth",
6413
+ website: "https://people.inf.ethz.ch/wirth/Oberon/",
6414
+ paradigms: ["imperative", "procedural", "modular"],
6415
+ tooling: {
6416
+ runtimes: ["Oberon System", "Oxford Oberon-2 compiler", "Classic compilers"],
6417
+ ecosystems: ["Operating Systems", "Education", "Language Design"]
6418
+ },
6419
+ version: "Oberon-2",
6420
+ logo: "https://dummyimage.com/32x32/0F766E/ffffff.png&text=Ob",
6421
+ color: "#0F766E",
6422
+ i18n: {
6423
+ en: {
6424
+ name: "Oberon",
6425
+ description: "A compact Pascal-family language with modules, type extension, and system roots.",
6426
+ longDescription: "Oberon is a compact language and operating-system project created by Niklaus Wirth and Jurg Gutknecht. The language simplifies Modula-2 while adding type extension and a small, strongly typed module system.\n\nOberon is important in operating-system research, compiler construction, and teaching because it shows how a small language, compiler, and environment can form a coherent software system."
6427
+ },
6428
+ es: {
6429
+ name: "Oberon",
6430
+ description: "Lenguaje compacto de la familia Pascal con modulos, extension de tipos y raices de sistema.",
6431
+ longDescription: "Oberon es un lenguaje y proyecto de sistema operativo creado por Niklaus Wirth y Jurg Gutknecht. Simplifica Modula-2 y agrega extension de tipos junto con un sistema de modulos pequeno y fuertemente tipado.\n\nEs importante en investigacion de sistemas operativos, construccion de compiladores y ensenanza porque muestra como lenguaje, compilador y entorno pueden formar un sistema coherente."
6432
+ }
6433
+ }
6434
+ };
6435
+
6290
6436
  // src/languages/objective-c.ts
6291
6437
  var objectiveC = {
6292
6438
  slug: "objective-c",
@@ -6765,6 +6911,35 @@ var pkl = {
6765
6911
  }
6766
6912
  };
6767
6913
 
6914
+ // src/languages/pl-i.ts
6915
+ var plI = {
6916
+ slug: "pl-i",
6917
+ publishedDate: "1964-01-01",
6918
+ extensions: [".pli", ".pl1"],
6919
+ author: "IBM",
6920
+ website: "https://www.ibm.com/products/pli-compiler-aix",
6921
+ paradigms: ["imperative", "procedural", "structured"],
6922
+ tooling: {
6923
+ runtimes: ["IBM Enterprise PL/I", "Open PL/I compilers"],
6924
+ ecosystems: ["Mainframe", "Enterprise", "Scientific Computing"]
6925
+ },
6926
+ version: "Enterprise PL/I 6.2",
6927
+ logo: "https://dummyimage.com/32x32/1F2937/ffffff.png&text=PL1",
6928
+ color: "#1F2937",
6929
+ i18n: {
6930
+ en: {
6931
+ name: "PL/I",
6932
+ description: "An IBM language combining business, scientific, and systems programming features.",
6933
+ longDescription: "PL/I was designed by IBM to cover business data processing, scientific computing, and systems programming in one language. It combines block structure, strong data-description facilities, exceptions, concurrency features, and rich numeric support.\n\nPL/I remains associated with mainframe and enterprise systems, where long-lived applications depend on its data handling, batch processing, and compatibility with IBM tooling."
6934
+ },
6935
+ es: {
6936
+ name: "PL/I",
6937
+ description: "Lenguaje de IBM que combina rasgos de programacion empresarial, cientifica y de sistemas.",
6938
+ longDescription: "PL/I fue disenado por IBM para cubrir procesamiento empresarial, computacion cientifica y programacion de sistemas en un solo lenguaje. Combina estructura de bloques, descripciones de datos, excepciones, concurrencia y soporte numerico amplio.\n\nSigue asociado a mainframes y sistemas empresariales donde aplicaciones de larga vida dependen de su manejo de datos, procesos batch y herramientas IBM."
6939
+ }
6940
+ }
6941
+ };
6942
+
6768
6943
  // src/languages/plantuml.ts
6769
6944
  var plantuml = {
6770
6945
  slug: "plantuml",
@@ -6778,7 +6953,7 @@ var plantuml = {
6778
6953
  packageManagers: ["Maven", "Gradle", "npm"],
6779
6954
  ecosystems: ["UML", "Architecture", "Documentation", "Diagrams"]
6780
6955
  },
6781
- version: "1.2026.5",
6956
+ version: "1.2026.6",
6782
6957
  logo: "https://plantuml.com/logo3.png",
6783
6958
  color: "#FBB03B",
6784
6959
  i18n: {
@@ -7556,7 +7731,7 @@ var razor = {
7556
7731
  packageManagers: ["NuGet"],
7557
7732
  ecosystems: [".NET", "ASP.NET Core", "Web", "Blazor"]
7558
7733
  },
7559
- version: "10.0.8",
7734
+ version: "10.0.9",
7560
7735
  logo: "https://cdn.simpleicons.org/dotnet/512BD4",
7561
7736
  color: "#512BD4",
7562
7737
  i18n: {
@@ -7643,6 +7818,64 @@ var reasonml = {
7643
7818
  }
7644
7819
  };
7645
7820
 
7821
+ // src/languages/rebol.ts
7822
+ var rebol = {
7823
+ slug: "rebol",
7824
+ publishedDate: "1997-01-01",
7825
+ extensions: [".r", ".reb", ".rebol"],
7826
+ author: "Carl Sassenrath",
7827
+ website: "https://www.rebol.com",
7828
+ paradigms: ["functional", "dataflow", "scripting"],
7829
+ tooling: {
7830
+ runtimes: ["REBOL 2", "Rebol 3", "Ren-C"],
7831
+ ecosystems: ["Scripting", "DSLs", "Network Tools"]
7832
+ },
7833
+ version: "Rebol 3",
7834
+ logo: "https://dummyimage.com/32x32/7C2D12/ffffff.png&text=Re",
7835
+ color: "#7C2D12",
7836
+ i18n: {
7837
+ en: {
7838
+ name: "Rebol",
7839
+ description: "A compact messaging language built around code-as-data blocks and dialects.",
7840
+ longDescription: "Rebol is a small language created around the idea of relative expressions, blocks as data, and domain-specific dialects. Its syntax makes structured data and executable code share one compact representation.\n\nRebol has been used for network utilities, GUIs, automation, lightweight data exchange, and DSL experiments. Its influence is visible in Red and other languages interested in homoiconic, message-oriented scripting."
7841
+ },
7842
+ es: {
7843
+ name: "Rebol",
7844
+ description: "Lenguaje compacto de mensajeria basado en bloques de codigo como datos y dialectos.",
7845
+ longDescription: "Rebol es un lenguaje pequeno creado alrededor de expresiones relativas, bloques como datos y dialectos especificos de dominio. Su sintaxis hace que datos estructurados y codigo ejecutable compartan una representacion compacta.\n\nSe ha usado en utilidades de red, GUIs, automatizacion, intercambio ligero de datos y experimentos de DSL. Su influencia se ve en Red y otros lenguajes de scripting homoiconico."
7846
+ }
7847
+ }
7848
+ };
7849
+
7850
+ // src/languages/red.ts
7851
+ var red = {
7852
+ slug: "red",
7853
+ publishedDate: "2011-02-26",
7854
+ extensions: [".red", ".reds"],
7855
+ author: "Nenad Rakocevic",
7856
+ website: "https://www.red-lang.org",
7857
+ paradigms: ["imperative", "functional", "symbolic"],
7858
+ tooling: {
7859
+ runtimes: ["Red toolchain", "Red/System"],
7860
+ ecosystems: ["Scripting", "GUI Applications", "Systems Experiments"]
7861
+ },
7862
+ version: "0.6.6",
7863
+ logo: "https://static.red-lang.org/red-logo.svg",
7864
+ color: "#F00000",
7865
+ i18n: {
7866
+ en: {
7867
+ name: "Red",
7868
+ description: "A Rebol-inspired language spanning high-level scripting and low-level Red/System code.",
7869
+ longDescription: "Red is a language inspired by Rebol that aims to cover a broad range from symbolic high-level scripting to lower-level systems programming through Red/System. It emphasizes compact syntax, DSL-friendly data notation, and GUI-oriented workflows.\n\nThe project is used for scripts, small desktop tools, experiments, and applications that benefit from homoiconic data, concise notation, and a single distribution with compiler and runtime pieces."
7870
+ },
7871
+ es: {
7872
+ name: "Red",
7873
+ description: "Lenguaje inspirado en Rebol que cubre scripting de alto nivel y codigo Red/System.",
7874
+ longDescription: "Red es un lenguaje inspirado en Rebol que busca cubrir desde scripting simbolico de alto nivel hasta programacion de sistemas con Red/System. Enfatiza sintaxis compacta, notacion de datos apta para DSLs y flujos orientados a GUI.\n\nSe usa en scripts, herramientas pequenas de escritorio, experimentos y apps que aprovechan datos homoiconicos, notacion concisa y una distribucion con compilador y runtime."
7875
+ }
7876
+ }
7877
+ };
7878
+
7646
7879
  // src/languages/rego.ts
7647
7880
  var rego = {
7648
7881
  slug: "rego",
@@ -7656,7 +7889,7 @@ var rego = {
7656
7889
  packageManagers: ["OPA bundles"],
7657
7890
  ecosystems: ["Policy as Code", "Kubernetes", "Cloud Native", "Authorization"]
7658
7891
  },
7659
- version: "OPA 1.17.0",
7892
+ version: "OPA 1.17.1",
7660
7893
  logo: "https://raw.githubusercontent.com/open-policy-agent/opa/main/logo/logo.svg",
7661
7894
  color: "#5C4EE5",
7662
7895
  i18n: {
@@ -7793,6 +8026,36 @@ var restructuredtext = {
7793
8026
  }
7794
8027
  };
7795
8028
 
8029
+ // src/languages/roc.ts
8030
+ var roc = {
8031
+ slug: "roc",
8032
+ publishedDate: "2021-01-01",
8033
+ extensions: [".roc"],
8034
+ author: "Richard Feldman and contributors",
8035
+ website: "https://www.roc-lang.org",
8036
+ paradigms: ["functional", "pure", "static"],
8037
+ tooling: {
8038
+ runtimes: ["Roc compiler"],
8039
+ packageManagers: ["Roc packages"],
8040
+ ecosystems: ["CLI Tools", "WebAssembly", "Functional Programming"]
8041
+ },
8042
+ version: "development snapshot",
8043
+ logo: "https://avatars.githubusercontent.com/u/96867701?v=4",
8044
+ color: "#7C3AED",
8045
+ i18n: {
8046
+ en: {
8047
+ name: "Roc",
8048
+ description: "A fast, pure functional language focused on friendly syntax and platform-based apps.",
8049
+ longDescription: "Roc is a pure functional programming language focused on fast execution, approachable syntax, static typing, and a platform model where hosts provide capabilities to applications. It aims to make functional programming practical for command-line tools, services, and WebAssembly.\n\nThe language is still evolving, but its design explores abilities, automatic memory management without tracing GC pauses, and packaging workflows that separate application code from platform code."
8050
+ },
8051
+ es: {
8052
+ name: "Roc",
8053
+ description: "Lenguaje funcional puro y rapido con sintaxis amigable y apps basadas en plataformas.",
8054
+ longDescription: "Roc es un lenguaje funcional puro enfocado en ejecucion rapida, sintaxis accesible, tipado estatico y un modelo de plataformas donde el host provee capacidades a las aplicaciones. Busca hacer practica la programacion funcional para CLIs, servicios y WebAssembly.\n\nEl lenguaje sigue evolucionando, pero explora abilities, manejo automatico de memoria sin pausas de GC por trazado y paquetes que separan codigo de app y plataforma."
8055
+ }
8056
+ }
8057
+ };
8058
+
7796
8059
  // src/languages/ruby.ts
7797
8060
  var ruby = {
7798
8061
  slug: "ruby",
@@ -7955,7 +8218,7 @@ var scala = {
7955
8218
  packageManagers: ["sbt", "Maven", "Gradle", "Scala CLI"],
7956
8219
  ecosystems: ["JVM", "Web", "Data Engineering", "Distributed Systems"]
7957
8220
  },
7958
- version: "3.8.3",
8221
+ version: "3.8.4",
7959
8222
  logo: "https://cdn.simpleicons.org/scala/DC322F",
7960
8223
  color: "#DC322F",
7961
8224
  i18n: {
@@ -8091,6 +8354,35 @@ var scss = {
8091
8354
  }
8092
8355
  };
8093
8356
 
8357
+ // src/languages/self.ts
8358
+ var self = {
8359
+ slug: "self",
8360
+ publishedDate: "1987-01-01",
8361
+ extensions: [".self"],
8362
+ author: "David Ungar and Randall Smith",
8363
+ website: "https://selflanguage.org",
8364
+ paradigms: ["prototype-based", "object-oriented", "dynamic"],
8365
+ tooling: {
8366
+ runtimes: ["Self VM"],
8367
+ ecosystems: ["Language Research", "Interactive Environments", "Prototype OO"]
8368
+ },
8369
+ version: "2024.1",
8370
+ logo: "https://dummyimage.com/32x32/EA580C/ffffff.png&text=Se",
8371
+ color: "#EA580C",
8372
+ i18n: {
8373
+ en: {
8374
+ name: "Self",
8375
+ description: "A prototype-based object language that influenced JavaScript, VM design, and live IDEs.",
8376
+ longDescription: "Self is a dynamic object-oriented language based on prototypes and message passing rather than classes. It was created as a research language for exploring object systems, live programming environments, and high-performance dynamic dispatch.\n\nSelf influenced JavaScript, Smalltalk VM work, adaptive optimization, and interactive development systems where objects can be inspected, changed, and extended while the program is running."
8377
+ },
8378
+ es: {
8379
+ name: "Self",
8380
+ description: "Lenguaje de objetos basado en prototipos que influyo en JavaScript, VMs e IDEs vivos.",
8381
+ longDescription: "Self es un lenguaje orientado a objetos dinamico basado en prototipos y envio de mensajes, no en clases. Fue creado como lenguaje de investigacion para explorar sistemas de objetos, entornos vivos y dispatch dinamico de alto rendimiento.\n\nInfluyo en JavaScript, trabajo de VMs de Smalltalk, optimizacion adaptativa y entornos interactivos donde los objetos pueden inspeccionarse y cambiarse mientras el programa corre."
8382
+ }
8383
+ }
8384
+ };
8385
+
8094
8386
  // src/languages/smalltalk.ts
8095
8387
  var smalltalk = {
8096
8388
  slug: "smalltalk",
@@ -8545,7 +8837,7 @@ var svelte = {
8545
8837
  packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
8546
8838
  ecosystems: ["Web", "SvelteKit", "Vite"]
8547
8839
  },
8548
- version: "5.56.2",
8840
+ version: "5.56.3",
8549
8841
  logo: "https://upload.wikimedia.org/wikipedia/commons/1/1b/Svelte_Logo.svg",
8550
8842
  color: "#FF3E00",
8551
8843
  i18n: {
@@ -10330,6 +10622,8 @@ var languages = [
10330
10622
  liquid,
10331
10623
  lisp,
10332
10624
  llvmIr,
10625
+ lobster,
10626
+ logo,
10333
10627
  lua,
10334
10628
  luau,
10335
10629
  makefile,
@@ -10340,8 +10634,10 @@ var languages = [
10340
10634
  mdx,
10341
10635
  mermaid,
10342
10636
  meson,
10637
+ mercury,
10343
10638
  metal,
10344
10639
  mojo,
10640
+ modula2,
10345
10641
  moonbit,
10346
10642
  move,
10347
10643
  mustache,
@@ -10353,6 +10649,7 @@ var languages = [
10353
10649
  nushell,
10354
10650
  objectiveC,
10355
10651
  ocaml,
10652
+ oberon,
10356
10653
  odin,
10357
10654
  openapi,
10358
10655
  opencl,
@@ -10360,6 +10657,7 @@ var languages = [
10360
10657
  perl,
10361
10658
  php,
10362
10659
  pineScript,
10660
+ plI,
10363
10661
  pkl,
10364
10662
  plantuml,
10365
10663
  plsql,
@@ -10378,16 +10676,20 @@ var languages = [
10378
10676
  racket,
10379
10677
  raku,
10380
10678
  razor,
10679
+ rebol,
10680
+ red,
10381
10681
  reasonml,
10382
10682
  rego,
10383
10683
  rescript,
10384
10684
  restructuredtext,
10685
+ roc,
10385
10686
  ruby,
10386
10687
  rust,
10387
10688
  sas,
10388
10689
  scala,
10389
10690
  scheme,
10390
10691
  scss,
10692
+ self,
10391
10693
  smalltalk,
10392
10694
  smarty,
10393
10695
  solidity,