code-languages 1.29.1 → 1.30.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.
- package/README.md +12 -2
- package/dist/api.cjs +428 -1
- package/dist/api.d.cts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +428 -1
- package/dist/detect-slugs.cjs +10 -0
- package/dist/detect-slugs.d.cts +1 -1
- package/dist/detect-slugs.d.ts +1 -1
- package/dist/detect-slugs.js +10 -0
- package/dist/detect.cjs +308 -1
- package/dist/detect.js +308 -1
- package/dist/index.cjs +438 -1
- package/dist/index.d.cts +278 -1
- package/dist/index.d.ts +278 -1
- package/dist/index.js +439 -2
- package/dist/{language-registry-CehUh46c.d.cts → language-registry-BQKRHyKo.d.cts} +30 -0
- package/dist/{language-registry-CehUh46c.d.ts → language-registry-BQKRHyKo.d.ts} +30 -0
- package/dist/languages/dafny.cjs +33 -0
- package/dist/languages/dafny.d.cts +30 -0
- package/dist/languages/dafny.d.ts +30 -0
- package/dist/languages/dafny.js +31 -0
- package/dist/languages/ejs.cjs +33 -0
- package/dist/languages/ejs.d.cts +30 -0
- package/dist/languages/ejs.d.ts +30 -0
- package/dist/languages/ejs.js +31 -0
- package/dist/languages/freemarker.cjs +33 -0
- package/dist/languages/freemarker.d.cts +30 -0
- package/dist/languages/freemarker.d.ts +30 -0
- package/dist/languages/freemarker.js +31 -0
- package/dist/languages/fstar.cjs +33 -0
- package/dist/languages/fstar.d.cts +30 -0
- package/dist/languages/fstar.d.ts +30 -0
- package/dist/languages/fstar.js +31 -0
- package/dist/languages/isabelle.cjs +32 -0
- package/dist/languages/isabelle.d.cts +29 -0
- package/dist/languages/isabelle.d.ts +29 -0
- package/dist/languages/isabelle.js +30 -0
- package/dist/languages/jsonc.cjs +32 -0
- package/dist/languages/jsonc.d.cts +29 -0
- package/dist/languages/jsonc.d.ts +29 -0
- package/dist/languages/jsonc.js +30 -0
- package/dist/languages/just.cjs +33 -0
- package/dist/languages/just.d.cts +30 -0
- package/dist/languages/just.d.ts +30 -0
- package/dist/languages/just.js +31 -0
- package/dist/languages/kdl.cjs +32 -0
- package/dist/languages/kdl.d.cts +29 -0
- package/dist/languages/kdl.d.ts +29 -0
- package/dist/languages/kdl.js +30 -0
- package/dist/languages/kotlin.cjs +1 -1
- package/dist/languages/kotlin.js +1 -1
- package/dist/languages/openapi.cjs +33 -0
- package/dist/languages/openapi.d.cts +30 -0
- package/dist/languages/openapi.d.ts +30 -0
- package/dist/languages/openapi.js +31 -0
- package/dist/languages/puppet.cjs +33 -0
- package/dist/languages/puppet.d.cts +30 -0
- package/dist/languages/puppet.d.ts +30 -0
- package/dist/languages/puppet.js +31 -0
- package/package.json +55 -5
package/dist/api.cjs
CHANGED
|
@@ -2415,6 +2415,45 @@ var init_d = __esm({
|
|
|
2415
2415
|
}
|
|
2416
2416
|
});
|
|
2417
2417
|
|
|
2418
|
+
// src/languages/dafny.ts
|
|
2419
|
+
var dafny_exports = {};
|
|
2420
|
+
__export(dafny_exports, {
|
|
2421
|
+
dafny: () => dafny
|
|
2422
|
+
});
|
|
2423
|
+
var dafny;
|
|
2424
|
+
var init_dafny = __esm({
|
|
2425
|
+
"src/languages/dafny.ts"() {
|
|
2426
|
+
dafny = {
|
|
2427
|
+
slug: "dafny",
|
|
2428
|
+
publishedDate: "2009-01-01",
|
|
2429
|
+
extensions: [".dfy"],
|
|
2430
|
+
author: "K. Rustan M. Leino / Microsoft Research",
|
|
2431
|
+
website: "https://dafny.org",
|
|
2432
|
+
paradigms: ["imperative", "functional", "object-oriented", "formal verification"],
|
|
2433
|
+
tooling: {
|
|
2434
|
+
runtimes: [".NET", "Java", "JavaScript", "Go", "Python"],
|
|
2435
|
+
packageManagers: ["NuGet", "Homebrew"],
|
|
2436
|
+
ecosystems: ["Formal Methods", ".NET", "Verification"]
|
|
2437
|
+
},
|
|
2438
|
+
version: "4.11.0",
|
|
2439
|
+
logo: "https://dummyimage.com/32x32/0B6D91/ffffff.png&text=D",
|
|
2440
|
+
color: "#0B6D91",
|
|
2441
|
+
i18n: {
|
|
2442
|
+
en: {
|
|
2443
|
+
name: "Dafny",
|
|
2444
|
+
description: "A verification-aware programming language with specifications, proofs, and compilation to several mainstream targets.",
|
|
2445
|
+
longDescription: "Dafny is a programming language and verifier designed for writing correct-by-construction software. Programs can include preconditions, postconditions, invariants, termination metrics, and assertions that are checked by an automated verifier.\n\nIt combines imperative, functional, and object-oriented features with formal specification syntax. Dafny code can be compiled to targets such as C#, Java, JavaScript, Go, and Python, making it useful for teaching, research, and high-assurance software components."
|
|
2446
|
+
},
|
|
2447
|
+
es: {
|
|
2448
|
+
name: "Dafny",
|
|
2449
|
+
description: "Lenguaje de programacion orientado a verificacion, con especificaciones, pruebas y compilacion a varios destinos comunes.",
|
|
2450
|
+
longDescription: "Dafny es un lenguaje de programacion y verificador pensado para escribir software correcto por construccion. Los programas pueden incluir precondiciones, postcondiciones, invariantes, metricas de terminacion y aserciones que revisa un verificador automatico.\n\nCombina rasgos imperativos, funcionales y orientados a objetos con sintaxis de especificacion formal. El codigo Dafny puede compilarse a destinos como C#, Java, JavaScript, Go y Python."
|
|
2451
|
+
}
|
|
2452
|
+
}
|
|
2453
|
+
};
|
|
2454
|
+
}
|
|
2455
|
+
});
|
|
2456
|
+
|
|
2418
2457
|
// src/languages/dart.ts
|
|
2419
2458
|
var dart_exports = {};
|
|
2420
2459
|
__export(dart_exports, {
|
|
@@ -2768,6 +2807,45 @@ var init_eiffel = __esm({
|
|
|
2768
2807
|
}
|
|
2769
2808
|
});
|
|
2770
2809
|
|
|
2810
|
+
// src/languages/ejs.ts
|
|
2811
|
+
var ejs_exports = {};
|
|
2812
|
+
__export(ejs_exports, {
|
|
2813
|
+
ejs: () => ejs
|
|
2814
|
+
});
|
|
2815
|
+
var ejs;
|
|
2816
|
+
var init_ejs = __esm({
|
|
2817
|
+
"src/languages/ejs.ts"() {
|
|
2818
|
+
ejs = {
|
|
2819
|
+
slug: "ejs",
|
|
2820
|
+
publishedDate: "2011-02-01",
|
|
2821
|
+
extensions: [".ejs"],
|
|
2822
|
+
author: "Matthew Eernisse",
|
|
2823
|
+
website: "https://ejs.co",
|
|
2824
|
+
paradigms: ["template", "embedded", "imperative"],
|
|
2825
|
+
tooling: {
|
|
2826
|
+
runtimes: ["Node.js", "Browser"],
|
|
2827
|
+
packageManagers: ["npm", "pnpm", "Yarn"],
|
|
2828
|
+
ecosystems: ["JavaScript", "Web", "Express"]
|
|
2829
|
+
},
|
|
2830
|
+
version: "3.1.10",
|
|
2831
|
+
logo: "https://cdn.simpleicons.org/ejs/B4CA65",
|
|
2832
|
+
color: "#B4CA65",
|
|
2833
|
+
i18n: {
|
|
2834
|
+
en: {
|
|
2835
|
+
name: "EJS",
|
|
2836
|
+
description: "An embedded JavaScript templating language for generating HTML and text from familiar JavaScript expressions.",
|
|
2837
|
+
longDescription: "EJS, short for Embedded JavaScript, is a templating language that lets developers generate markup with ordinary JavaScript control flow and interpolation. Templates are commonly used to render server-side HTML in Node.js applications.\n\nIt is intentionally small and direct: template files mix literal output with tags for evaluation, escaped output, and unescaped output. EJS is popular in Express applications, documentation generators, and simple build workflows."
|
|
2838
|
+
},
|
|
2839
|
+
es: {
|
|
2840
|
+
name: "EJS",
|
|
2841
|
+
description: "Lenguaje de plantillas con JavaScript embebido para generar HTML y texto usando expresiones familiares.",
|
|
2842
|
+
longDescription: "EJS, abreviatura de Embedded JavaScript, es un lenguaje de plantillas que permite generar marcado con interpolacion y control de flujo de JavaScript. Se usa con frecuencia para renderizar HTML del lado del servidor en aplicaciones Node.js.\n\nEs pequeno y directo: los archivos mezclan salida literal con etiquetas para evaluacion, salida escapada y salida sin escapar. EJS es comun en aplicaciones Express, generadores de documentacion y flujos de build simples."
|
|
2843
|
+
}
|
|
2844
|
+
}
|
|
2845
|
+
};
|
|
2846
|
+
}
|
|
2847
|
+
});
|
|
2848
|
+
|
|
2771
2849
|
// src/languages/elixir.ts
|
|
2772
2850
|
var elixir_exports = {};
|
|
2773
2851
|
__export(elixir_exports, {
|
|
@@ -3297,6 +3375,45 @@ var init_fortran = __esm({
|
|
|
3297
3375
|
}
|
|
3298
3376
|
});
|
|
3299
3377
|
|
|
3378
|
+
// src/languages/freemarker.ts
|
|
3379
|
+
var freemarker_exports = {};
|
|
3380
|
+
__export(freemarker_exports, {
|
|
3381
|
+
freemarker: () => freemarker
|
|
3382
|
+
});
|
|
3383
|
+
var freemarker;
|
|
3384
|
+
var init_freemarker = __esm({
|
|
3385
|
+
"src/languages/freemarker.ts"() {
|
|
3386
|
+
freemarker = {
|
|
3387
|
+
slug: "freemarker",
|
|
3388
|
+
publishedDate: "1999-01-01",
|
|
3389
|
+
extensions: [".ftl", ".ftlh", ".ftlx"],
|
|
3390
|
+
author: "Apache Software Foundation",
|
|
3391
|
+
website: "https://freemarker.apache.org",
|
|
3392
|
+
paradigms: ["template", "declarative"],
|
|
3393
|
+
tooling: {
|
|
3394
|
+
runtimes: ["JVM"],
|
|
3395
|
+
packageManagers: ["Maven", "Gradle"],
|
|
3396
|
+
ecosystems: ["Java", "Web", "Apache"]
|
|
3397
|
+
},
|
|
3398
|
+
version: "2.3.34",
|
|
3399
|
+
logo: "https://dummyimage.com/32x32/326CE5/ffffff.png&text=FM",
|
|
3400
|
+
color: "#326CE5",
|
|
3401
|
+
i18n: {
|
|
3402
|
+
en: {
|
|
3403
|
+
name: "FreeMarker",
|
|
3404
|
+
description: "A JVM template language used to generate HTML, emails, configuration files, and other text output.",
|
|
3405
|
+
longDescription: "Apache FreeMarker is a template engine and template language for Java applications. It separates presentation text from application code and can generate HTML pages, emails, source files, configuration files, and other structured text.\n\nFreeMarker templates use expressions, directives, macros, includes, and data-model access rather than embedding Java code directly. It is common in server-side Java web applications and code generation workflows."
|
|
3406
|
+
},
|
|
3407
|
+
es: {
|
|
3408
|
+
name: "FreeMarker",
|
|
3409
|
+
description: "Lenguaje de plantillas para la JVM usado para generar HTML, correos, configuracion y otras salidas de texto.",
|
|
3410
|
+
longDescription: "Apache FreeMarker es un motor y lenguaje de plantillas para aplicaciones Java. Separa el texto de presentacion del codigo de aplicacion y puede generar paginas HTML, correos, codigo fuente, archivos de configuracion y otros textos estructurados.\n\nLas plantillas FreeMarker usan expresiones, directivas, macros, inclusiones y acceso a modelos de datos en lugar de embeber codigo Java directamente."
|
|
3411
|
+
}
|
|
3412
|
+
}
|
|
3413
|
+
};
|
|
3414
|
+
}
|
|
3415
|
+
});
|
|
3416
|
+
|
|
3300
3417
|
// src/languages/fsharp.ts
|
|
3301
3418
|
var fsharp_exports = {};
|
|
3302
3419
|
__export(fsharp_exports, {
|
|
@@ -3356,6 +3473,45 @@ var init_fsharp = __esm({
|
|
|
3356
3473
|
}
|
|
3357
3474
|
});
|
|
3358
3475
|
|
|
3476
|
+
// src/languages/fstar.ts
|
|
3477
|
+
var fstar_exports = {};
|
|
3478
|
+
__export(fstar_exports, {
|
|
3479
|
+
fstar: () => fstar
|
|
3480
|
+
});
|
|
3481
|
+
var fstar;
|
|
3482
|
+
var init_fstar = __esm({
|
|
3483
|
+
"src/languages/fstar.ts"() {
|
|
3484
|
+
fstar = {
|
|
3485
|
+
slug: "fstar",
|
|
3486
|
+
publishedDate: "2011-01-01",
|
|
3487
|
+
extensions: [".fst", ".fsti"],
|
|
3488
|
+
author: "Microsoft Research / INRIA",
|
|
3489
|
+
website: "https://www.fstar-lang.org",
|
|
3490
|
+
paradigms: ["functional", "dependent types", "formal verification"],
|
|
3491
|
+
tooling: {
|
|
3492
|
+
runtimes: ["F* toolchain", "OCaml", "F#", "C"],
|
|
3493
|
+
packageManagers: ["opam", "NuGet"],
|
|
3494
|
+
ecosystems: ["Formal Methods", "ML", "Low-level Verification"]
|
|
3495
|
+
},
|
|
3496
|
+
version: "2026.04.17",
|
|
3497
|
+
logo: "https://dummyimage.com/32x32/572E91/ffffff.png&text=F%2A",
|
|
3498
|
+
color: "#572E91",
|
|
3499
|
+
i18n: {
|
|
3500
|
+
en: {
|
|
3501
|
+
name: "F*",
|
|
3502
|
+
description: "A dependently typed functional language for program verification, proofs, and extraction to executable code.",
|
|
3503
|
+
longDescription: "F* is a verification-oriented functional language with dependent types, refinement types, effects, and proof automation. It is used to specify and verify functional correctness, security properties, and low-level systems code.\n\nPrograms and proofs can be checked by the F* toolchain and extracted to targets such as OCaml, F#, and C through related tooling. The language is used in research and high-assurance projects where executable code and machine-checked proofs need to stay close together."
|
|
3504
|
+
},
|
|
3505
|
+
es: {
|
|
3506
|
+
name: "F*",
|
|
3507
|
+
description: "Lenguaje funcional con tipos dependientes para verificacion de programas, pruebas y extraccion a codigo ejecutable.",
|
|
3508
|
+
longDescription: "F* es un lenguaje funcional orientado a verificacion con tipos dependientes, tipos refinados, efectos y automatizacion de pruebas. Se usa para especificar y verificar correccion funcional, propiedades de seguridad y codigo de sistemas de bajo nivel.\n\nLos programas y pruebas se revisan con la cadena de herramientas de F* y pueden extraerse a destinos como OCaml, F# y C mediante herramientas relacionadas."
|
|
3509
|
+
}
|
|
3510
|
+
}
|
|
3511
|
+
};
|
|
3512
|
+
}
|
|
3513
|
+
});
|
|
3514
|
+
|
|
3359
3515
|
// src/languages/gdscript.ts
|
|
3360
3516
|
var gdscript_exports = {};
|
|
3361
3517
|
__export(gdscript_exports, {
|
|
@@ -4644,6 +4800,44 @@ var init_ini = __esm({
|
|
|
4644
4800
|
}
|
|
4645
4801
|
});
|
|
4646
4802
|
|
|
4803
|
+
// src/languages/isabelle.ts
|
|
4804
|
+
var isabelle_exports = {};
|
|
4805
|
+
__export(isabelle_exports, {
|
|
4806
|
+
isabelle: () => isabelle
|
|
4807
|
+
});
|
|
4808
|
+
var isabelle;
|
|
4809
|
+
var init_isabelle = __esm({
|
|
4810
|
+
"src/languages/isabelle.ts"() {
|
|
4811
|
+
isabelle = {
|
|
4812
|
+
slug: "isabelle",
|
|
4813
|
+
publishedDate: "1986-01-01",
|
|
4814
|
+
extensions: [".thy"],
|
|
4815
|
+
author: "Lawrence Paulson / University of Cambridge and TU Munich",
|
|
4816
|
+
website: "https://isabelle.in.tum.de",
|
|
4817
|
+
paradigms: ["theorem proving", "declarative", "functional"],
|
|
4818
|
+
tooling: {
|
|
4819
|
+
runtimes: ["Isabelle/jEdit", "Poly/ML", "Scala"],
|
|
4820
|
+
ecosystems: ["Formal Methods", "Proof Assistants", "Higher-order Logic"]
|
|
4821
|
+
},
|
|
4822
|
+
version: "Isabelle2025-2",
|
|
4823
|
+
logo: "https://dummyimage.com/32x32/6A5ACD/ffffff.png&text=Is",
|
|
4824
|
+
color: "#6A5ACD",
|
|
4825
|
+
i18n: {
|
|
4826
|
+
en: {
|
|
4827
|
+
name: "Isabelle",
|
|
4828
|
+
description: "A proof assistant and theory language for machine-checked mathematics, logic, and formal verification.",
|
|
4829
|
+
longDescription: "Isabelle is a generic proof assistant with a rich theory language used to develop machine-checked mathematics and formal verification projects. Its most common object logic is Isabelle/HOL, a higher-order logic used in many academic and industrial verification efforts.\n\nIsabelle theory files combine definitions, lemmas, structured Isar proofs, automation, and document-oriented markup. The system includes an IDE, libraries, code generation support, and integrations with external automated provers."
|
|
4830
|
+
},
|
|
4831
|
+
es: {
|
|
4832
|
+
name: "Isabelle",
|
|
4833
|
+
description: "Asistente de pruebas y lenguaje de teorias para matematica, logica y verificacion formal comprobadas por maquina.",
|
|
4834
|
+
longDescription: "Isabelle es un asistente de pruebas generico con un lenguaje de teorias usado para desarrollar matematica comprobada por maquina y proyectos de verificacion formal. Su logica objeto mas comun es Isabelle/HOL, una logica de orden superior usada en muchos trabajos academicos e industriales.\n\nLos archivos de teoria combinan definiciones, lemas, pruebas estructuradas Isar, automatizacion y marcado orientado a documentos."
|
|
4835
|
+
}
|
|
4836
|
+
}
|
|
4837
|
+
};
|
|
4838
|
+
}
|
|
4839
|
+
});
|
|
4840
|
+
|
|
4647
4841
|
// src/languages/janet.ts
|
|
4648
4842
|
var janet_exports = {};
|
|
4649
4843
|
__export(janet_exports, {
|
|
@@ -4993,6 +5187,44 @@ var init_json5 = __esm({
|
|
|
4993
5187
|
}
|
|
4994
5188
|
});
|
|
4995
5189
|
|
|
5190
|
+
// src/languages/jsonc.ts
|
|
5191
|
+
var jsonc_exports = {};
|
|
5192
|
+
__export(jsonc_exports, {
|
|
5193
|
+
jsonc: () => jsonc
|
|
5194
|
+
});
|
|
5195
|
+
var jsonc;
|
|
5196
|
+
var init_jsonc = __esm({
|
|
5197
|
+
"src/languages/jsonc.ts"() {
|
|
5198
|
+
jsonc = {
|
|
5199
|
+
slug: "jsonc",
|
|
5200
|
+
publishedDate: "2015-04-29",
|
|
5201
|
+
extensions: [".jsonc", ".code-workspace"],
|
|
5202
|
+
author: "Microsoft",
|
|
5203
|
+
website: "https://jsonc.org",
|
|
5204
|
+
paradigms: ["data serialization", "configuration"],
|
|
5205
|
+
tooling: {
|
|
5206
|
+
runtimes: ["Editors", "Build tools"],
|
|
5207
|
+
ecosystems: ["JavaScript", "TypeScript", "Configuration"]
|
|
5208
|
+
},
|
|
5209
|
+
version: "JSON with Comments",
|
|
5210
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_json.svg",
|
|
5211
|
+
color: "#F5DE19",
|
|
5212
|
+
i18n: {
|
|
5213
|
+
en: {
|
|
5214
|
+
name: "JSONC",
|
|
5215
|
+
description: "A JSON-compatible configuration format that permits JavaScript-style comments and optional editor-friendly extensions.",
|
|
5216
|
+
longDescription: "JSONC, or JSON with Comments, is a JSON-derived configuration format that allows comments while preserving the familiar JSON data model. It is widely recognized because Visual Studio Code uses it for settings, launch configurations, and workspace files.\n\nThe format is intended for human-maintained configuration rather than data interchange between services. Tooling usually parses JSONC into ordinary JSON-like values after stripping comments and handling the accepted extensions."
|
|
5217
|
+
},
|
|
5218
|
+
es: {
|
|
5219
|
+
name: "JSONC",
|
|
5220
|
+
description: "Formato de configuracion compatible con JSON que permite comentarios estilo JavaScript y extensiones amigables para editores.",
|
|
5221
|
+
longDescription: "JSONC, o JSON con comentarios, es un formato de configuracion derivado de JSON que permite comentarios sin abandonar el modelo de datos familiar. Es muy conocido porque Visual Studio Code lo usa en ajustes, configuraciones de ejecucion y archivos de workspace.\n\nEsta pensado para configuracion mantenida por humanos, no para intercambio de datos entre servicios. Las herramientas suelen convertir JSONC a valores similares a JSON tras quitar comentarios."
|
|
5222
|
+
}
|
|
5223
|
+
}
|
|
5224
|
+
};
|
|
5225
|
+
}
|
|
5226
|
+
});
|
|
5227
|
+
|
|
4996
5228
|
// src/languages/jsonnet.ts
|
|
4997
5229
|
var jsonnet_exports = {};
|
|
4998
5230
|
__export(jsonnet_exports, {
|
|
@@ -5170,6 +5402,45 @@ var init_jupyter_notebook = __esm({
|
|
|
5170
5402
|
}
|
|
5171
5403
|
});
|
|
5172
5404
|
|
|
5405
|
+
// src/languages/just.ts
|
|
5406
|
+
var just_exports = {};
|
|
5407
|
+
__export(just_exports, {
|
|
5408
|
+
just: () => just
|
|
5409
|
+
});
|
|
5410
|
+
var just;
|
|
5411
|
+
var init_just = __esm({
|
|
5412
|
+
"src/languages/just.ts"() {
|
|
5413
|
+
just = {
|
|
5414
|
+
slug: "just",
|
|
5415
|
+
publishedDate: "2016-03-13",
|
|
5416
|
+
extensions: ["justfile", "Justfile", ".just"],
|
|
5417
|
+
author: "Casey Rodarmor",
|
|
5418
|
+
website: "https://just.systems",
|
|
5419
|
+
paradigms: ["task automation", "command runner"],
|
|
5420
|
+
tooling: {
|
|
5421
|
+
runtimes: ["just"],
|
|
5422
|
+
packageManagers: ["Cargo", "Homebrew", "Scoop"],
|
|
5423
|
+
ecosystems: ["CLI", "Build Automation", "DevOps"]
|
|
5424
|
+
},
|
|
5425
|
+
version: "1.44.0",
|
|
5426
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_just.svg",
|
|
5427
|
+
color: "#384D54",
|
|
5428
|
+
i18n: {
|
|
5429
|
+
en: {
|
|
5430
|
+
name: "Just",
|
|
5431
|
+
description: "A command-runner language for project recipes, task automation, and repeatable developer workflows.",
|
|
5432
|
+
longDescription: "Just is a command runner whose justfile syntax defines named recipes for common project tasks. It is often used as a friendlier alternative to ad hoc shell scripts or make targets when dependency graph semantics are not needed.\n\nRecipes can accept parameters, set variables, choose shells, load dotenv files, and compose other recipes. The format is popular for local development workflows, CI helpers, release commands, and cross-platform project automation."
|
|
5433
|
+
},
|
|
5434
|
+
es: {
|
|
5435
|
+
name: "Just",
|
|
5436
|
+
description: "Lenguaje de recetas para ejecutar comandos de proyecto, automatizar tareas y repetir flujos de desarrollo.",
|
|
5437
|
+
longDescription: "Just es un ejecutor de comandos cuya sintaxis justfile define recetas con nombre para tareas comunes del proyecto. Se usa como alternativa mas amable a scripts shell dispersos o targets de make cuando no se necesita un grafo de dependencias.\n\nLas recetas pueden aceptar parametros, definir variables, elegir shells, cargar archivos dotenv y componer otras recetas. Es comun en desarrollo local, ayudas de CI, comandos de release y automatizacion multiplataforma."
|
|
5438
|
+
}
|
|
5439
|
+
}
|
|
5440
|
+
};
|
|
5441
|
+
}
|
|
5442
|
+
});
|
|
5443
|
+
|
|
5173
5444
|
// src/languages/kcl.ts
|
|
5174
5445
|
var kcl_exports = {};
|
|
5175
5446
|
__export(kcl_exports, {
|
|
@@ -5229,6 +5500,44 @@ var init_kcl = __esm({
|
|
|
5229
5500
|
}
|
|
5230
5501
|
});
|
|
5231
5502
|
|
|
5503
|
+
// src/languages/kdl.ts
|
|
5504
|
+
var kdl_exports = {};
|
|
5505
|
+
__export(kdl_exports, {
|
|
5506
|
+
kdl: () => kdl
|
|
5507
|
+
});
|
|
5508
|
+
var kdl;
|
|
5509
|
+
var init_kdl = __esm({
|
|
5510
|
+
"src/languages/kdl.ts"() {
|
|
5511
|
+
kdl = {
|
|
5512
|
+
slug: "kdl",
|
|
5513
|
+
publishedDate: "2021-08-29",
|
|
5514
|
+
extensions: [".kdl"],
|
|
5515
|
+
author: "Kat Marchan and contributors",
|
|
5516
|
+
website: "https://kdl.dev",
|
|
5517
|
+
paradigms: ["configuration", "document language", "data serialization"],
|
|
5518
|
+
tooling: {
|
|
5519
|
+
runtimes: ["Parsers", "CLI tools"],
|
|
5520
|
+
ecosystems: ["Configuration", "Rust", "Structured Documents"]
|
|
5521
|
+
},
|
|
5522
|
+
version: "2.0.0",
|
|
5523
|
+
logo: "https://dummyimage.com/32x32/6B4E9B/ffffff.png&text=KDL",
|
|
5524
|
+
color: "#6B4E9B",
|
|
5525
|
+
i18n: {
|
|
5526
|
+
en: {
|
|
5527
|
+
name: "KDL",
|
|
5528
|
+
description: "A node-based document language for readable configuration, structured data, and tree-shaped documents.",
|
|
5529
|
+
longDescription: "KDL is a document language built around named nodes with arguments, properties, and nested children. Its syntax is designed to be easier to read and edit by hand than many dense data formats while still mapping cleanly to structured data.\n\nIt is used for configuration files, domain-specific documents, and tools that need comments, ordering, and tree-shaped data. The KDL ecosystem includes parsers for multiple languages and a versioned specification."
|
|
5530
|
+
},
|
|
5531
|
+
es: {
|
|
5532
|
+
name: "KDL",
|
|
5533
|
+
description: "Lenguaje documental basado en nodos para configuracion legible, datos estructurados y documentos en forma de arbol.",
|
|
5534
|
+
longDescription: "KDL es un lenguaje documental basado en nodos con argumentos, propiedades e hijos anidados. Su sintaxis busca ser mas facil de leer y editar a mano que muchos formatos densos, sin perder una correspondencia clara con datos estructurados.\n\nSe usa para archivos de configuracion, documentos especificos de dominio y herramientas que necesitan comentarios, orden y datos en forma de arbol."
|
|
5535
|
+
}
|
|
5536
|
+
}
|
|
5537
|
+
};
|
|
5538
|
+
}
|
|
5539
|
+
});
|
|
5540
|
+
|
|
5232
5541
|
// src/languages/kotlin.ts
|
|
5233
5542
|
var kotlin_exports = {};
|
|
5234
5543
|
__export(kotlin_exports, {
|
|
@@ -5249,7 +5558,7 @@ var init_kotlin = __esm({
|
|
|
5249
5558
|
packageManagers: ["Gradle", "Maven"],
|
|
5250
5559
|
ecosystems: ["JVM", "Android", "Kotlin Multiplatform"]
|
|
5251
5560
|
},
|
|
5252
|
-
version: "2.
|
|
5561
|
+
version: "2.4.0",
|
|
5253
5562
|
logo: "https://upload.wikimedia.org/wikipedia/commons/7/74/Kotlin_Icon.png",
|
|
5254
5563
|
color: "#7F52FF",
|
|
5255
5564
|
i18n: {
|
|
@@ -6987,6 +7296,45 @@ var init_odin = __esm({
|
|
|
6987
7296
|
}
|
|
6988
7297
|
});
|
|
6989
7298
|
|
|
7299
|
+
// src/languages/openapi.ts
|
|
7300
|
+
var openapi_exports = {};
|
|
7301
|
+
__export(openapi_exports, {
|
|
7302
|
+
openapi: () => openapi
|
|
7303
|
+
});
|
|
7304
|
+
var openapi;
|
|
7305
|
+
var init_openapi = __esm({
|
|
7306
|
+
"src/languages/openapi.ts"() {
|
|
7307
|
+
openapi = {
|
|
7308
|
+
slug: "openapi",
|
|
7309
|
+
publishedDate: "2011-08-10",
|
|
7310
|
+
extensions: [".openapi.json", ".openapi.yaml", ".openapi.yml"],
|
|
7311
|
+
author: "OpenAPI Initiative",
|
|
7312
|
+
website: "https://www.openapis.org",
|
|
7313
|
+
paradigms: ["api description", "schema", "declarative"],
|
|
7314
|
+
tooling: {
|
|
7315
|
+
runtimes: ["OpenAPI tooling"],
|
|
7316
|
+
packageManagers: ["npm", "Maven", "Docker"],
|
|
7317
|
+
ecosystems: ["HTTP APIs", "REST", "Documentation"]
|
|
7318
|
+
},
|
|
7319
|
+
version: "3.2.0",
|
|
7320
|
+
logo: "https://cdn.simpleicons.org/openapiinitiative/6BA539",
|
|
7321
|
+
color: "#6BA539",
|
|
7322
|
+
i18n: {
|
|
7323
|
+
en: {
|
|
7324
|
+
name: "OpenAPI",
|
|
7325
|
+
description: "A language-neutral specification format for describing HTTP APIs, schemas, operations, and documentation.",
|
|
7326
|
+
longDescription: "OpenAPI is a specification format for describing HTTP APIs in a machine-readable and human-readable way. OpenAPI documents define paths, operations, parameters, request bodies, responses, authentication, reusable components, and schema information.\n\nThe format is commonly written in YAML or JSON and powers API documentation, client and server generation, contract testing, governance, and design workflows. It originated as Swagger and is now maintained by the OpenAPI Initiative."
|
|
7327
|
+
},
|
|
7328
|
+
es: {
|
|
7329
|
+
name: "OpenAPI",
|
|
7330
|
+
description: "Formato de especificacion neutral al lenguaje para describir APIs HTTP, esquemas, operaciones y documentacion.",
|
|
7331
|
+
longDescription: "OpenAPI es un formato de especificacion para describir APIs HTTP de manera legible para maquinas y personas. Los documentos OpenAPI definen rutas, operaciones, parametros, cuerpos de solicitud, respuestas, autenticacion, componentes reutilizables e informacion de esquemas.\n\nSuele escribirse en YAML o JSON y alimenta documentacion de APIs, generacion de clientes y servidores, pruebas de contrato, gobierno y flujos de diseno."
|
|
7332
|
+
}
|
|
7333
|
+
}
|
|
7334
|
+
};
|
|
7335
|
+
}
|
|
7336
|
+
});
|
|
7337
|
+
|
|
6990
7338
|
// src/languages/opencl.ts
|
|
6991
7339
|
var opencl_exports = {};
|
|
6992
7340
|
__export(opencl_exports, {
|
|
@@ -7809,6 +8157,45 @@ var init_pug = __esm({
|
|
|
7809
8157
|
}
|
|
7810
8158
|
});
|
|
7811
8159
|
|
|
8160
|
+
// src/languages/puppet.ts
|
|
8161
|
+
var puppet_exports = {};
|
|
8162
|
+
__export(puppet_exports, {
|
|
8163
|
+
puppet: () => puppet
|
|
8164
|
+
});
|
|
8165
|
+
var puppet;
|
|
8166
|
+
var init_puppet = __esm({
|
|
8167
|
+
"src/languages/puppet.ts"() {
|
|
8168
|
+
puppet = {
|
|
8169
|
+
slug: "puppet",
|
|
8170
|
+
publishedDate: "2005-01-01",
|
|
8171
|
+
extensions: [".pp", ".epp"],
|
|
8172
|
+
author: "Luke Kanies / Puppet, Inc.",
|
|
8173
|
+
website: "https://www.puppet.com/docs/puppet/latest/lang_summary",
|
|
8174
|
+
paradigms: ["declarative", "configuration management", "infrastructure as code"],
|
|
8175
|
+
tooling: {
|
|
8176
|
+
runtimes: ["Puppet Agent", "Puppet Server"],
|
|
8177
|
+
packageManagers: ["Puppet Forge", "r10k", "Code Manager"],
|
|
8178
|
+
ecosystems: ["DevOps", "Infrastructure as Code", "Configuration Management"]
|
|
8179
|
+
},
|
|
8180
|
+
version: "Puppet 8",
|
|
8181
|
+
logo: "https://cdn.simpleicons.org/puppet/FFAE1A",
|
|
8182
|
+
color: "#FFAE1A",
|
|
8183
|
+
i18n: {
|
|
8184
|
+
en: {
|
|
8185
|
+
name: "Puppet",
|
|
8186
|
+
description: "A declarative infrastructure language for describing system resources, configuration state, and reusable modules.",
|
|
8187
|
+
longDescription: "The Puppet language describes desired infrastructure state using resources, classes, defined types, variables, conditionals, and modules. Puppet agents apply catalogs compiled from this language to converge systems toward the declared configuration.\n\nIt is used for configuration management, compliance, provisioning, and infrastructure automation across servers and services. The language favors declarative resource relationships over imperative shell-style steps."
|
|
8188
|
+
},
|
|
8189
|
+
es: {
|
|
8190
|
+
name: "Puppet",
|
|
8191
|
+
description: "Lenguaje declarativo de infraestructura para describir recursos del sistema, estado de configuracion y modulos reutilizables.",
|
|
8192
|
+
longDescription: "El lenguaje Puppet describe el estado deseado de la infraestructura mediante recursos, clases, tipos definidos, variables, condicionales y modulos. Los agentes Puppet aplican catalogos compilados desde este lenguaje para converger los sistemas hacia la configuracion declarada.\n\nSe usa para gestion de configuracion, cumplimiento, aprovisionamiento y automatizacion de infraestructura en servidores y servicios."
|
|
8193
|
+
}
|
|
8194
|
+
}
|
|
8195
|
+
};
|
|
8196
|
+
}
|
|
8197
|
+
});
|
|
8198
|
+
|
|
7812
8199
|
// src/languages/purescript.ts
|
|
7813
8200
|
var purescript_exports = {};
|
|
7814
8201
|
__export(purescript_exports, {
|
|
@@ -11359,12 +11746,14 @@ init_cue();
|
|
|
11359
11746
|
init_cypher();
|
|
11360
11747
|
init_cython();
|
|
11361
11748
|
init_d();
|
|
11749
|
+
init_dafny();
|
|
11362
11750
|
init_dart();
|
|
11363
11751
|
init_dhall();
|
|
11364
11752
|
init_dita();
|
|
11365
11753
|
init_dockerfile();
|
|
11366
11754
|
init_earthly();
|
|
11367
11755
|
init_eiffel();
|
|
11756
|
+
init_ejs();
|
|
11368
11757
|
init_elixir();
|
|
11369
11758
|
init_elm();
|
|
11370
11759
|
init_erb();
|
|
@@ -11374,7 +11763,9 @@ init_fish();
|
|
|
11374
11763
|
init_flux();
|
|
11375
11764
|
init_forth();
|
|
11376
11765
|
init_fortran();
|
|
11766
|
+
init_freemarker();
|
|
11377
11767
|
init_fsharp();
|
|
11768
|
+
init_fstar();
|
|
11378
11769
|
init_gdscript();
|
|
11379
11770
|
init_git();
|
|
11380
11771
|
init_gleam();
|
|
@@ -11397,16 +11788,20 @@ init_html();
|
|
|
11397
11788
|
init_hy();
|
|
11398
11789
|
init_idris();
|
|
11399
11790
|
init_ini();
|
|
11791
|
+
init_isabelle();
|
|
11400
11792
|
init_janet();
|
|
11401
11793
|
init_java();
|
|
11402
11794
|
init_javascript();
|
|
11403
11795
|
init_jinja();
|
|
11404
11796
|
init_json();
|
|
11405
11797
|
init_json5();
|
|
11798
|
+
init_jsonc();
|
|
11406
11799
|
init_jsonnet();
|
|
11407
11800
|
init_julia();
|
|
11408
11801
|
init_jupyter_notebook();
|
|
11802
|
+
init_just();
|
|
11409
11803
|
init_kcl();
|
|
11804
|
+
init_kdl();
|
|
11410
11805
|
init_kotlin();
|
|
11411
11806
|
init_lean();
|
|
11412
11807
|
init_less();
|
|
@@ -11437,6 +11832,7 @@ init_nushell();
|
|
|
11437
11832
|
init_objective_c();
|
|
11438
11833
|
init_ocaml();
|
|
11439
11834
|
init_odin();
|
|
11835
|
+
init_openapi();
|
|
11440
11836
|
init_opencl();
|
|
11441
11837
|
init_pascal();
|
|
11442
11838
|
init_perl();
|
|
@@ -11451,6 +11847,7 @@ init_prolog();
|
|
|
11451
11847
|
init_promql();
|
|
11452
11848
|
init_protobuf();
|
|
11453
11849
|
init_pug();
|
|
11850
|
+
init_puppet();
|
|
11454
11851
|
init_purescript();
|
|
11455
11852
|
init_python();
|
|
11456
11853
|
init_qml();
|
|
@@ -11553,10 +11950,12 @@ var languages = [
|
|
|
11553
11950
|
cuda,
|
|
11554
11951
|
cython,
|
|
11555
11952
|
d,
|
|
11953
|
+
dafny,
|
|
11556
11954
|
dart,
|
|
11557
11955
|
dhall,
|
|
11558
11956
|
dita,
|
|
11559
11957
|
dockerfile,
|
|
11958
|
+
ejs,
|
|
11560
11959
|
eiffel,
|
|
11561
11960
|
earthly,
|
|
11562
11961
|
elixir,
|
|
@@ -11566,9 +11965,11 @@ var languages = [
|
|
|
11566
11965
|
fish,
|
|
11567
11966
|
fennel,
|
|
11568
11967
|
flux,
|
|
11968
|
+
freemarker,
|
|
11569
11969
|
fortran,
|
|
11570
11970
|
forth,
|
|
11571
11971
|
fsharp,
|
|
11972
|
+
fstar,
|
|
11572
11973
|
gdscript,
|
|
11573
11974
|
git,
|
|
11574
11975
|
gleam,
|
|
@@ -11591,16 +11992,20 @@ var languages = [
|
|
|
11591
11992
|
hy,
|
|
11592
11993
|
idris,
|
|
11593
11994
|
ini,
|
|
11995
|
+
isabelle,
|
|
11594
11996
|
java,
|
|
11595
11997
|
javascript,
|
|
11596
11998
|
janet,
|
|
11597
11999
|
jinja,
|
|
11598
12000
|
json,
|
|
11599
12001
|
json5,
|
|
12002
|
+
jsonc,
|
|
11600
12003
|
jsonnet,
|
|
11601
12004
|
jupyterNotebook,
|
|
11602
12005
|
julia,
|
|
12006
|
+
just,
|
|
11603
12007
|
kcl,
|
|
12008
|
+
kdl,
|
|
11604
12009
|
kotlin,
|
|
11605
12010
|
lean,
|
|
11606
12011
|
less,
|
|
@@ -11633,6 +12038,7 @@ var languages = [
|
|
|
11633
12038
|
objectiveC,
|
|
11634
12039
|
odin,
|
|
11635
12040
|
opencl,
|
|
12041
|
+
openapi,
|
|
11636
12042
|
pascal,
|
|
11637
12043
|
pkl,
|
|
11638
12044
|
perl,
|
|
@@ -11646,6 +12052,7 @@ var languages = [
|
|
|
11646
12052
|
promql,
|
|
11647
12053
|
protobuf,
|
|
11648
12054
|
pug,
|
|
12055
|
+
puppet,
|
|
11649
12056
|
purescript,
|
|
11650
12057
|
python,
|
|
11651
12058
|
qml,
|
|
@@ -11756,10 +12163,12 @@ var languageIndex = [
|
|
|
11756
12163
|
{ slug: "cuda", extensions: [".cu", ".cuh"] },
|
|
11757
12164
|
{ slug: "cython", extensions: [".pyx", ".pxd", ".pxi"] },
|
|
11758
12165
|
{ slug: "d", extensions: [".d", ".di"] },
|
|
12166
|
+
{ slug: "dafny", extensions: [".dfy"] },
|
|
11759
12167
|
{ slug: "dart", extensions: [".dart"] },
|
|
11760
12168
|
{ slug: "dhall", extensions: [".dhall"] },
|
|
11761
12169
|
{ slug: "dita", extensions: [".dita", ".ditamap", ".ditaval"] },
|
|
11762
12170
|
{ slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
|
|
12171
|
+
{ slug: "ejs", extensions: [".ejs"] },
|
|
11763
12172
|
{ slug: "eiffel", extensions: [".e"] },
|
|
11764
12173
|
{ slug: "earthly", extensions: ["Earthfile"] },
|
|
11765
12174
|
{ slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
|
|
@@ -11772,12 +12181,14 @@ var languageIndex = [
|
|
|
11772
12181
|
{ slug: "fish", extensions: [".fish"] },
|
|
11773
12182
|
{ slug: "fennel", extensions: [".fnl"] },
|
|
11774
12183
|
{ slug: "flux", extensions: [".flux"] },
|
|
12184
|
+
{ slug: "freemarker", extensions: [".ftl", ".ftlh", ".ftlx"] },
|
|
11775
12185
|
{
|
|
11776
12186
|
slug: "fortran",
|
|
11777
12187
|
extensions: [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"]
|
|
11778
12188
|
},
|
|
11779
12189
|
{ slug: "forth", extensions: [".fs", ".fth", ".forth", ".4th"] },
|
|
11780
12190
|
{ slug: "fsharp", extensions: [".fs", ".fsi", ".fsx", ".fsscript"] },
|
|
12191
|
+
{ slug: "fstar", extensions: [".fst", ".fsti"] },
|
|
11781
12192
|
{ slug: "gdscript", extensions: [".gd"] },
|
|
11782
12193
|
{ slug: "git", extensions: [".git", ".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"] },
|
|
11783
12194
|
{ slug: "gleam", extensions: [".gleam"] },
|
|
@@ -11803,16 +12214,20 @@ var languageIndex = [
|
|
|
11803
12214
|
{ slug: "hy", extensions: [".hy"] },
|
|
11804
12215
|
{ slug: "idris", extensions: [".idr", ".lidr", ".ipkg"] },
|
|
11805
12216
|
{ slug: "ini", extensions: [".ini"] },
|
|
12217
|
+
{ slug: "isabelle", extensions: [".thy"] },
|
|
11806
12218
|
{ slug: "java", extensions: [".java"] },
|
|
11807
12219
|
{ slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
|
|
11808
12220
|
{ slug: "janet", extensions: [".janet", ".jdn"] },
|
|
11809
12221
|
{ slug: "jinja", extensions: [".jinja", ".jinja2", ".j2"] },
|
|
11810
12222
|
{ slug: "json", extensions: [".json"] },
|
|
11811
12223
|
{ slug: "json5", extensions: [".json5"] },
|
|
12224
|
+
{ slug: "jsonc", extensions: [".jsonc", ".code-workspace"] },
|
|
11812
12225
|
{ slug: "jsonnet", extensions: [".jsonnet", ".libsonnet"] },
|
|
11813
12226
|
{ slug: "jupyter-notebook", extensions: [".ipynb"] },
|
|
11814
12227
|
{ slug: "julia", extensions: [".jl"] },
|
|
12228
|
+
{ slug: "just", extensions: ["justfile", "Justfile", ".just"] },
|
|
11815
12229
|
{ slug: "kcl", extensions: [".k", ".kcl"] },
|
|
12230
|
+
{ slug: "kdl", extensions: [".kdl"] },
|
|
11816
12231
|
{ slug: "kotlin", extensions: [".kt", ".kts"] },
|
|
11817
12232
|
{ slug: "lean", extensions: [".lean"] },
|
|
11818
12233
|
{ slug: "less", extensions: [".less"] },
|
|
@@ -11845,6 +12260,7 @@ var languageIndex = [
|
|
|
11845
12260
|
{ slug: "objective-c", extensions: [".m", ".mm"] },
|
|
11846
12261
|
{ slug: "odin", extensions: [".odin"] },
|
|
11847
12262
|
{ slug: "opencl", extensions: [".cl", ".clh"] },
|
|
12263
|
+
{ slug: "openapi", extensions: [".openapi.json", ".openapi.yaml", ".openapi.yml"] },
|
|
11848
12264
|
{ slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
|
|
11849
12265
|
{ slug: "pkl", extensions: [".pkl"] },
|
|
11850
12266
|
{ slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
|
|
@@ -11858,6 +12274,7 @@ var languageIndex = [
|
|
|
11858
12274
|
{ slug: "promql", extensions: [".promql"] },
|
|
11859
12275
|
{ slug: "protobuf", extensions: [".proto"] },
|
|
11860
12276
|
{ slug: "pug", extensions: [".pug", ".jade"] },
|
|
12277
|
+
{ slug: "puppet", extensions: [".pp", ".epp"] },
|
|
11861
12278
|
{ slug: "purescript", extensions: [".purs"] },
|
|
11862
12279
|
{ slug: "python", extensions: [".py", ".pyw"] },
|
|
11863
12280
|
{ slug: "qml", extensions: [".qml", ".qmltypes", ".qmlproject"] },
|
|
@@ -11966,10 +12383,12 @@ var languageLoaders = {
|
|
|
11966
12383
|
cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
|
|
11967
12384
|
cython: () => Promise.resolve().then(() => (init_cython(), cython_exports)).then((module) => module.cython),
|
|
11968
12385
|
d: () => Promise.resolve().then(() => (init_d(), d_exports)).then((module) => module.d),
|
|
12386
|
+
dafny: () => Promise.resolve().then(() => (init_dafny(), dafny_exports)).then((module) => module.dafny),
|
|
11969
12387
|
dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
|
|
11970
12388
|
dhall: () => Promise.resolve().then(() => (init_dhall(), dhall_exports)).then((module) => module.dhall),
|
|
11971
12389
|
dita: () => Promise.resolve().then(() => (init_dita(), dita_exports)).then((module) => module.dita),
|
|
11972
12390
|
dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
|
|
12391
|
+
ejs: () => Promise.resolve().then(() => (init_ejs(), ejs_exports)).then((module) => module.ejs),
|
|
11973
12392
|
eiffel: () => Promise.resolve().then(() => (init_eiffel(), eiffel_exports)).then((module) => module.eiffel),
|
|
11974
12393
|
earthly: () => Promise.resolve().then(() => (init_earthly(), earthly_exports)).then((module) => module.earthly),
|
|
11975
12394
|
elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
|
|
@@ -11979,9 +12398,11 @@ var languageLoaders = {
|
|
|
11979
12398
|
fish: () => Promise.resolve().then(() => (init_fish(), fish_exports)).then((module) => module.fish),
|
|
11980
12399
|
flux: () => Promise.resolve().then(() => (init_flux(), flux_exports)).then((module) => module.flux),
|
|
11981
12400
|
fennel: () => Promise.resolve().then(() => (init_fennel(), fennel_exports)).then((module) => module.fennel),
|
|
12401
|
+
freemarker: () => Promise.resolve().then(() => (init_freemarker(), freemarker_exports)).then((module) => module.freemarker),
|
|
11982
12402
|
fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
|
|
11983
12403
|
forth: () => Promise.resolve().then(() => (init_forth(), forth_exports)).then((module) => module.forth),
|
|
11984
12404
|
fsharp: () => Promise.resolve().then(() => (init_fsharp(), fsharp_exports)).then((module) => module.fsharp),
|
|
12405
|
+
fstar: () => Promise.resolve().then(() => (init_fstar(), fstar_exports)).then((module) => module.fstar),
|
|
11985
12406
|
gdscript: () => Promise.resolve().then(() => (init_gdscript(), gdscript_exports)).then((module) => module.gdscript),
|
|
11986
12407
|
git: () => Promise.resolve().then(() => (init_git(), git_exports)).then((module) => module.git),
|
|
11987
12408
|
gleam: () => Promise.resolve().then(() => (init_gleam(), gleam_exports)).then((module) => module.gleam),
|
|
@@ -12004,16 +12425,20 @@ var languageLoaders = {
|
|
|
12004
12425
|
hy: () => Promise.resolve().then(() => (init_hy(), hy_exports)).then((module) => module.hy),
|
|
12005
12426
|
idris: () => Promise.resolve().then(() => (init_idris(), idris_exports)).then((module) => module.idris),
|
|
12006
12427
|
ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
|
|
12428
|
+
isabelle: () => Promise.resolve().then(() => (init_isabelle(), isabelle_exports)).then((module) => module.isabelle),
|
|
12007
12429
|
java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
|
|
12008
12430
|
javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
|
|
12009
12431
|
janet: () => Promise.resolve().then(() => (init_janet(), janet_exports)).then((module) => module.janet),
|
|
12010
12432
|
jinja: () => Promise.resolve().then(() => (init_jinja(), jinja_exports)).then((module) => module.jinja),
|
|
12011
12433
|
json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
|
|
12012
12434
|
json5: () => Promise.resolve().then(() => (init_json5(), json5_exports)).then((module) => module.json5),
|
|
12435
|
+
jsonc: () => Promise.resolve().then(() => (init_jsonc(), jsonc_exports)).then((module) => module.jsonc),
|
|
12013
12436
|
jsonnet: () => Promise.resolve().then(() => (init_jsonnet(), jsonnet_exports)).then((module) => module.jsonnet),
|
|
12014
12437
|
"jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
|
|
12015
12438
|
julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
|
|
12439
|
+
just: () => Promise.resolve().then(() => (init_just(), just_exports)).then((module) => module.just),
|
|
12016
12440
|
kcl: () => Promise.resolve().then(() => (init_kcl(), kcl_exports)).then((module) => module.kcl),
|
|
12441
|
+
kdl: () => Promise.resolve().then(() => (init_kdl(), kdl_exports)).then((module) => module.kdl),
|
|
12017
12442
|
kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
|
|
12018
12443
|
lean: () => Promise.resolve().then(() => (init_lean(), lean_exports)).then((module) => module.lean),
|
|
12019
12444
|
less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
|
|
@@ -12046,6 +12471,7 @@ var languageLoaders = {
|
|
|
12046
12471
|
"objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
|
|
12047
12472
|
odin: () => Promise.resolve().then(() => (init_odin(), odin_exports)).then((module) => module.odin),
|
|
12048
12473
|
opencl: () => Promise.resolve().then(() => (init_opencl(), opencl_exports)).then((module) => module.opencl),
|
|
12474
|
+
openapi: () => Promise.resolve().then(() => (init_openapi(), openapi_exports)).then((module) => module.openapi),
|
|
12049
12475
|
pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
|
|
12050
12476
|
pkl: () => Promise.resolve().then(() => (init_pkl(), pkl_exports)).then((module) => module.pkl),
|
|
12051
12477
|
perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
|
|
@@ -12059,6 +12485,7 @@ var languageLoaders = {
|
|
|
12059
12485
|
promql: () => Promise.resolve().then(() => (init_promql(), promql_exports)).then((module) => module.promql),
|
|
12060
12486
|
protobuf: () => Promise.resolve().then(() => (init_protobuf(), protobuf_exports)).then((module) => module.protobuf),
|
|
12061
12487
|
pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
|
|
12488
|
+
puppet: () => Promise.resolve().then(() => (init_puppet(), puppet_exports)).then((module) => module.puppet),
|
|
12062
12489
|
purescript: () => Promise.resolve().then(() => (init_purescript(), purescript_exports)).then((module) => module.purescript),
|
|
12063
12490
|
python: () => Promise.resolve().then(() => (init_python(), python_exports)).then((module) => module.python),
|
|
12064
12491
|
qml: () => Promise.resolve().then(() => (init_qml(), qml_exports)).then((module) => module.qml),
|