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.
Files changed (60) hide show
  1. package/README.md +12 -2
  2. package/dist/api.cjs +428 -1
  3. package/dist/api.d.cts +1 -1
  4. package/dist/api.d.ts +1 -1
  5. package/dist/api.js +428 -1
  6. package/dist/detect-slugs.cjs +10 -0
  7. package/dist/detect-slugs.d.cts +1 -1
  8. package/dist/detect-slugs.d.ts +1 -1
  9. package/dist/detect-slugs.js +10 -0
  10. package/dist/detect.cjs +308 -1
  11. package/dist/detect.js +308 -1
  12. package/dist/index.cjs +438 -1
  13. package/dist/index.d.cts +278 -1
  14. package/dist/index.d.ts +278 -1
  15. package/dist/index.js +439 -2
  16. package/dist/{language-registry-CehUh46c.d.cts → language-registry-BQKRHyKo.d.cts} +30 -0
  17. package/dist/{language-registry-CehUh46c.d.ts → language-registry-BQKRHyKo.d.ts} +30 -0
  18. package/dist/languages/dafny.cjs +33 -0
  19. package/dist/languages/dafny.d.cts +30 -0
  20. package/dist/languages/dafny.d.ts +30 -0
  21. package/dist/languages/dafny.js +31 -0
  22. package/dist/languages/ejs.cjs +33 -0
  23. package/dist/languages/ejs.d.cts +30 -0
  24. package/dist/languages/ejs.d.ts +30 -0
  25. package/dist/languages/ejs.js +31 -0
  26. package/dist/languages/freemarker.cjs +33 -0
  27. package/dist/languages/freemarker.d.cts +30 -0
  28. package/dist/languages/freemarker.d.ts +30 -0
  29. package/dist/languages/freemarker.js +31 -0
  30. package/dist/languages/fstar.cjs +33 -0
  31. package/dist/languages/fstar.d.cts +30 -0
  32. package/dist/languages/fstar.d.ts +30 -0
  33. package/dist/languages/fstar.js +31 -0
  34. package/dist/languages/isabelle.cjs +32 -0
  35. package/dist/languages/isabelle.d.cts +29 -0
  36. package/dist/languages/isabelle.d.ts +29 -0
  37. package/dist/languages/isabelle.js +30 -0
  38. package/dist/languages/jsonc.cjs +32 -0
  39. package/dist/languages/jsonc.d.cts +29 -0
  40. package/dist/languages/jsonc.d.ts +29 -0
  41. package/dist/languages/jsonc.js +30 -0
  42. package/dist/languages/just.cjs +33 -0
  43. package/dist/languages/just.d.cts +30 -0
  44. package/dist/languages/just.d.ts +30 -0
  45. package/dist/languages/just.js +31 -0
  46. package/dist/languages/kdl.cjs +32 -0
  47. package/dist/languages/kdl.d.cts +29 -0
  48. package/dist/languages/kdl.d.ts +29 -0
  49. package/dist/languages/kdl.js +30 -0
  50. package/dist/languages/kotlin.cjs +1 -1
  51. package/dist/languages/kotlin.js +1 -1
  52. package/dist/languages/openapi.cjs +33 -0
  53. package/dist/languages/openapi.d.cts +30 -0
  54. package/dist/languages/openapi.d.ts +30 -0
  55. package/dist/languages/openapi.js +31 -0
  56. package/dist/languages/puppet.cjs +33 -0
  57. package/dist/languages/puppet.d.cts +30 -0
  58. package/dist/languages/puppet.d.ts +30 -0
  59. package/dist/languages/puppet.js +31 -0
  60. package/package.json +55 -5
package/dist/detect.js CHANGED
@@ -2034,6 +2034,36 @@ var d = {
2034
2034
  }
2035
2035
  };
2036
2036
 
2037
+ // src/languages/dafny.ts
2038
+ var dafny = {
2039
+ slug: "dafny",
2040
+ publishedDate: "2009-01-01",
2041
+ extensions: [".dfy"],
2042
+ author: "K. Rustan M. Leino / Microsoft Research",
2043
+ website: "https://dafny.org",
2044
+ paradigms: ["imperative", "functional", "object-oriented", "formal verification"],
2045
+ tooling: {
2046
+ runtimes: [".NET", "Java", "JavaScript", "Go", "Python"],
2047
+ packageManagers: ["NuGet", "Homebrew"],
2048
+ ecosystems: ["Formal Methods", ".NET", "Verification"]
2049
+ },
2050
+ version: "4.11.0",
2051
+ logo: "https://dummyimage.com/32x32/0B6D91/ffffff.png&text=D",
2052
+ color: "#0B6D91",
2053
+ i18n: {
2054
+ en: {
2055
+ name: "Dafny",
2056
+ description: "A verification-aware programming language with specifications, proofs, and compilation to several mainstream targets.",
2057
+ 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."
2058
+ },
2059
+ es: {
2060
+ name: "Dafny",
2061
+ description: "Lenguaje de programacion orientado a verificacion, con especificaciones, pruebas y compilacion a varios destinos comunes.",
2062
+ 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."
2063
+ }
2064
+ }
2065
+ };
2066
+
2037
2067
  // src/languages/dart.ts
2038
2068
  var dart = {
2039
2069
  slug: "dart",
@@ -2333,6 +2363,36 @@ var eiffel = {
2333
2363
  }
2334
2364
  };
2335
2365
 
2366
+ // src/languages/ejs.ts
2367
+ var ejs = {
2368
+ slug: "ejs",
2369
+ publishedDate: "2011-02-01",
2370
+ extensions: [".ejs"],
2371
+ author: "Matthew Eernisse",
2372
+ website: "https://ejs.co",
2373
+ paradigms: ["template", "embedded", "imperative"],
2374
+ tooling: {
2375
+ runtimes: ["Node.js", "Browser"],
2376
+ packageManagers: ["npm", "pnpm", "Yarn"],
2377
+ ecosystems: ["JavaScript", "Web", "Express"]
2378
+ },
2379
+ version: "3.1.10",
2380
+ logo: "https://cdn.simpleicons.org/ejs/B4CA65",
2381
+ color: "#B4CA65",
2382
+ i18n: {
2383
+ en: {
2384
+ name: "EJS",
2385
+ description: "An embedded JavaScript templating language for generating HTML and text from familiar JavaScript expressions.",
2386
+ 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."
2387
+ },
2388
+ es: {
2389
+ name: "EJS",
2390
+ description: "Lenguaje de plantillas con JavaScript embebido para generar HTML y texto usando expresiones familiares.",
2391
+ 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."
2392
+ }
2393
+ }
2394
+ };
2395
+
2336
2396
  // src/languages/elixir.ts
2337
2397
  var elixir = {
2338
2398
  slug: "elixir",
@@ -2781,6 +2841,36 @@ var fortran = {
2781
2841
  }
2782
2842
  };
2783
2843
 
2844
+ // src/languages/freemarker.ts
2845
+ var freemarker = {
2846
+ slug: "freemarker",
2847
+ publishedDate: "1999-01-01",
2848
+ extensions: [".ftl", ".ftlh", ".ftlx"],
2849
+ author: "Apache Software Foundation",
2850
+ website: "https://freemarker.apache.org",
2851
+ paradigms: ["template", "declarative"],
2852
+ tooling: {
2853
+ runtimes: ["JVM"],
2854
+ packageManagers: ["Maven", "Gradle"],
2855
+ ecosystems: ["Java", "Web", "Apache"]
2856
+ },
2857
+ version: "2.3.34",
2858
+ logo: "https://dummyimage.com/32x32/326CE5/ffffff.png&text=FM",
2859
+ color: "#326CE5",
2860
+ i18n: {
2861
+ en: {
2862
+ name: "FreeMarker",
2863
+ description: "A JVM template language used to generate HTML, emails, configuration files, and other text output.",
2864
+ 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."
2865
+ },
2866
+ es: {
2867
+ name: "FreeMarker",
2868
+ description: "Lenguaje de plantillas para la JVM usado para generar HTML, correos, configuracion y otras salidas de texto.",
2869
+ 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."
2870
+ }
2871
+ }
2872
+ };
2873
+
2784
2874
  // src/languages/fsharp.ts
2785
2875
  var fsharp = {
2786
2876
  slug: "fsharp",
@@ -2831,6 +2921,36 @@ var fsharp = {
2831
2921
  }
2832
2922
  };
2833
2923
 
2924
+ // src/languages/fstar.ts
2925
+ var fstar = {
2926
+ slug: "fstar",
2927
+ publishedDate: "2011-01-01",
2928
+ extensions: [".fst", ".fsti"],
2929
+ author: "Microsoft Research / INRIA",
2930
+ website: "https://www.fstar-lang.org",
2931
+ paradigms: ["functional", "dependent types", "formal verification"],
2932
+ tooling: {
2933
+ runtimes: ["F* toolchain", "OCaml", "F#", "C"],
2934
+ packageManagers: ["opam", "NuGet"],
2935
+ ecosystems: ["Formal Methods", "ML", "Low-level Verification"]
2936
+ },
2937
+ version: "2026.04.17",
2938
+ logo: "https://dummyimage.com/32x32/572E91/ffffff.png&text=F%2A",
2939
+ color: "#572E91",
2940
+ i18n: {
2941
+ en: {
2942
+ name: "F*",
2943
+ description: "A dependently typed functional language for program verification, proofs, and extraction to executable code.",
2944
+ 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."
2945
+ },
2946
+ es: {
2947
+ name: "F*",
2948
+ description: "Lenguaje funcional con tipos dependientes para verificacion de programas, pruebas y extraccion a codigo ejecutable.",
2949
+ 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."
2950
+ }
2951
+ }
2952
+ };
2953
+
2834
2954
  // src/languages/gdscript.ts
2835
2955
  var gdscript = {
2836
2956
  slug: "gdscript",
@@ -3921,6 +4041,35 @@ var ini = {
3921
4041
  }
3922
4042
  };
3923
4043
 
4044
+ // src/languages/isabelle.ts
4045
+ var isabelle = {
4046
+ slug: "isabelle",
4047
+ publishedDate: "1986-01-01",
4048
+ extensions: [".thy"],
4049
+ author: "Lawrence Paulson / University of Cambridge and TU Munich",
4050
+ website: "https://isabelle.in.tum.de",
4051
+ paradigms: ["theorem proving", "declarative", "functional"],
4052
+ tooling: {
4053
+ runtimes: ["Isabelle/jEdit", "Poly/ML", "Scala"],
4054
+ ecosystems: ["Formal Methods", "Proof Assistants", "Higher-order Logic"]
4055
+ },
4056
+ version: "Isabelle2025-2",
4057
+ logo: "https://dummyimage.com/32x32/6A5ACD/ffffff.png&text=Is",
4058
+ color: "#6A5ACD",
4059
+ i18n: {
4060
+ en: {
4061
+ name: "Isabelle",
4062
+ description: "A proof assistant and theory language for machine-checked mathematics, logic, and formal verification.",
4063
+ 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."
4064
+ },
4065
+ es: {
4066
+ name: "Isabelle",
4067
+ description: "Asistente de pruebas y lenguaje de teorias para matematica, logica y verificacion formal comprobadas por maquina.",
4068
+ 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."
4069
+ }
4070
+ }
4071
+ };
4072
+
3924
4073
  // src/languages/janet.ts
3925
4074
  var janet = {
3926
4075
  slug: "janet",
@@ -4216,6 +4365,35 @@ var json5 = {
4216
4365
  }
4217
4366
  };
4218
4367
 
4368
+ // src/languages/jsonc.ts
4369
+ var jsonc = {
4370
+ slug: "jsonc",
4371
+ publishedDate: "2015-04-29",
4372
+ extensions: [".jsonc", ".code-workspace"],
4373
+ author: "Microsoft",
4374
+ website: "https://jsonc.org",
4375
+ paradigms: ["data serialization", "configuration"],
4376
+ tooling: {
4377
+ runtimes: ["Editors", "Build tools"],
4378
+ ecosystems: ["JavaScript", "TypeScript", "Configuration"]
4379
+ },
4380
+ version: "JSON with Comments",
4381
+ logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_json.svg",
4382
+ color: "#F5DE19",
4383
+ i18n: {
4384
+ en: {
4385
+ name: "JSONC",
4386
+ description: "A JSON-compatible configuration format that permits JavaScript-style comments and optional editor-friendly extensions.",
4387
+ 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."
4388
+ },
4389
+ es: {
4390
+ name: "JSONC",
4391
+ description: "Formato de configuracion compatible con JSON que permite comentarios estilo JavaScript y extensiones amigables para editores.",
4392
+ 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."
4393
+ }
4394
+ }
4395
+ };
4396
+
4219
4397
  // src/languages/jsonnet.ts
4220
4398
  var jsonnet = {
4221
4399
  slug: "jsonnet",
@@ -4366,6 +4544,36 @@ var jupyterNotebook = {
4366
4544
  }
4367
4545
  };
4368
4546
 
4547
+ // src/languages/just.ts
4548
+ var just = {
4549
+ slug: "just",
4550
+ publishedDate: "2016-03-13",
4551
+ extensions: ["justfile", "Justfile", ".just"],
4552
+ author: "Casey Rodarmor",
4553
+ website: "https://just.systems",
4554
+ paradigms: ["task automation", "command runner"],
4555
+ tooling: {
4556
+ runtimes: ["just"],
4557
+ packageManagers: ["Cargo", "Homebrew", "Scoop"],
4558
+ ecosystems: ["CLI", "Build Automation", "DevOps"]
4559
+ },
4560
+ version: "1.44.0",
4561
+ logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_just.svg",
4562
+ color: "#384D54",
4563
+ i18n: {
4564
+ en: {
4565
+ name: "Just",
4566
+ description: "A command-runner language for project recipes, task automation, and repeatable developer workflows.",
4567
+ 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."
4568
+ },
4569
+ es: {
4570
+ name: "Just",
4571
+ description: "Lenguaje de recetas para ejecutar comandos de proyecto, automatizar tareas y repetir flujos de desarrollo.",
4572
+ 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."
4573
+ }
4574
+ }
4575
+ };
4576
+
4369
4577
  // src/languages/kcl.ts
4370
4578
  var kcl = {
4371
4579
  slug: "kcl",
@@ -4416,6 +4624,35 @@ var kcl = {
4416
4624
  }
4417
4625
  };
4418
4626
 
4627
+ // src/languages/kdl.ts
4628
+ var kdl = {
4629
+ slug: "kdl",
4630
+ publishedDate: "2021-08-29",
4631
+ extensions: [".kdl"],
4632
+ author: "Kat Marchan and contributors",
4633
+ website: "https://kdl.dev",
4634
+ paradigms: ["configuration", "document language", "data serialization"],
4635
+ tooling: {
4636
+ runtimes: ["Parsers", "CLI tools"],
4637
+ ecosystems: ["Configuration", "Rust", "Structured Documents"]
4638
+ },
4639
+ version: "2.0.0",
4640
+ logo: "https://dummyimage.com/32x32/6B4E9B/ffffff.png&text=KDL",
4641
+ color: "#6B4E9B",
4642
+ i18n: {
4643
+ en: {
4644
+ name: "KDL",
4645
+ description: "A node-based document language for readable configuration, structured data, and tree-shaped documents.",
4646
+ 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."
4647
+ },
4648
+ es: {
4649
+ name: "KDL",
4650
+ description: "Lenguaje documental basado en nodos para configuracion legible, datos estructurados y documentos en forma de arbol.",
4651
+ 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."
4652
+ }
4653
+ }
4654
+ };
4655
+
4419
4656
  // src/languages/kotlin.ts
4420
4657
  var kotlin = {
4421
4658
  slug: "kotlin",
@@ -4429,7 +4666,7 @@ var kotlin = {
4429
4666
  packageManagers: ["Gradle", "Maven"],
4430
4667
  ecosystems: ["JVM", "Android", "Kotlin Multiplatform"]
4431
4668
  },
4432
- version: "2.3.21",
4669
+ version: "2.4.0",
4433
4670
  logo: "https://upload.wikimedia.org/wikipedia/commons/7/74/Kotlin_Icon.png",
4434
4671
  color: "#7F52FF",
4435
4672
  i18n: {
@@ -5904,6 +6141,36 @@ var odin = {
5904
6141
  }
5905
6142
  };
5906
6143
 
6144
+ // src/languages/openapi.ts
6145
+ var openapi = {
6146
+ slug: "openapi",
6147
+ publishedDate: "2011-08-10",
6148
+ extensions: [".openapi.json", ".openapi.yaml", ".openapi.yml"],
6149
+ author: "OpenAPI Initiative",
6150
+ website: "https://www.openapis.org",
6151
+ paradigms: ["api description", "schema", "declarative"],
6152
+ tooling: {
6153
+ runtimes: ["OpenAPI tooling"],
6154
+ packageManagers: ["npm", "Maven", "Docker"],
6155
+ ecosystems: ["HTTP APIs", "REST", "Documentation"]
6156
+ },
6157
+ version: "3.2.0",
6158
+ logo: "https://cdn.simpleicons.org/openapiinitiative/6BA539",
6159
+ color: "#6BA539",
6160
+ i18n: {
6161
+ en: {
6162
+ name: "OpenAPI",
6163
+ description: "A language-neutral specification format for describing HTTP APIs, schemas, operations, and documentation.",
6164
+ 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."
6165
+ },
6166
+ es: {
6167
+ name: "OpenAPI",
6168
+ description: "Formato de especificacion neutral al lenguaje para describir APIs HTTP, esquemas, operaciones y documentacion.",
6169
+ 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."
6170
+ }
6171
+ }
6172
+ };
6173
+
5907
6174
  // src/languages/opencl.ts
5908
6175
  var opencl = {
5909
6176
  slug: "opencl",
@@ -6600,6 +6867,36 @@ var pug = {
6600
6867
  }
6601
6868
  };
6602
6869
 
6870
+ // src/languages/puppet.ts
6871
+ var puppet = {
6872
+ slug: "puppet",
6873
+ publishedDate: "2005-01-01",
6874
+ extensions: [".pp", ".epp"],
6875
+ author: "Luke Kanies / Puppet, Inc.",
6876
+ website: "https://www.puppet.com/docs/puppet/latest/lang_summary",
6877
+ paradigms: ["declarative", "configuration management", "infrastructure as code"],
6878
+ tooling: {
6879
+ runtimes: ["Puppet Agent", "Puppet Server"],
6880
+ packageManagers: ["Puppet Forge", "r10k", "Code Manager"],
6881
+ ecosystems: ["DevOps", "Infrastructure as Code", "Configuration Management"]
6882
+ },
6883
+ version: "Puppet 8",
6884
+ logo: "https://cdn.simpleicons.org/puppet/FFAE1A",
6885
+ color: "#FFAE1A",
6886
+ i18n: {
6887
+ en: {
6888
+ name: "Puppet",
6889
+ description: "A declarative infrastructure language for describing system resources, configuration state, and reusable modules.",
6890
+ 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."
6891
+ },
6892
+ es: {
6893
+ name: "Puppet",
6894
+ description: "Lenguaje declarativo de infraestructura para describir recursos del sistema, estado de configuracion y modulos reutilizables.",
6895
+ 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."
6896
+ }
6897
+ }
6898
+ };
6899
+
6603
6900
  // src/languages/purescript.ts
6604
6901
  var purescript = {
6605
6902
  slug: "purescript",
@@ -9611,10 +9908,12 @@ var languages = [
9611
9908
  cuda,
9612
9909
  cython,
9613
9910
  d,
9911
+ dafny,
9614
9912
  dart,
9615
9913
  dhall,
9616
9914
  dita,
9617
9915
  dockerfile,
9916
+ ejs,
9618
9917
  eiffel,
9619
9918
  earthly,
9620
9919
  elixir,
@@ -9624,9 +9923,11 @@ var languages = [
9624
9923
  fish,
9625
9924
  fennel,
9626
9925
  flux,
9926
+ freemarker,
9627
9927
  fortran,
9628
9928
  forth,
9629
9929
  fsharp,
9930
+ fstar,
9630
9931
  gdscript,
9631
9932
  git,
9632
9933
  gleam,
@@ -9649,16 +9950,20 @@ var languages = [
9649
9950
  hy,
9650
9951
  idris,
9651
9952
  ini,
9953
+ isabelle,
9652
9954
  java,
9653
9955
  javascript,
9654
9956
  janet,
9655
9957
  jinja,
9656
9958
  json,
9657
9959
  json5,
9960
+ jsonc,
9658
9961
  jsonnet,
9659
9962
  jupyterNotebook,
9660
9963
  julia,
9964
+ just,
9661
9965
  kcl,
9966
+ kdl,
9662
9967
  kotlin,
9663
9968
  lean,
9664
9969
  less,
@@ -9691,6 +9996,7 @@ var languages = [
9691
9996
  objectiveC,
9692
9997
  odin,
9693
9998
  opencl,
9999
+ openapi,
9694
10000
  pascal,
9695
10001
  pkl,
9696
10002
  perl,
@@ -9704,6 +10010,7 @@ var languages = [
9704
10010
  promql,
9705
10011
  protobuf,
9706
10012
  pug,
10013
+ puppet,
9707
10014
  purescript,
9708
10015
  python,
9709
10016
  qml,