code-languages 1.19.0 → 1.20.1

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 (78) hide show
  1. package/README.md +50 -0
  2. package/dist/api.cjs +416 -0
  3. package/dist/api.cjs.map +1 -1
  4. package/dist/api.d.cts +266 -0
  5. package/dist/api.d.ts +266 -0
  6. package/dist/api.js +416 -0
  7. package/dist/api.js.map +1 -1
  8. package/dist/detect.cjs +296 -0
  9. package/dist/detect.cjs.map +1 -1
  10. package/dist/detect.js +296 -0
  11. package/dist/detect.js.map +1 -1
  12. package/dist/index.cjs +426 -0
  13. package/dist/index.cjs.map +1 -1
  14. package/dist/index.d.cts +266 -0
  15. package/dist/index.d.ts +266 -0
  16. package/dist/index.js +427 -1
  17. package/dist/index.js.map +1 -1
  18. package/dist/languages/antlr.cjs +34 -0
  19. package/dist/languages/antlr.cjs.map +1 -0
  20. package/dist/languages/antlr.d.cts +29 -0
  21. package/dist/languages/antlr.d.ts +29 -0
  22. package/dist/languages/antlr.js +32 -0
  23. package/dist/languages/antlr.js.map +1 -0
  24. package/dist/languages/apl.cjs +33 -0
  25. package/dist/languages/apl.cjs.map +1 -0
  26. package/dist/languages/apl.d.cts +28 -0
  27. package/dist/languages/apl.d.ts +28 -0
  28. package/dist/languages/apl.js +31 -0
  29. package/dist/languages/apl.js.map +1 -0
  30. package/dist/languages/applescript.cjs +33 -0
  31. package/dist/languages/applescript.cjs.map +1 -0
  32. package/dist/languages/applescript.d.cts +28 -0
  33. package/dist/languages/applescript.d.ts +28 -0
  34. package/dist/languages/applescript.js +31 -0
  35. package/dist/languages/applescript.js.map +1 -0
  36. package/dist/languages/arduino.cjs +34 -0
  37. package/dist/languages/arduino.cjs.map +1 -0
  38. package/dist/languages/arduino.d.cts +29 -0
  39. package/dist/languages/arduino.d.ts +29 -0
  40. package/dist/languages/arduino.js +32 -0
  41. package/dist/languages/arduino.js.map +1 -0
  42. package/dist/languages/autohotkey.cjs +33 -0
  43. package/dist/languages/autohotkey.cjs.map +1 -0
  44. package/dist/languages/autohotkey.d.cts +28 -0
  45. package/dist/languages/autohotkey.d.ts +28 -0
  46. package/dist/languages/autohotkey.js +31 -0
  47. package/dist/languages/autohotkey.js.map +1 -0
  48. package/dist/languages/coldfusion.cjs +34 -0
  49. package/dist/languages/coldfusion.cjs.map +1 -0
  50. package/dist/languages/coldfusion.d.cts +29 -0
  51. package/dist/languages/coldfusion.d.ts +29 -0
  52. package/dist/languages/coldfusion.js +32 -0
  53. package/dist/languages/coldfusion.js.map +1 -0
  54. package/dist/languages/cython.cjs +34 -0
  55. package/dist/languages/cython.cjs.map +1 -0
  56. package/dist/languages/cython.d.cts +29 -0
  57. package/dist/languages/cython.d.ts +29 -0
  58. package/dist/languages/cython.js +32 -0
  59. package/dist/languages/cython.js.map +1 -0
  60. package/dist/languages/erb.cjs +34 -0
  61. package/dist/languages/erb.cjs.map +1 -0
  62. package/dist/languages/erb.d.cts +29 -0
  63. package/dist/languages/erb.d.ts +29 -0
  64. package/dist/languages/erb.js +32 -0
  65. package/dist/languages/erb.js.map +1 -0
  66. package/dist/languages/forth.cjs +33 -0
  67. package/dist/languages/forth.cjs.map +1 -0
  68. package/dist/languages/forth.d.cts +28 -0
  69. package/dist/languages/forth.d.ts +28 -0
  70. package/dist/languages/forth.js +31 -0
  71. package/dist/languages/forth.js.map +1 -0
  72. package/dist/languages/jsonnet.cjs +34 -0
  73. package/dist/languages/jsonnet.cjs.map +1 -0
  74. package/dist/languages/jsonnet.d.cts +29 -0
  75. package/dist/languages/jsonnet.d.ts +29 -0
  76. package/dist/languages/jsonnet.js +32 -0
  77. package/dist/languages/jsonnet.js.map +1 -0
  78. package/package.json +51 -1
package/dist/index.cjs CHANGED
@@ -122,6 +122,44 @@ var init_ada = __esm({
122
122
  }
123
123
  });
124
124
 
125
+ // src/languages/antlr.ts
126
+ var antlr_exports = {};
127
+ __export(antlr_exports, {
128
+ antlr: () => exports.antlr
129
+ });
130
+ exports.antlr = void 0;
131
+ var init_antlr = __esm({
132
+ "src/languages/antlr.ts"() {
133
+ exports.antlr = {
134
+ slug: "antlr",
135
+ publishedDate: "1989-02-01",
136
+ extensions: [".g4"],
137
+ author: "Terence Parr",
138
+ website: "https://www.antlr.org",
139
+ paradigms: ["declarative", "grammar", "parser generation"],
140
+ tooling: {
141
+ runtimes: ["ANTLR Tool", "ANTLR Runtime"],
142
+ packageManagers: ["Maven", "npm", "NuGet", "pip"],
143
+ ecosystems: ["Compilers", "Language Tools", "Static Analysis"]
144
+ },
145
+ version: "4.13.2",
146
+ logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_antlr.svg",
147
+ i18n: {
148
+ en: {
149
+ name: "ANTLR Grammar",
150
+ description: "A grammar notation used with ANTLR to generate lexers, parsers, and language tools.",
151
+ longDescription: "ANTLR grammars describe lexical tokens and parser rules for programming languages, data formats, query languages, and domain-specific syntaxes.\n\nThe generated parsers are used in compilers, interpreters, code analyzers, migration tools, editors, and other systems that need structured language recognition."
152
+ },
153
+ es: {
154
+ name: "ANTLR Grammar",
155
+ description: "Una notacion de gramaticas usada con ANTLR para generar lexers, parsers y herramientas de lenguaje.",
156
+ longDescription: "Las gramaticas ANTLR describen tokens lexicos y reglas de parser para lenguajes de programacion, formatos de datos, lenguajes de consulta y sintaxis especificas de dominio.\n\nLos parsers generados se usan en compiladores, interpretes, analizadores de codigo, herramientas de migracion, editores y otros sistemas que necesitan reconocer lenguajes de forma estructurada."
157
+ }
158
+ }
159
+ };
160
+ }
161
+ });
162
+
125
163
  // src/languages/apex.ts
126
164
  var apex_exports = {};
127
165
  __export(apex_exports, {
@@ -160,6 +198,118 @@ var init_apex = __esm({
160
198
  }
161
199
  });
162
200
 
201
+ // src/languages/apl.ts
202
+ var apl_exports = {};
203
+ __export(apl_exports, {
204
+ apl: () => exports.apl
205
+ });
206
+ exports.apl = void 0;
207
+ var init_apl = __esm({
208
+ "src/languages/apl.ts"() {
209
+ exports.apl = {
210
+ slug: "apl",
211
+ publishedDate: "1966-11-01",
212
+ extensions: [".apl", ".dyalog"],
213
+ author: "Kenneth E. Iverson",
214
+ website: "https://www.dyalog.com",
215
+ paradigms: ["array", "functional", "interactive"],
216
+ tooling: {
217
+ runtimes: ["Dyalog APL", "GNU APL", "NARS2000"],
218
+ ecosystems: ["Array Programming", "Data Analysis", "Financial Computing"]
219
+ },
220
+ version: "ISO/IEC 13751:2001",
221
+ logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_apl.svg",
222
+ i18n: {
223
+ en: {
224
+ name: "APL",
225
+ description: "An array-oriented language known for concise symbolic notation and interactive use.",
226
+ longDescription: "APL centers computation around arrays, higher-order operations, and a compact mathematical notation that can express complex transformations in very little code.\n\nIt has influenced many array languages and remains useful in exploratory analysis, financial modeling, algorithm design, and systems where terse interactive computation is valuable."
227
+ },
228
+ es: {
229
+ name: "APL",
230
+ description: "Un lenguaje orientado a arreglos conocido por su notacion simbolica concisa y uso interactivo.",
231
+ longDescription: "APL centra la computacion en arreglos, operaciones de orden superior y una notacion matematica compacta que puede expresar transformaciones complejas en muy poco codigo.\n\nHa influido en muchos lenguajes de arreglos y sigue siendo util en analisis exploratorio, modelos financieros, diseno de algoritmos y sistemas donde la computacion interactiva concisa aporta valor."
232
+ }
233
+ }
234
+ };
235
+ }
236
+ });
237
+
238
+ // src/languages/applescript.ts
239
+ var applescript_exports = {};
240
+ __export(applescript_exports, {
241
+ applescript: () => exports.applescript
242
+ });
243
+ exports.applescript = void 0;
244
+ var init_applescript = __esm({
245
+ "src/languages/applescript.ts"() {
246
+ exports.applescript = {
247
+ slug: "applescript",
248
+ publishedDate: "1993-10-01",
249
+ extensions: [".applescript", ".scpt", ".scptd"],
250
+ author: "Apple Inc.",
251
+ website: "https://developer.apple.com/library/archive/documentation/AppleScript/Conceptual/AppleScriptX/AppleScriptX.html",
252
+ paradigms: ["scripting", "automation", "event-driven"],
253
+ tooling: {
254
+ runtimes: ["macOS", "osascript", "Script Editor"],
255
+ ecosystems: ["macOS", "Desktop Automation"]
256
+ },
257
+ version: "2.8",
258
+ logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_applescript.svg",
259
+ i18n: {
260
+ en: {
261
+ name: "AppleScript",
262
+ description: "A macOS scripting language for automating applications through Apple events.",
263
+ longDescription: "AppleScript provides an English-like syntax for controlling scriptable macOS applications, files, windows, workflows, and system services.\n\nIt is commonly used for desktop automation, publishing workflows, batch operations, application glue code, and user-facing scripts that coordinate multiple Mac apps."
264
+ },
265
+ es: {
266
+ name: "AppleScript",
267
+ description: "Un lenguaje de scripting de macOS para automatizar aplicaciones mediante Apple events.",
268
+ longDescription: "AppleScript ofrece una sintaxis similar al ingles para controlar aplicaciones scriptables de macOS, archivos, ventanas, flujos de trabajo y servicios del sistema.\n\nSe usa comunmente para automatizacion de escritorio, flujos editoriales, operaciones por lotes, codigo de integracion entre aplicaciones y scripts de usuario que coordinan varias apps de Mac."
269
+ }
270
+ }
271
+ };
272
+ }
273
+ });
274
+
275
+ // src/languages/arduino.ts
276
+ var arduino_exports = {};
277
+ __export(arduino_exports, {
278
+ arduino: () => exports.arduino
279
+ });
280
+ exports.arduino = void 0;
281
+ var init_arduino = __esm({
282
+ "src/languages/arduino.ts"() {
283
+ exports.arduino = {
284
+ slug: "arduino",
285
+ publishedDate: "2005-01-01",
286
+ extensions: [".ino", ".pde"],
287
+ author: "Arduino",
288
+ website: "https://www.arduino.cc",
289
+ paradigms: ["imperative", "procedural", "embedded"],
290
+ tooling: {
291
+ runtimes: ["Arduino Core", "Microcontroller Firmware"],
292
+ packageManagers: ["Arduino Library Manager", "PlatformIO"],
293
+ ecosystems: ["Embedded", "IoT", "Prototyping"]
294
+ },
295
+ version: "Arduino API 1.0",
296
+ logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_arduino.svg",
297
+ i18n: {
298
+ en: {
299
+ name: "Arduino Sketch",
300
+ description: "A C/C++-based sketch format for programming Arduino boards and embedded devices.",
301
+ longDescription: "Arduino sketches wrap embedded C and C++ development in a beginner-friendly project model with setup and loop entry points, board cores, and hardware libraries.\n\nThey are widely used for electronics prototyping, education, robotics, sensors, IoT devices, and small firmware projects that interact directly with physical components."
302
+ },
303
+ es: {
304
+ name: "Arduino Sketch",
305
+ description: "Un formato de sketch basado en C/C++ para programar placas Arduino y dispositivos embebidos.",
306
+ longDescription: "Los sketches de Arduino envuelven el desarrollo embebido en C y C++ en un modelo de proyecto accesible con puntos de entrada setup y loop, cores de placas y bibliotecas de hardware.\n\nSe usan ampliamente para prototipos electronicos, educacion, robotica, sensores, dispositivos IoT y pequenos proyectos de firmware que interactuan directamente con componentes fisicos."
307
+ }
308
+ }
309
+ };
310
+ }
311
+ });
312
+
163
313
  // src/languages/asciidoc.ts
164
314
  var asciidoc_exports = {};
165
315
  __export(asciidoc_exports, {
@@ -312,6 +462,43 @@ var init_astro = __esm({
312
462
  }
313
463
  });
314
464
 
465
+ // src/languages/autohotkey.ts
466
+ var autohotkey_exports = {};
467
+ __export(autohotkey_exports, {
468
+ autohotkey: () => exports.autohotkey
469
+ });
470
+ exports.autohotkey = void 0;
471
+ var init_autohotkey = __esm({
472
+ "src/languages/autohotkey.ts"() {
473
+ exports.autohotkey = {
474
+ slug: "autohotkey",
475
+ publishedDate: "2003-11-10",
476
+ extensions: [".ahk", ".ah2"],
477
+ author: "Chris Mallett",
478
+ website: "https://www.autohotkey.com",
479
+ paradigms: ["scripting", "automation", "event-driven", "imperative"],
480
+ tooling: {
481
+ runtimes: ["AutoHotkey"],
482
+ ecosystems: ["Windows", "Desktop Automation"]
483
+ },
484
+ version: "2.0",
485
+ logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_autohotkey.svg",
486
+ i18n: {
487
+ en: {
488
+ name: "AutoHotkey",
489
+ description: "A Windows scripting language for hotkeys, macros, automation, and small utilities.",
490
+ longDescription: "AutoHotkey scripts automate Windows workflows through hotkeys, text expansion, GUI automation, window management, keyboard and mouse control, and custom utility scripts.\n\nIt is popular for personal productivity, repetitive task automation, quick desktop tooling, application launchers, and accessibility-oriented workflows."
491
+ },
492
+ es: {
493
+ name: "AutoHotkey",
494
+ description: "Un lenguaje de scripting para Windows orientado a atajos, macros, automatizacion y utilidades pequenas.",
495
+ longDescription: "Los scripts de AutoHotkey automatizan flujos de Windows mediante atajos, expansion de texto, automatizacion de GUI, gestion de ventanas, control de teclado y mouse, y utilidades personalizadas.\n\nEs popular para productividad personal, automatizacion de tareas repetitivas, herramientas rapidas de escritorio, lanzadores de aplicaciones y flujos orientados a accesibilidad."
496
+ }
497
+ }
498
+ };
499
+ }
500
+ });
501
+
315
502
  // src/languages/awk.ts
316
503
  var awk_exports = {};
317
504
  __export(awk_exports, {
@@ -727,6 +914,44 @@ var init_coffeescript = __esm({
727
914
  }
728
915
  });
729
916
 
917
+ // src/languages/coldfusion.ts
918
+ var coldfusion_exports = {};
919
+ __export(coldfusion_exports, {
920
+ coldfusion: () => exports.coldfusion
921
+ });
922
+ exports.coldfusion = void 0;
923
+ var init_coldfusion = __esm({
924
+ "src/languages/coldfusion.ts"() {
925
+ exports.coldfusion = {
926
+ slug: "coldfusion",
927
+ publishedDate: "1995-07-01",
928
+ extensions: [".cfm", ".cfml", ".cfc"],
929
+ author: "Allaire / Adobe",
930
+ website: "https://www.adobe.com/products/coldfusion-family.html",
931
+ paradigms: ["tag-based", "object-oriented", "scripting", "web"],
932
+ tooling: {
933
+ runtimes: ["Adobe ColdFusion", "Lucee"],
934
+ packageManagers: ["CommandBox"],
935
+ ecosystems: ["Web", "JVM", "Enterprise"]
936
+ },
937
+ version: "ColdFusion 2025",
938
+ logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_cf.svg",
939
+ i18n: {
940
+ en: {
941
+ name: "ColdFusion",
942
+ description: "A JVM-based web language and platform using CFML tags, scripts, and components.",
943
+ longDescription: "ColdFusion uses CFML to build server-rendered web applications, APIs, scheduled jobs, and enterprise integrations with a mix of tag-based markup and script syntax.\n\nIts ecosystem includes Adobe ColdFusion, Lucee, CFML components, database access, templating, mail, file processing, and tooling for long-lived business applications."
944
+ },
945
+ es: {
946
+ name: "ColdFusion",
947
+ description: "Un lenguaje y plataforma web sobre JVM que usa etiquetas, scripts y componentes CFML.",
948
+ longDescription: "ColdFusion usa CFML para crear aplicaciones web renderizadas en servidor, APIs, tareas programadas e integraciones empresariales con una mezcla de marcado basado en etiquetas y sintaxis de script.\n\nSu ecosistema incluye Adobe ColdFusion, Lucee, componentes CFML, acceso a bases de datos, plantillas, correo, procesamiento de archivos y herramientas para aplicaciones de negocio de larga vida."
949
+ }
950
+ }
951
+ };
952
+ }
953
+ });
954
+
730
955
  // src/languages/cpp.ts
731
956
  var cpp_exports = {};
732
957
  __export(cpp_exports, {
@@ -950,6 +1175,44 @@ var init_cue = __esm({
950
1175
  }
951
1176
  });
952
1177
 
1178
+ // src/languages/cython.ts
1179
+ var cython_exports = {};
1180
+ __export(cython_exports, {
1181
+ cython: () => exports.cython
1182
+ });
1183
+ exports.cython = void 0;
1184
+ var init_cython = __esm({
1185
+ "src/languages/cython.ts"() {
1186
+ exports.cython = {
1187
+ slug: "cython",
1188
+ publishedDate: "2007-07-28",
1189
+ extensions: [".pyx", ".pxd", ".pxi"],
1190
+ author: "Robert Bradshaw, Stefan Behnel, Dag Sverre Seljebotn, Greg Ewing, et al.",
1191
+ website: "https://cython.org",
1192
+ paradigms: ["object-oriented", "imperative", "procedural"],
1193
+ tooling: {
1194
+ runtimes: ["CPython"],
1195
+ packageManagers: ["pip", "conda", "Poetry"],
1196
+ ecosystems: ["Python", "Native Extensions", "Scientific Computing"]
1197
+ },
1198
+ version: "3.1.4",
1199
+ logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_cython.svg",
1200
+ i18n: {
1201
+ en: {
1202
+ name: "Cython",
1203
+ description: "A Python superset for compiling typed Python-like code into C extension modules.",
1204
+ longDescription: "Cython extends Python with optional static types, C declarations, and direct calls into C and C++ APIs, allowing Python code to be compiled into native extension modules.\n\nIt is widely used to speed up numeric code, wrap native libraries, build scientific Python packages, and write performance-sensitive components while keeping Python-like syntax."
1205
+ },
1206
+ es: {
1207
+ name: "Cython",
1208
+ description: "Un superconjunto de Python para compilar codigo tipado similar a Python como extensiones en C.",
1209
+ longDescription: "Cython extiende Python con tipos estaticos opcionales, declaraciones de C y llamadas directas a APIs de C y C++, permitiendo compilar codigo Python en modulos de extension nativos.\n\nSe usa ampliamente para acelerar codigo numerico, envolver bibliotecas nativas, crear paquetes cientificos de Python y escribir componentes sensibles al rendimiento manteniendo una sintaxis parecida a Python."
1210
+ }
1211
+ }
1212
+ };
1213
+ }
1214
+ });
1215
+
953
1216
  // src/languages/d.ts
954
1217
  var d_exports = {};
955
1218
  __export(d_exports, {
@@ -1139,6 +1402,44 @@ var init_elm = __esm({
1139
1402
  }
1140
1403
  });
1141
1404
 
1405
+ // src/languages/erb.ts
1406
+ var erb_exports = {};
1407
+ __export(erb_exports, {
1408
+ erb: () => exports.erb
1409
+ });
1410
+ exports.erb = void 0;
1411
+ var init_erb = __esm({
1412
+ "src/languages/erb.ts"() {
1413
+ exports.erb = {
1414
+ slug: "erb",
1415
+ publishedDate: "2000-01-01",
1416
+ extensions: [".erb", ".rhtml", ".html.erb"],
1417
+ author: "Masatoshi Seki / Ruby",
1418
+ website: "https://ruby-doc.org/stdlib/erb/",
1419
+ paradigms: ["templating", "embedded", "markup"],
1420
+ tooling: {
1421
+ runtimes: ["Ruby", "Ruby on Rails"],
1422
+ packageManagers: ["RubyGems", "Bundler"],
1423
+ ecosystems: ["Web", "Ruby", "Static Sites"]
1424
+ },
1425
+ version: "Ruby stdlib",
1426
+ logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Ruby_logo.svg",
1427
+ i18n: {
1428
+ en: {
1429
+ name: "ERB",
1430
+ description: "A Ruby templating system for embedding Ruby code inside text documents.",
1431
+ longDescription: "ERB templates combine plain text, HTML, XML, or configuration output with embedded Ruby expressions and control flow markers.\n\nThey are commonly used in Ruby on Rails views, static site generators, configuration generation, email templates, and any Ruby workflow that needs programmable text rendering."
1432
+ },
1433
+ es: {
1434
+ name: "ERB",
1435
+ description: "Un sistema de plantillas de Ruby para incrustar codigo Ruby dentro de documentos de texto.",
1436
+ longDescription: "Las plantillas ERB combinan texto plano, HTML, XML o salidas de configuracion con expresiones Ruby incrustadas y marcadores de control de flujo.\n\nSe usan comunmente en vistas de Ruby on Rails, generadores de sitios estaticos, generacion de configuracion, plantillas de correo y cualquier flujo Ruby que necesite renderizado programable de texto."
1437
+ }
1438
+ }
1439
+ };
1440
+ }
1441
+ });
1442
+
1142
1443
  // src/languages/erlang.ts
1143
1444
  var erlang_exports = {};
1144
1445
  __export(erlang_exports, {
@@ -1215,6 +1516,43 @@ var init_fennel = __esm({
1215
1516
  }
1216
1517
  });
1217
1518
 
1519
+ // src/languages/forth.ts
1520
+ var forth_exports = {};
1521
+ __export(forth_exports, {
1522
+ forth: () => exports.forth
1523
+ });
1524
+ exports.forth = void 0;
1525
+ var init_forth = __esm({
1526
+ "src/languages/forth.ts"() {
1527
+ exports.forth = {
1528
+ slug: "forth",
1529
+ publishedDate: "1970-01-01",
1530
+ extensions: [".fs", ".fth", ".forth", ".4th"],
1531
+ author: "Charles H. Moore",
1532
+ website: "https://forth-standard.org",
1533
+ paradigms: ["stack-based", "concatenative", "procedural", "interactive"],
1534
+ tooling: {
1535
+ runtimes: ["Gforth", "SwiftForth", "VFX Forth"],
1536
+ ecosystems: ["Embedded", "Firmware", "Language Implementation"]
1537
+ },
1538
+ version: "Forth 2012",
1539
+ logo: "https://upload.wikimedia.org/wikipedia/commons/a/a5/Gforth_Logo.png",
1540
+ i18n: {
1541
+ en: {
1542
+ name: "Forth",
1543
+ description: "A stack-based extensible language used for embedded systems, firmware, and tooling.",
1544
+ longDescription: "Forth programs are built from small words that operate on a data stack, encouraging interactive development, compact runtimes, and language extension from within the program itself.\n\nIt has a long history in embedded systems, boot firmware, instrumentation, space hardware, and custom control environments where simplicity and direct hardware access matter."
1545
+ },
1546
+ es: {
1547
+ name: "Forth",
1548
+ description: "Un lenguaje extensible basado en pila usado en sistemas embebidos, firmware y herramientas.",
1549
+ longDescription: "Los programas Forth se construyen con palabras pequenas que operan sobre una pila de datos, fomentando desarrollo interactivo, runtimes compactos y extension del lenguaje desde el propio programa.\n\nTiene una larga historia en sistemas embebidos, firmware de arranque, instrumentacion, hardware espacial y entornos de control personalizados donde importan la simplicidad y el acceso directo al hardware."
1550
+ }
1551
+ }
1552
+ };
1553
+ }
1554
+ });
1555
+
1218
1556
  // src/languages/fortran.ts
1219
1557
  var fortran_exports = {};
1220
1558
  __export(fortran_exports, {
@@ -2000,6 +2338,44 @@ var init_json = __esm({
2000
2338
  }
2001
2339
  });
2002
2340
 
2341
+ // src/languages/jsonnet.ts
2342
+ var jsonnet_exports = {};
2343
+ __export(jsonnet_exports, {
2344
+ jsonnet: () => exports.jsonnet
2345
+ });
2346
+ exports.jsonnet = void 0;
2347
+ var init_jsonnet = __esm({
2348
+ "src/languages/jsonnet.ts"() {
2349
+ exports.jsonnet = {
2350
+ slug: "jsonnet",
2351
+ publishedDate: "2014-04-01",
2352
+ extensions: [".jsonnet", ".libsonnet"],
2353
+ author: "Google",
2354
+ website: "https://jsonnet.org",
2355
+ paradigms: ["functional", "declarative", "configuration"],
2356
+ tooling: {
2357
+ runtimes: ["Jsonnet", "go-jsonnet"],
2358
+ packageManagers: ["jsonnet-bundler"],
2359
+ ecosystems: ["Configuration", "Kubernetes", "Infrastructure"]
2360
+ },
2361
+ version: "0.21.0",
2362
+ logo: "https://jsonnet.org/img/isologo.svg",
2363
+ i18n: {
2364
+ en: {
2365
+ name: "Jsonnet",
2366
+ description: "A data templating language for generating JSON and related configuration formats.",
2367
+ longDescription: "Jsonnet adds variables, functions, imports, conditionals, object composition, and other programming constructs to a JSON-like syntax for generating structured data.\n\nIt is commonly used for Kubernetes manifests, infrastructure configuration, application settings, and reusable configuration libraries where plain JSON becomes repetitive."
2368
+ },
2369
+ es: {
2370
+ name: "Jsonnet",
2371
+ description: "Un lenguaje de plantillas de datos para generar JSON y formatos de configuracion relacionados.",
2372
+ longDescription: "Jsonnet agrega variables, funciones, imports, condicionales, composicion de objetos y otros constructos de programacion a una sintaxis similar a JSON para generar datos estructurados.\n\nSe usa comunmente en manifiestos de Kubernetes, configuracion de infraestructura, ajustes de aplicaciones y bibliotecas reutilizables de configuracion cuando JSON plano se vuelve repetitivo."
2373
+ }
2374
+ }
2375
+ };
2376
+ }
2377
+ });
2378
+
2003
2379
  // src/languages/julia.ts
2004
2380
  var julia_exports = {};
2005
2381
  __export(julia_exports, {
@@ -4367,11 +4743,16 @@ var init_zsh = __esm({
4367
4743
  init_abap();
4368
4744
  init_actionscript();
4369
4745
  init_ada();
4746
+ init_antlr();
4370
4747
  init_apex();
4748
+ init_apl();
4749
+ init_applescript();
4750
+ init_arduino();
4371
4751
  init_asciidoc();
4372
4752
  init_asp();
4373
4753
  init_assembly();
4374
4754
  init_astro();
4755
+ init_autohotkey();
4375
4756
  init_awk();
4376
4757
  init_bash();
4377
4758
  init_batch();
@@ -4383,19 +4764,23 @@ init_clojure();
4383
4764
  init_cmake();
4384
4765
  init_cobol();
4385
4766
  init_coffeescript();
4767
+ init_coldfusion();
4386
4768
  init_cpp();
4387
4769
  init_crystal();
4388
4770
  init_csharp();
4389
4771
  init_css();
4390
4772
  init_cuda();
4391
4773
  init_cue();
4774
+ init_cython();
4392
4775
  init_d();
4393
4776
  init_dart();
4394
4777
  init_dockerfile();
4395
4778
  init_elixir();
4396
4779
  init_elm();
4780
+ init_erb();
4397
4781
  init_erlang();
4398
4782
  init_fennel();
4783
+ init_forth();
4399
4784
  init_fortran();
4400
4785
  init_fsharp();
4401
4786
  init_gdscript();
@@ -4417,6 +4802,7 @@ init_java();
4417
4802
  init_javascript();
4418
4803
  init_jinja();
4419
4804
  init_json();
4805
+ init_jsonnet();
4420
4806
  init_julia();
4421
4807
  init_jupyter_notebook();
4422
4808
  init_kotlin();
@@ -4484,12 +4870,17 @@ var languages = [
4484
4870
  exports.abap,
4485
4871
  exports.actionscript,
4486
4872
  exports.ada,
4873
+ exports.antlr,
4487
4874
  exports.apex,
4875
+ exports.apl,
4876
+ exports.applescript,
4877
+ exports.arduino,
4488
4878
  asciidoc,
4489
4879
  exports.asp,
4490
4880
  exports.astro,
4491
4881
  exports.assembly,
4492
4882
  exports.awk,
4883
+ exports.autohotkey,
4493
4884
  exports.bash,
4494
4885
  exports.batch,
4495
4886
  bazel,
@@ -4499,6 +4890,7 @@ var languages = [
4499
4890
  exports.cmake,
4500
4891
  exports.clojure,
4501
4892
  exports.coffeescript,
4893
+ exports.coldfusion,
4502
4894
  exports.cobol,
4503
4895
  exports.cpp,
4504
4896
  exports.csharp,
@@ -4506,14 +4898,17 @@ var languages = [
4506
4898
  exports.css,
4507
4899
  cue,
4508
4900
  exports.cuda,
4901
+ exports.cython,
4509
4902
  exports.d,
4510
4903
  exports.dart,
4511
4904
  exports.dockerfile,
4512
4905
  exports.elixir,
4513
4906
  exports.elm,
4907
+ exports.erb,
4514
4908
  exports.erlang,
4515
4909
  exports.fennel,
4516
4910
  exports.fortran,
4911
+ exports.forth,
4517
4912
  exports.fsharp,
4518
4913
  gdscript,
4519
4914
  exports.git,
@@ -4534,6 +4929,7 @@ var languages = [
4534
4929
  exports.javascript,
4535
4930
  jinja,
4536
4931
  exports.json,
4932
+ exports.jsonnet,
4537
4933
  exports.jupyterNotebook,
4538
4934
  exports.julia,
4539
4935
  exports.kotlin,
@@ -4656,12 +5052,17 @@ var languageIndex = [
4656
5052
  { slug: "abap", extensions: [".abap"] },
4657
5053
  { slug: "actionscript", extensions: [".as"] },
4658
5054
  { slug: "ada", extensions: [".adb", ".ads", ".ada"] },
5055
+ { slug: "antlr", extensions: [".g4"] },
4659
5056
  { slug: "apex", extensions: [".cls", ".trigger"] },
5057
+ { slug: "apl", extensions: [".apl", ".dyalog"] },
5058
+ { slug: "applescript", extensions: [".applescript", ".scpt", ".scptd"] },
5059
+ { slug: "arduino", extensions: [".ino", ".pde"] },
4660
5060
  { slug: "asciidoc", extensions: [".adoc", ".asciidoc", ".asc"] },
4661
5061
  { slug: "asp", extensions: [".asp", ".aspx", ".ascx", ".ashx", ".asmx", ".master"] },
4662
5062
  { slug: "astro", extensions: [".astro"] },
4663
5063
  { slug: "assembly", extensions: [".asm", ".s", ".S", ".inc"] },
4664
5064
  { slug: "awk", extensions: [".awk"] },
5065
+ { slug: "autohotkey", extensions: [".ahk", ".ah2"] },
4665
5066
  {
4666
5067
  slug: "bash",
4667
5068
  extensions: [".sh", ".bash", ".bashrc", ".bash_profile", ".bash_login", ".profile"]
@@ -4677,6 +5078,7 @@ var languageIndex = [
4677
5078
  { slug: "cmake", extensions: ["CMakeLists.txt", ".cmake"] },
4678
5079
  { slug: "clojure", extensions: [".clj", ".cljs", ".cljc", ".edn", ".bb"] },
4679
5080
  { slug: "coffeescript", extensions: [".coffee", ".litcoffee", ".cson"] },
5081
+ { slug: "coldfusion", extensions: [".cfm", ".cfml", ".cfc"] },
4680
5082
  { slug: "cobol", extensions: [".cob", ".cbl", ".cobol", ".cpy"] },
4681
5083
  { slug: "cpp", extensions: [".cpp", ".cc", ".cxx", ".h", ".hpp", ".hh", ".hxx"] },
4682
5084
  { slug: "csharp", extensions: [".cs", ".csx"] },
@@ -4684,11 +5086,13 @@ var languageIndex = [
4684
5086
  { slug: "css", extensions: [".css"] },
4685
5087
  { slug: "cue", extensions: [".cue"] },
4686
5088
  { slug: "cuda", extensions: [".cu", ".cuh"] },
5089
+ { slug: "cython", extensions: [".pyx", ".pxd", ".pxi"] },
4687
5090
  { slug: "d", extensions: [".d", ".di"] },
4688
5091
  { slug: "dart", extensions: [".dart"] },
4689
5092
  { slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
4690
5093
  { slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
4691
5094
  { slug: "elm", extensions: [".elm"] },
5095
+ { slug: "erb", extensions: [".erb", ".rhtml", ".html.erb"] },
4692
5096
  {
4693
5097
  slug: "erlang",
4694
5098
  extensions: [".erl", ".hrl", ".app.src", ".escript", ".xrl", ".yrl", "rebar.config"]
@@ -4698,6 +5102,7 @@ var languageIndex = [
4698
5102
  slug: "fortran",
4699
5103
  extensions: [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"]
4700
5104
  },
5105
+ { slug: "forth", extensions: [".fs", ".fth", ".forth", ".4th"] },
4701
5106
  { slug: "fsharp", extensions: [".fs", ".fsi", ".fsx", ".fsscript"] },
4702
5107
  { slug: "gdscript", extensions: [".gd"] },
4703
5108
  { slug: "git", extensions: [".git", ".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"] },
@@ -4721,6 +5126,7 @@ var languageIndex = [
4721
5126
  { slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
4722
5127
  { slug: "jinja", extensions: [".jinja", ".jinja2", ".j2"] },
4723
5128
  { slug: "json", extensions: [".json"] },
5129
+ { slug: "jsonnet", extensions: [".jsonnet", ".libsonnet"] },
4724
5130
  { slug: "jupyter-notebook", extensions: [".ipynb"] },
4725
5131
  { slug: "julia", extensions: [".jl"] },
4726
5132
  { slug: "kotlin", extensions: [".kt", ".kts"] },
@@ -4795,11 +5201,16 @@ var languageLoaders = {
4795
5201
  abap: () => Promise.resolve().then(() => (init_abap(), abap_exports)).then((module) => module.abap),
4796
5202
  actionscript: () => Promise.resolve().then(() => (init_actionscript(), actionscript_exports)).then((module) => module.actionscript),
4797
5203
  ada: () => Promise.resolve().then(() => (init_ada(), ada_exports)).then((module) => module.ada),
5204
+ antlr: () => Promise.resolve().then(() => (init_antlr(), antlr_exports)).then((module) => module.antlr),
4798
5205
  apex: () => Promise.resolve().then(() => (init_apex(), apex_exports)).then((module) => module.apex),
5206
+ apl: () => Promise.resolve().then(() => (init_apl(), apl_exports)).then((module) => module.apl),
5207
+ applescript: () => Promise.resolve().then(() => (init_applescript(), applescript_exports)).then((module) => module.applescript),
5208
+ arduino: () => Promise.resolve().then(() => (init_arduino(), arduino_exports)).then((module) => module.arduino),
4799
5209
  asciidoc: () => Promise.resolve().then(() => (init_asciidoc(), asciidoc_exports)).then((module) => module.asciidoc),
4800
5210
  asp: () => Promise.resolve().then(() => (init_asp(), asp_exports)).then((module) => module.asp),
4801
5211
  assembly: () => Promise.resolve().then(() => (init_assembly(), assembly_exports)).then((module) => module.assembly),
4802
5212
  astro: () => Promise.resolve().then(() => (init_astro(), astro_exports)).then((module) => module.astro),
5213
+ autohotkey: () => Promise.resolve().then(() => (init_autohotkey(), autohotkey_exports)).then((module) => module.autohotkey),
4803
5214
  awk: () => Promise.resolve().then(() => (init_awk(), awk_exports)).then((module) => module.awk),
4804
5215
  bash: () => Promise.resolve().then(() => (init_bash(), bash_exports)).then((module) => module.bash),
4805
5216
  batch: () => Promise.resolve().then(() => (init_batch(), batch_exports)).then((module) => module.batch),
@@ -4811,20 +5222,24 @@ var languageLoaders = {
4811
5222
  clojure: () => Promise.resolve().then(() => (init_clojure(), clojure_exports)).then((module) => module.clojure),
4812
5223
  cobol: () => Promise.resolve().then(() => (init_cobol(), cobol_exports)).then((module) => module.cobol),
4813
5224
  coffeescript: () => Promise.resolve().then(() => (init_coffeescript(), coffeescript_exports)).then((module) => module.coffeescript),
5225
+ coldfusion: () => Promise.resolve().then(() => (init_coldfusion(), coldfusion_exports)).then((module) => module.coldfusion),
4814
5226
  cpp: () => Promise.resolve().then(() => (init_cpp(), cpp_exports)).then((module) => module.cpp),
4815
5227
  csharp: () => Promise.resolve().then(() => (init_csharp(), csharp_exports)).then((module) => module.csharp),
4816
5228
  crystal: () => Promise.resolve().then(() => (init_crystal(), crystal_exports)).then((module) => module.crystal),
4817
5229
  css: () => Promise.resolve().then(() => (init_css(), css_exports)).then((module) => module.css),
4818
5230
  cue: () => Promise.resolve().then(() => (init_cue(), cue_exports)).then((module) => module.cue),
4819
5231
  cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
5232
+ cython: () => Promise.resolve().then(() => (init_cython(), cython_exports)).then((module) => module.cython),
4820
5233
  d: () => Promise.resolve().then(() => (init_d(), d_exports)).then((module) => module.d),
4821
5234
  dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
4822
5235
  dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
4823
5236
  elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
4824
5237
  elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
5238
+ erb: () => Promise.resolve().then(() => (init_erb(), erb_exports)).then((module) => module.erb),
4825
5239
  erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
4826
5240
  fennel: () => Promise.resolve().then(() => (init_fennel(), fennel_exports)).then((module) => module.fennel),
4827
5241
  fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
5242
+ forth: () => Promise.resolve().then(() => (init_forth(), forth_exports)).then((module) => module.forth),
4828
5243
  fsharp: () => Promise.resolve().then(() => (init_fsharp(), fsharp_exports)).then((module) => module.fsharp),
4829
5244
  gdscript: () => Promise.resolve().then(() => (init_gdscript(), gdscript_exports)).then((module) => module.gdscript),
4830
5245
  git: () => Promise.resolve().then(() => (init_git(), git_exports)).then((module) => module.git),
@@ -4845,6 +5260,7 @@ var languageLoaders = {
4845
5260
  javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
4846
5261
  jinja: () => Promise.resolve().then(() => (init_jinja(), jinja_exports)).then((module) => module.jinja),
4847
5262
  json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
5263
+ jsonnet: () => Promise.resolve().then(() => (init_jsonnet(), jsonnet_exports)).then((module) => module.jsonnet),
4848
5264
  "jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
4849
5265
  julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
4850
5266
  kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
@@ -5008,11 +5424,16 @@ var api = {
5008
5424
  init_abap();
5009
5425
  init_actionscript();
5010
5426
  init_ada();
5427
+ init_antlr();
5011
5428
  init_apex();
5429
+ init_apl();
5430
+ init_applescript();
5431
+ init_arduino();
5012
5432
  init_asp();
5013
5433
  init_astro();
5014
5434
  init_assembly();
5015
5435
  init_awk();
5436
+ init_autohotkey();
5016
5437
  init_bash();
5017
5438
  init_batch();
5018
5439
  init_c();
@@ -5020,19 +5441,23 @@ init_cmake();
5020
5441
  init_clojure();
5021
5442
  init_coffeescript();
5022
5443
  init_cobol();
5444
+ init_coldfusion();
5023
5445
  init_csharp();
5024
5446
  init_cpp();
5025
5447
  init_crystal();
5026
5448
  init_css();
5027
5449
  init_cuda();
5450
+ init_cython();
5028
5451
  init_d();
5029
5452
  init_dart();
5030
5453
  init_dockerfile();
5031
5454
  init_elixir();
5032
5455
  init_elm();
5456
+ init_erb();
5033
5457
  init_erlang();
5034
5458
  init_fennel();
5035
5459
  init_fortran();
5460
+ init_forth();
5036
5461
  init_fsharp();
5037
5462
  init_git();
5038
5463
  init_gleam();
@@ -5049,6 +5474,7 @@ init_ini();
5049
5474
  init_java();
5050
5475
  init_javascript();
5051
5476
  init_json();
5477
+ init_jsonnet();
5052
5478
  init_jupyter_notebook();
5053
5479
  init_julia();
5054
5480
  init_kotlin();