code-languages 1.14.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +61 -1
- package/dist/api.cjs +504 -0
- package/dist/api.cjs.map +1 -1
- package/dist/api.d.cts +324 -0
- package/dist/api.d.ts +324 -0
- package/dist/api.js +504 -0
- package/dist/api.js.map +1 -1
- package/dist/detect.cjs +360 -0
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +360 -0
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +516 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +324 -0
- package/dist/index.d.ts +324 -0
- package/dist/index.js +517 -1
- package/dist/index.js.map +1 -1
- package/dist/languages/ada.cjs +34 -0
- package/dist/languages/ada.cjs.map +1 -0
- package/dist/languages/ada.d.cts +29 -0
- package/dist/languages/ada.d.ts +29 -0
- package/dist/languages/ada.js +32 -0
- package/dist/languages/ada.js.map +1 -0
- package/dist/languages/apex.cjs +34 -0
- package/dist/languages/apex.cjs.map +1 -0
- package/dist/languages/apex.d.cts +29 -0
- package/dist/languages/apex.d.ts +29 -0
- package/dist/languages/apex.js +32 -0
- package/dist/languages/apex.js.map +1 -0
- package/dist/languages/awk.cjs +34 -0
- package/dist/languages/awk.cjs.map +1 -0
- package/dist/languages/awk.d.cts +29 -0
- package/dist/languages/awk.d.ts +29 -0
- package/dist/languages/awk.js +32 -0
- package/dist/languages/awk.js.map +1 -0
- package/dist/languages/clojure.cjs +34 -0
- package/dist/languages/clojure.cjs.map +1 -0
- package/dist/languages/clojure.d.cts +29 -0
- package/dist/languages/clojure.d.ts +29 -0
- package/dist/languages/clojure.js +32 -0
- package/dist/languages/clojure.js.map +1 -0
- package/dist/languages/d.cjs +34 -0
- package/dist/languages/d.cjs.map +1 -0
- package/dist/languages/d.d.cts +29 -0
- package/dist/languages/d.d.ts +29 -0
- package/dist/languages/d.js +32 -0
- package/dist/languages/d.js.map +1 -0
- package/dist/languages/fennel.cjs +34 -0
- package/dist/languages/fennel.cjs.map +1 -0
- package/dist/languages/fennel.d.cts +29 -0
- package/dist/languages/fennel.d.ts +29 -0
- package/dist/languages/fennel.js +32 -0
- package/dist/languages/fennel.js.map +1 -0
- package/dist/languages/gleam.cjs +34 -0
- package/dist/languages/gleam.cjs.map +1 -0
- package/dist/languages/gleam.d.cts +29 -0
- package/dist/languages/gleam.d.ts +29 -0
- package/dist/languages/gleam.js +32 -0
- package/dist/languages/gleam.js.map +1 -0
- package/dist/languages/haxe.cjs +34 -0
- package/dist/languages/haxe.cjs.map +1 -0
- package/dist/languages/haxe.d.cts +29 -0
- package/dist/languages/haxe.d.ts +29 -0
- package/dist/languages/haxe.js +32 -0
- package/dist/languages/haxe.js.map +1 -0
- package/dist/languages/nim.cjs +34 -0
- package/dist/languages/nim.cjs.map +1 -0
- package/dist/languages/nim.d.cts +29 -0
- package/dist/languages/nim.d.ts +29 -0
- package/dist/languages/nim.js +32 -0
- package/dist/languages/nim.js.map +1 -0
- package/dist/languages/protobuf.cjs +34 -0
- package/dist/languages/protobuf.cjs.map +1 -0
- package/dist/languages/protobuf.d.cts +29 -0
- package/dist/languages/protobuf.d.ts +29 -0
- package/dist/languages/protobuf.js +32 -0
- package/dist/languages/protobuf.js.map +1 -0
- package/dist/languages/racket.cjs +34 -0
- package/dist/languages/racket.cjs.map +1 -0
- package/dist/languages/racket.d.cts +29 -0
- package/dist/languages/racket.d.ts +29 -0
- package/dist/languages/racket.js +32 -0
- package/dist/languages/racket.js.map +1 -0
- package/dist/languages/tcl.cjs +34 -0
- package/dist/languages/tcl.cjs.map +1 -0
- package/dist/languages/tcl.d.cts +29 -0
- package/dist/languages/tcl.d.ts +29 -0
- package/dist/languages/tcl.js +32 -0
- package/dist/languages/tcl.js.map +1 -0
- package/package.json +61 -1
package/dist/index.cjs
CHANGED
|
@@ -84,6 +84,82 @@ var init_actionscript = __esm({
|
|
|
84
84
|
}
|
|
85
85
|
});
|
|
86
86
|
|
|
87
|
+
// src/languages/ada.ts
|
|
88
|
+
var ada_exports = {};
|
|
89
|
+
__export(ada_exports, {
|
|
90
|
+
ada: () => exports.ada
|
|
91
|
+
});
|
|
92
|
+
exports.ada = void 0;
|
|
93
|
+
var init_ada = __esm({
|
|
94
|
+
"src/languages/ada.ts"() {
|
|
95
|
+
exports.ada = {
|
|
96
|
+
slug: "ada",
|
|
97
|
+
publishedDate: "1980-01-01",
|
|
98
|
+
extensions: [".adb", ".ads", ".ada"],
|
|
99
|
+
author: "Jean Ichbiah / CII Honeywell Bull",
|
|
100
|
+
website: "https://www.adaic.org",
|
|
101
|
+
paradigms: ["imperative", "object-oriented", "concurrent", "real-time", "modular"],
|
|
102
|
+
tooling: {
|
|
103
|
+
runtimes: ["Native", "GNAT Runtime", "Ravenscar"],
|
|
104
|
+
packageManagers: ["Alire"],
|
|
105
|
+
ecosystems: ["Embedded", "Aerospace", "Defense", "Safety-critical Systems"]
|
|
106
|
+
},
|
|
107
|
+
version: "Ada 2022",
|
|
108
|
+
logo: "https://cdn.simpleicons.org/ada/02F88C",
|
|
109
|
+
i18n: {
|
|
110
|
+
en: {
|
|
111
|
+
name: "Ada",
|
|
112
|
+
description: "A strongly typed language for reliable, maintainable, and safety-critical software.",
|
|
113
|
+
longDescription: "Ada is a general-purpose programming language designed for reliability, readability, strong typing, modularity, concurrency, and real-time systems. Modern Ada includes packages, generics, tasking, protected objects, contracts, object-oriented features, and precise control over representation.\n\nIt is used in aerospace, defense, transportation, embedded systems, high-integrity applications, industrial control, and software where long-term maintainability and correctness are central requirements."
|
|
114
|
+
},
|
|
115
|
+
es: {
|
|
116
|
+
name: "Ada",
|
|
117
|
+
description: "Un lenguaje de tipado fuerte para software confiable, mantenible y critico para la seguridad.",
|
|
118
|
+
longDescription: "Ada es un lenguaje de programacion de proposito general disenado para confiabilidad, legibilidad, tipado fuerte, modularidad, concurrencia y sistemas de tiempo real. Ada moderno incluye paquetes, genericos, tareas, objetos protegidos, contratos, caracteristicas orientadas a objetos y control preciso de representacion.\n\nSe usa en aeroespacial, defensa, transporte, sistemas embebidos, aplicaciones de alta integridad, control industrial y software donde la mantenibilidad a largo plazo y la correccion son requisitos centrales."
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
// src/languages/apex.ts
|
|
126
|
+
var apex_exports = {};
|
|
127
|
+
__export(apex_exports, {
|
|
128
|
+
apex: () => exports.apex
|
|
129
|
+
});
|
|
130
|
+
exports.apex = void 0;
|
|
131
|
+
var init_apex = __esm({
|
|
132
|
+
"src/languages/apex.ts"() {
|
|
133
|
+
exports.apex = {
|
|
134
|
+
slug: "apex",
|
|
135
|
+
publishedDate: "2007-01-01",
|
|
136
|
+
extensions: [".cls", ".trigger"],
|
|
137
|
+
author: "Salesforce",
|
|
138
|
+
website: "https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/",
|
|
139
|
+
paradigms: ["object-oriented", "cloud", "database-oriented", "event-driven"],
|
|
140
|
+
tooling: {
|
|
141
|
+
runtimes: ["Salesforce Platform"],
|
|
142
|
+
packageManagers: ["Salesforce CLI", "Unlocked Packages", "Managed Packages"],
|
|
143
|
+
ecosystems: ["Salesforce", "CRM", "Enterprise Applications", "Platform Automation"]
|
|
144
|
+
},
|
|
145
|
+
version: "API 66.0",
|
|
146
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Salesforce.com_logo.svg",
|
|
147
|
+
i18n: {
|
|
148
|
+
en: {
|
|
149
|
+
name: "Apex",
|
|
150
|
+
description: "Salesforce's strongly typed, object-oriented language for platform business logic.",
|
|
151
|
+
longDescription: "Apex is a strongly typed, object-oriented programming language that runs on the Salesforce Platform. It combines Java-like syntax with platform-specific database operations, triggers, asynchronous jobs, governor limits, sharing rules, and integrations with Salesforce metadata and APIs.\n\nIt is used for CRM customizations, business automation, custom controllers, data validation, integrations, batch processing, platform events, and enterprise applications built inside Salesforce."
|
|
152
|
+
},
|
|
153
|
+
es: {
|
|
154
|
+
name: "Apex",
|
|
155
|
+
description: "El lenguaje fuertemente tipado y orientado a objetos de Salesforce para logica de negocio en la plataforma.",
|
|
156
|
+
longDescription: "Apex es un lenguaje de programacion fuertemente tipado y orientado a objetos que corre en Salesforce Platform. Combina sintaxis similar a Java con operaciones de base de datos propias de la plataforma, triggers, trabajos asincronos, governor limits, reglas de sharing e integraciones con metadata y APIs de Salesforce.\n\nSe usa para personalizaciones de CRM, automatizacion de negocio, controladores personalizados, validacion de datos, integraciones, procesamiento batch, platform events y aplicaciones empresariales construidas dentro de Salesforce."
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
};
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
|
|
87
163
|
// src/languages/asp.ts
|
|
88
164
|
var asp_exports = {};
|
|
89
165
|
__export(asp_exports, {
|
|
@@ -198,6 +274,44 @@ var init_astro = __esm({
|
|
|
198
274
|
}
|
|
199
275
|
});
|
|
200
276
|
|
|
277
|
+
// src/languages/awk.ts
|
|
278
|
+
var awk_exports = {};
|
|
279
|
+
__export(awk_exports, {
|
|
280
|
+
awk: () => exports.awk
|
|
281
|
+
});
|
|
282
|
+
exports.awk = void 0;
|
|
283
|
+
var init_awk = __esm({
|
|
284
|
+
"src/languages/awk.ts"() {
|
|
285
|
+
exports.awk = {
|
|
286
|
+
slug: "awk",
|
|
287
|
+
publishedDate: "1977-01-01",
|
|
288
|
+
extensions: [".awk"],
|
|
289
|
+
author: "Alfred Aho, Peter Weinberger, Brian Kernighan",
|
|
290
|
+
website: "https://www.gnu.org/software/gawk/",
|
|
291
|
+
paradigms: ["text-processing", "scripting", "pattern-action", "data-driven"],
|
|
292
|
+
tooling: {
|
|
293
|
+
runtimes: ["awk", "gawk", "mawk", "nawk"],
|
|
294
|
+
packageManagers: ["APT", "DNF", "Pacman", "Homebrew"],
|
|
295
|
+
ecosystems: ["Unix", "Text Processing", "Shell", "Data Extraction"]
|
|
296
|
+
},
|
|
297
|
+
version: "GNU Awk 5.4.0",
|
|
298
|
+
logo: "https://www.gnu.org/graphics/heckert_gnu.small.png",
|
|
299
|
+
i18n: {
|
|
300
|
+
en: {
|
|
301
|
+
name: "awk",
|
|
302
|
+
description: "A pattern-action language for scanning, transforming, and reporting on text data.",
|
|
303
|
+
longDescription: "awk is a compact text-processing language built around pattern-action rules, records, fields, associative arrays, regular expressions, and streaming input. It is commonly available on Unix-like systems, with GNU Awk adding many extensions and tooling conveniences.\n\nIt is used for command-line data extraction, log processing, report generation, one-off transformations, shell pipelines, lightweight ETL tasks, and scripts that need concise processing of structured or semi-structured text."
|
|
304
|
+
},
|
|
305
|
+
es: {
|
|
306
|
+
name: "awk",
|
|
307
|
+
description: "Un lenguaje de patron-accion para analizar, transformar y reportar datos de texto.",
|
|
308
|
+
longDescription: "awk es un lenguaje compacto de procesamiento de texto basado en reglas patron-accion, registros, campos, arreglos asociativos, expresiones regulares y entrada en streaming. Esta disponible comunmente en sistemas tipo Unix, con GNU Awk agregando muchas extensiones y comodidades de tooling.\n\nSe usa para extraccion de datos en linea de comandos, procesamiento de logs, generacion de reportes, transformaciones puntuales, pipelines de shell, tareas ETL ligeras y scripts que necesitan procesar texto estructurado o semiestructurado de forma concisa."
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
};
|
|
312
|
+
}
|
|
313
|
+
});
|
|
314
|
+
|
|
201
315
|
// src/languages/bash.ts
|
|
202
316
|
var bash_exports = {};
|
|
203
317
|
__export(bash_exports, {
|
|
@@ -311,6 +425,44 @@ var init_c = __esm({
|
|
|
311
425
|
}
|
|
312
426
|
});
|
|
313
427
|
|
|
428
|
+
// src/languages/clojure.ts
|
|
429
|
+
var clojure_exports = {};
|
|
430
|
+
__export(clojure_exports, {
|
|
431
|
+
clojure: () => exports.clojure
|
|
432
|
+
});
|
|
433
|
+
exports.clojure = void 0;
|
|
434
|
+
var init_clojure = __esm({
|
|
435
|
+
"src/languages/clojure.ts"() {
|
|
436
|
+
exports.clojure = {
|
|
437
|
+
slug: "clojure",
|
|
438
|
+
publishedDate: "2007-10-16",
|
|
439
|
+
extensions: [".clj", ".cljs", ".cljc", ".edn", ".bb"],
|
|
440
|
+
author: "Rich Hickey",
|
|
441
|
+
website: "https://clojure.org",
|
|
442
|
+
paradigms: ["functional", "lisp", "concurrent", "dynamic", "immutable-data"],
|
|
443
|
+
tooling: {
|
|
444
|
+
runtimes: ["JVM", "ClojureScript", "Babashka", "ClojureCLR"],
|
|
445
|
+
packageManagers: ["Clojure CLI", "Leiningen", "Boot", "Maven"],
|
|
446
|
+
ecosystems: ["JVM", "JavaScript", "Data Processing", "Web", "REPL-driven Development"]
|
|
447
|
+
},
|
|
448
|
+
version: "1.12.5",
|
|
449
|
+
logo: "https://cdn.simpleicons.org/clojure/5881D8",
|
|
450
|
+
i18n: {
|
|
451
|
+
en: {
|
|
452
|
+
name: "Clojure",
|
|
453
|
+
description: "A modern Lisp for the JVM and JavaScript ecosystems with immutable data and interactive development.",
|
|
454
|
+
longDescription: "Clojure is a dynamic functional Lisp dialect designed for practical software development on hosted runtimes. It emphasizes immutable persistent data structures, first-class functions, macros, namespaces, protocols, software transactional memory, and REPL-driven workflows.\n\nIt is used for backend services, data pipelines, interactive systems, scripting with Babashka, web applications, distributed systems, and projects that benefit from a small language core with strong data-oriented programming practices."
|
|
455
|
+
},
|
|
456
|
+
es: {
|
|
457
|
+
name: "Clojure",
|
|
458
|
+
description: "Un Lisp moderno para los ecosistemas JVM y JavaScript con datos inmutables y desarrollo interactivo.",
|
|
459
|
+
longDescription: "Clojure es un dialecto Lisp funcional y dinamico disenado para desarrollo practico de software sobre runtimes hospedados. Enfatiza estructuras de datos persistentes e inmutables, funciones de primera clase, macros, namespaces, protocolos, memoria transaccional de software y flujos guiados por REPL.\n\nSe usa en servicios backend, pipelines de datos, sistemas interactivos, scripting con Babashka, aplicaciones web, sistemas distribuidos y proyectos que se benefician de un nucleo pequeno de lenguaje con practicas fuertes de programacion orientada a datos."
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
};
|
|
463
|
+
}
|
|
464
|
+
});
|
|
465
|
+
|
|
314
466
|
// src/languages/cmake.ts
|
|
315
467
|
var cmake_exports = {};
|
|
316
468
|
__export(cmake_exports, {
|
|
@@ -608,6 +760,44 @@ var init_cuda = __esm({
|
|
|
608
760
|
}
|
|
609
761
|
});
|
|
610
762
|
|
|
763
|
+
// src/languages/d.ts
|
|
764
|
+
var d_exports = {};
|
|
765
|
+
__export(d_exports, {
|
|
766
|
+
d: () => exports.d
|
|
767
|
+
});
|
|
768
|
+
exports.d = void 0;
|
|
769
|
+
var init_d = __esm({
|
|
770
|
+
"src/languages/d.ts"() {
|
|
771
|
+
exports.d = {
|
|
772
|
+
slug: "d",
|
|
773
|
+
publishedDate: "2001-12-08",
|
|
774
|
+
extensions: [".d", ".di"],
|
|
775
|
+
author: "Walter Bright / D Language Foundation",
|
|
776
|
+
website: "https://dlang.org",
|
|
777
|
+
paradigms: ["systems", "imperative", "object-oriented", "generic", "functional"],
|
|
778
|
+
tooling: {
|
|
779
|
+
runtimes: ["Native", "D Runtime"],
|
|
780
|
+
packageManagers: ["DUB"],
|
|
781
|
+
ecosystems: ["Systems Programming", "Native Applications", "Tooling", "Game Development"]
|
|
782
|
+
},
|
|
783
|
+
version: "2.112.0",
|
|
784
|
+
logo: "https://cdn.simpleicons.org/d/BA595E",
|
|
785
|
+
i18n: {
|
|
786
|
+
en: {
|
|
787
|
+
name: "D",
|
|
788
|
+
description: "A systems programming language combining native performance with high-level abstractions.",
|
|
789
|
+
longDescription: "D is a general-purpose systems programming language with C-like syntax, native compilation, garbage collection, manual memory options, templates, compile-time function execution, ranges, contracts, and interoperability with C.\n\nIt is used for command-line tools, systems software, native services, high-performance applications, game tooling, compilers, and projects that want low-level control alongside expressive metaprogramming and modern language features."
|
|
790
|
+
},
|
|
791
|
+
es: {
|
|
792
|
+
name: "D",
|
|
793
|
+
description: "Un lenguaje de sistemas que combina rendimiento nativo con abstracciones de alto nivel.",
|
|
794
|
+
longDescription: "D es un lenguaje de programacion de sistemas de proposito general con sintaxis similar a C, compilacion nativa, garbage collection, opciones de memoria manual, templates, ejecucion de funciones en tiempo de compilacion, ranges, contratos e interoperabilidad con C.\n\nSe usa en herramientas de linea de comandos, software de sistemas, servicios nativos, aplicaciones de alto rendimiento, tooling para juegos, compiladores y proyectos que buscan control de bajo nivel junto con metaprogramacion expresiva y caracteristicas modernas de lenguaje."
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
};
|
|
798
|
+
}
|
|
799
|
+
});
|
|
800
|
+
|
|
611
801
|
// src/languages/dart.ts
|
|
612
802
|
var dart_exports = {};
|
|
613
803
|
__export(dart_exports, {
|
|
@@ -797,6 +987,44 @@ var init_erlang = __esm({
|
|
|
797
987
|
}
|
|
798
988
|
});
|
|
799
989
|
|
|
990
|
+
// src/languages/fennel.ts
|
|
991
|
+
var fennel_exports = {};
|
|
992
|
+
__export(fennel_exports, {
|
|
993
|
+
fennel: () => exports.fennel
|
|
994
|
+
});
|
|
995
|
+
exports.fennel = void 0;
|
|
996
|
+
var init_fennel = __esm({
|
|
997
|
+
"src/languages/fennel.ts"() {
|
|
998
|
+
exports.fennel = {
|
|
999
|
+
slug: "fennel",
|
|
1000
|
+
publishedDate: "2016-10-01",
|
|
1001
|
+
extensions: [".fnl"],
|
|
1002
|
+
author: "Calvin Rose, Phil Hagelberg",
|
|
1003
|
+
website: "https://fennel-lang.org",
|
|
1004
|
+
paradigms: ["functional", "lisp", "scripting", "metaprogramming"],
|
|
1005
|
+
tooling: {
|
|
1006
|
+
runtimes: ["Lua", "LuaJIT"],
|
|
1007
|
+
packageManagers: ["LuaRocks"],
|
|
1008
|
+
ecosystems: ["Lua", "Neovim", "Game Development", "Embedded Scripting"]
|
|
1009
|
+
},
|
|
1010
|
+
version: "1.6.1",
|
|
1011
|
+
logo: "https://fennel-lang.org/logo.svg",
|
|
1012
|
+
i18n: {
|
|
1013
|
+
en: {
|
|
1014
|
+
name: "Fennel",
|
|
1015
|
+
description: "A Lisp that compiles to Lua while preserving access to the Lua ecosystem.",
|
|
1016
|
+
longDescription: "Fennel is a Lisp dialect that compiles to Lua, offering parentheses, macros, pattern matching, destructuring, functional style, and interactive development while keeping compatibility with Lua runtimes and libraries.\n\nIt is used for Lua applications, Neovim configuration, game scripting, embedded extension languages, tools, and projects that want Lisp-style syntax and macros with Lua's portability and small runtime footprint."
|
|
1017
|
+
},
|
|
1018
|
+
es: {
|
|
1019
|
+
name: "Fennel",
|
|
1020
|
+
description: "Un Lisp que compila a Lua y conserva acceso al ecosistema Lua.",
|
|
1021
|
+
longDescription: "Fennel es un dialecto Lisp que compila a Lua, ofreciendo parentesis, macros, pattern matching, destructuring, estilo funcional y desarrollo interactivo mientras mantiene compatibilidad con runtimes y bibliotecas de Lua.\n\nSe usa en aplicaciones Lua, configuracion de Neovim, scripting para juegos, lenguajes embebidos de extension, herramientas y proyectos que quieren sintaxis y macros de estilo Lisp con la portabilidad y huella pequena de runtime de Lua."
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
};
|
|
1025
|
+
}
|
|
1026
|
+
});
|
|
1027
|
+
|
|
800
1028
|
// src/languages/fortran.ts
|
|
801
1029
|
var fortran_exports = {};
|
|
802
1030
|
__export(fortran_exports, {
|
|
@@ -910,6 +1138,44 @@ var init_git = __esm({
|
|
|
910
1138
|
}
|
|
911
1139
|
});
|
|
912
1140
|
|
|
1141
|
+
// src/languages/gleam.ts
|
|
1142
|
+
var gleam_exports = {};
|
|
1143
|
+
__export(gleam_exports, {
|
|
1144
|
+
gleam: () => exports.gleam
|
|
1145
|
+
});
|
|
1146
|
+
exports.gleam = void 0;
|
|
1147
|
+
var init_gleam = __esm({
|
|
1148
|
+
"src/languages/gleam.ts"() {
|
|
1149
|
+
exports.gleam = {
|
|
1150
|
+
slug: "gleam",
|
|
1151
|
+
publishedDate: "2019-04-15",
|
|
1152
|
+
extensions: [".gleam"],
|
|
1153
|
+
author: "Louis Pilfold",
|
|
1154
|
+
website: "https://gleam.run",
|
|
1155
|
+
paradigms: ["functional", "statically typed", "concurrent", "actor-model"],
|
|
1156
|
+
tooling: {
|
|
1157
|
+
runtimes: ["Erlang/OTP", "BEAM", "JavaScript"],
|
|
1158
|
+
packageManagers: ["gleam", "Hex"],
|
|
1159
|
+
ecosystems: ["BEAM", "Erlang", "Elixir", "JavaScript", "Web"]
|
|
1160
|
+
},
|
|
1161
|
+
version: "1.16.0",
|
|
1162
|
+
logo: "https://cdn.simpleicons.org/gleam/FFAFF3",
|
|
1163
|
+
i18n: {
|
|
1164
|
+
en: {
|
|
1165
|
+
name: "Gleam",
|
|
1166
|
+
description: "A friendly statically typed functional language for the BEAM and JavaScript.",
|
|
1167
|
+
longDescription: "Gleam is a statically typed functional programming language that compiles to Erlang and JavaScript. It provides algebraic data types, pattern matching, immutable data, a small syntax, helpful compiler errors, and interoperability with Erlang and Elixir libraries on the BEAM.\n\nIt is used for web services, concurrent systems, command-line tools, full-stack applications, and projects that want BEAM reliability with a lightweight type system and approachable functional programming model."
|
|
1168
|
+
},
|
|
1169
|
+
es: {
|
|
1170
|
+
name: "Gleam",
|
|
1171
|
+
description: "Un lenguaje funcional amigable y de tipado estatico para BEAM y JavaScript.",
|
|
1172
|
+
longDescription: "Gleam es un lenguaje de programacion funcional con tipado estatico que compila a Erlang y JavaScript. Ofrece tipos algebraicos, pattern matching, datos inmutables, una sintaxis pequena, errores de compilador utiles e interoperabilidad con bibliotecas Erlang y Elixir sobre BEAM.\n\nSe usa en servicios web, sistemas concurrentes, herramientas de linea de comandos, aplicaciones full-stack y proyectos que buscan la confiabilidad de BEAM con un sistema de tipos ligero y un modelo funcional accesible."
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
};
|
|
1176
|
+
}
|
|
1177
|
+
});
|
|
1178
|
+
|
|
913
1179
|
// src/languages/glsl.ts
|
|
914
1180
|
var glsl_exports = {};
|
|
915
1181
|
__export(glsl_exports, {
|
|
@@ -1138,6 +1404,44 @@ var init_haskell = __esm({
|
|
|
1138
1404
|
}
|
|
1139
1405
|
});
|
|
1140
1406
|
|
|
1407
|
+
// src/languages/haxe.ts
|
|
1408
|
+
var haxe_exports = {};
|
|
1409
|
+
__export(haxe_exports, {
|
|
1410
|
+
haxe: () => exports.haxe
|
|
1411
|
+
});
|
|
1412
|
+
exports.haxe = void 0;
|
|
1413
|
+
var init_haxe = __esm({
|
|
1414
|
+
"src/languages/haxe.ts"() {
|
|
1415
|
+
exports.haxe = {
|
|
1416
|
+
slug: "haxe",
|
|
1417
|
+
publishedDate: "2005-10-01",
|
|
1418
|
+
extensions: [".hx", ".hxml"],
|
|
1419
|
+
author: "Nicolas Cannasse / Haxe Foundation",
|
|
1420
|
+
website: "https://haxe.org",
|
|
1421
|
+
paradigms: ["object-oriented", "functional", "cross-platform", "statically typed"],
|
|
1422
|
+
tooling: {
|
|
1423
|
+
runtimes: ["JavaScript", "HashLink", "JVM", "C++", "C#", "PHP", "Lua", "Python"],
|
|
1424
|
+
packageManagers: ["haxelib"],
|
|
1425
|
+
ecosystems: ["Games", "Web", "Cross-platform Applications", "OpenFL", "Heaps"]
|
|
1426
|
+
},
|
|
1427
|
+
version: "4.3.7",
|
|
1428
|
+
logo: "https://cdn.simpleicons.org/haxe/EA8220",
|
|
1429
|
+
i18n: {
|
|
1430
|
+
en: {
|
|
1431
|
+
name: "Haxe",
|
|
1432
|
+
description: "A cross-platform typed language that compiles to many runtimes and targets.",
|
|
1433
|
+
longDescription: "Haxe is a high-level, statically typed programming language and compiler toolkit that targets JavaScript, C++, C#, Java, JVM bytecode, PHP, Lua, Python, HashLink, and other platforms. It includes type inference, macros, abstracts, generics, pattern matching, and a shared standard library.\n\nIt is used for games, web applications, creative coding, cross-platform tools, multimedia frameworks, and codebases that need to share typed business or engine logic across many targets."
|
|
1434
|
+
},
|
|
1435
|
+
es: {
|
|
1436
|
+
name: "Haxe",
|
|
1437
|
+
description: "Un lenguaje tipado multiplataforma que compila a muchos runtimes y destinos.",
|
|
1438
|
+
longDescription: "Haxe es un lenguaje de programacion de alto nivel con tipado estatico y un toolkit de compilador que apunta a JavaScript, C++, C#, Java, bytecode JVM, PHP, Lua, Python, HashLink y otras plataformas. Incluye inferencia de tipos, macros, abstracts, genericos, pattern matching y una biblioteca estandar compartida.\n\nSe usa en juegos, aplicaciones web, creative coding, herramientas multiplataforma, frameworks multimedia y codebases que necesitan compartir logica tipada de negocio o motor entre muchos destinos."
|
|
1439
|
+
}
|
|
1440
|
+
}
|
|
1441
|
+
};
|
|
1442
|
+
}
|
|
1443
|
+
});
|
|
1444
|
+
|
|
1141
1445
|
// src/languages/hcl.ts
|
|
1142
1446
|
var hcl_exports = {};
|
|
1143
1447
|
__export(hcl_exports, {
|
|
@@ -1802,6 +2106,44 @@ var init_nginx = __esm({
|
|
|
1802
2106
|
}
|
|
1803
2107
|
});
|
|
1804
2108
|
|
|
2109
|
+
// src/languages/nim.ts
|
|
2110
|
+
var nim_exports = {};
|
|
2111
|
+
__export(nim_exports, {
|
|
2112
|
+
nim: () => exports.nim
|
|
2113
|
+
});
|
|
2114
|
+
exports.nim = void 0;
|
|
2115
|
+
var init_nim = __esm({
|
|
2116
|
+
"src/languages/nim.ts"() {
|
|
2117
|
+
exports.nim = {
|
|
2118
|
+
slug: "nim",
|
|
2119
|
+
publishedDate: "2008-08-20",
|
|
2120
|
+
extensions: [".nim", ".nims", ".nimble"],
|
|
2121
|
+
author: "Andreas Rumpf",
|
|
2122
|
+
website: "https://nim-lang.org",
|
|
2123
|
+
paradigms: ["systems", "imperative", "functional", "metaprogramming", "statically typed"],
|
|
2124
|
+
tooling: {
|
|
2125
|
+
runtimes: ["Native", "JavaScript"],
|
|
2126
|
+
packageManagers: ["Nimble"],
|
|
2127
|
+
ecosystems: ["Systems Programming", "CLI", "Web", "Embedded", "Native Applications"]
|
|
2128
|
+
},
|
|
2129
|
+
version: "2.2.10",
|
|
2130
|
+
logo: "https://cdn.simpleicons.org/nim/FFE953",
|
|
2131
|
+
i18n: {
|
|
2132
|
+
en: {
|
|
2133
|
+
name: "Nim",
|
|
2134
|
+
description: "A compiled systems language with Python-like syntax, macros, and efficient native output.",
|
|
2135
|
+
longDescription: "Nim is a statically typed compiled language designed for efficiency, expressiveness, and flexibility. It offers indentation-based syntax, generics, macros, templates, multiple memory-management strategies, C/C++/Objective-C interoperability, and compilation to C, C++, Objective-C, or JavaScript.\n\nIt is used for command-line tools, systems programming, embedded software, web services, scripting-like automation, native applications, and projects that want low overhead with powerful metaprogramming."
|
|
2136
|
+
},
|
|
2137
|
+
es: {
|
|
2138
|
+
name: "Nim",
|
|
2139
|
+
description: "Un lenguaje compilado de sistemas con sintaxis similar a Python, macros y salida nativa eficiente.",
|
|
2140
|
+
longDescription: "Nim es un lenguaje compilado con tipado estatico disenado para eficiencia, expresividad y flexibilidad. Ofrece sintaxis basada en indentacion, genericos, macros, templates, varias estrategias de gestion de memoria, interoperabilidad con C/C++/Objective-C y compilacion a C, C++, Objective-C o JavaScript.\n\nSe usa en herramientas de linea de comandos, programacion de sistemas, software embebido, servicios web, automatizacion con estilo de scripting, aplicaciones nativas y proyectos que buscan bajo overhead con metaprogramacion potente."
|
|
2141
|
+
}
|
|
2142
|
+
}
|
|
2143
|
+
};
|
|
2144
|
+
}
|
|
2145
|
+
});
|
|
2146
|
+
|
|
1805
2147
|
// src/languages/nix.ts
|
|
1806
2148
|
var nix_exports = {};
|
|
1807
2149
|
__export(nix_exports, {
|
|
@@ -2068,6 +2410,44 @@ var init_powershell = __esm({
|
|
|
2068
2410
|
}
|
|
2069
2411
|
});
|
|
2070
2412
|
|
|
2413
|
+
// src/languages/protobuf.ts
|
|
2414
|
+
var protobuf_exports = {};
|
|
2415
|
+
__export(protobuf_exports, {
|
|
2416
|
+
protobuf: () => exports.protobuf
|
|
2417
|
+
});
|
|
2418
|
+
exports.protobuf = void 0;
|
|
2419
|
+
var init_protobuf = __esm({
|
|
2420
|
+
"src/languages/protobuf.ts"() {
|
|
2421
|
+
exports.protobuf = {
|
|
2422
|
+
slug: "protobuf",
|
|
2423
|
+
publishedDate: "2008-07-07",
|
|
2424
|
+
extensions: [".proto"],
|
|
2425
|
+
author: "Google",
|
|
2426
|
+
website: "https://protobuf.dev",
|
|
2427
|
+
paradigms: ["interface-definition", "schema", "declarative", "data-serialization"],
|
|
2428
|
+
tooling: {
|
|
2429
|
+
runtimes: ["Protocol Buffers Runtime", "gRPC"],
|
|
2430
|
+
packageManagers: ["Buf", "npm", "Maven", "Go modules", "NuGet", "PyPI"],
|
|
2431
|
+
ecosystems: ["gRPC", "APIs", "Microservices", "Data Serialization"]
|
|
2432
|
+
},
|
|
2433
|
+
version: "34.1",
|
|
2434
|
+
logo: "https://cdn.simpleicons.org/google/4285F4",
|
|
2435
|
+
i18n: {
|
|
2436
|
+
en: {
|
|
2437
|
+
name: "Protocol Buffers",
|
|
2438
|
+
description: "Google's language-neutral schema format for structured data serialization and service APIs.",
|
|
2439
|
+
longDescription: "Protocol Buffers is a language-neutral, platform-neutral mechanism for defining structured data schemas and generating strongly typed code in many programming languages. `.proto` files describe messages, fields, enums, services, packages, imports, options, and RPC contracts.\n\nIt is widely used with gRPC, microservices, distributed systems, APIs, telemetry, configuration, event streams, and storage formats that need compact binary serialization and stable cross-language contracts."
|
|
2440
|
+
},
|
|
2441
|
+
es: {
|
|
2442
|
+
name: "Protocol Buffers",
|
|
2443
|
+
description: "El formato de schemas neutral de Google para serializacion de datos estructurados y APIs de servicios.",
|
|
2444
|
+
longDescription: "Protocol Buffers es un mecanismo neutral en lenguaje y plataforma para definir schemas de datos estructurados y generar codigo tipado en muchos lenguajes de programacion. Los archivos `.proto` describen mensajes, campos, enums, servicios, paquetes, imports, opciones y contratos RPC.\n\nSe usa ampliamente con gRPC, microservicios, sistemas distribuidos, APIs, telemetria, configuracion, flujos de eventos y formatos de almacenamiento que necesitan serializacion binaria compacta y contratos estables entre lenguajes."
|
|
2445
|
+
}
|
|
2446
|
+
}
|
|
2447
|
+
};
|
|
2448
|
+
}
|
|
2449
|
+
});
|
|
2450
|
+
|
|
2071
2451
|
// src/languages/pug.ts
|
|
2072
2452
|
var pug_exports = {};
|
|
2073
2453
|
__export(pug_exports, {
|
|
@@ -2182,6 +2562,44 @@ var init_r = __esm({
|
|
|
2182
2562
|
}
|
|
2183
2563
|
});
|
|
2184
2564
|
|
|
2565
|
+
// src/languages/racket.ts
|
|
2566
|
+
var racket_exports = {};
|
|
2567
|
+
__export(racket_exports, {
|
|
2568
|
+
racket: () => exports.racket
|
|
2569
|
+
});
|
|
2570
|
+
exports.racket = void 0;
|
|
2571
|
+
var init_racket = __esm({
|
|
2572
|
+
"src/languages/racket.ts"() {
|
|
2573
|
+
exports.racket = {
|
|
2574
|
+
slug: "racket",
|
|
2575
|
+
publishedDate: "1995-01-01",
|
|
2576
|
+
extensions: [".rkt", ".rktd", ".rktl", ".scrbl"],
|
|
2577
|
+
author: "Matthias Felleisen, Robert Bruce Findler, Matthew Flatt, Shriram Krishnamurthi",
|
|
2578
|
+
website: "https://racket-lang.org",
|
|
2579
|
+
paradigms: ["functional", "multi-paradigm", "language-oriented", "metaprogramming"],
|
|
2580
|
+
tooling: {
|
|
2581
|
+
runtimes: ["Racket CS", "Racket BC", "DrRacket"],
|
|
2582
|
+
packageManagers: ["raco pkg"],
|
|
2583
|
+
ecosystems: ["Education", "Language Design", "DSLs", "Research", "Scripting"]
|
|
2584
|
+
},
|
|
2585
|
+
version: "9.1",
|
|
2586
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Racket-logo.svg",
|
|
2587
|
+
i18n: {
|
|
2588
|
+
en: {
|
|
2589
|
+
name: "Racket",
|
|
2590
|
+
description: "A Scheme-family language and platform for functional, educational, and language-oriented programming.",
|
|
2591
|
+
longDescription: "Racket is a general-purpose programming language in the Scheme and Lisp family, designed as a platform for creating languages as well as applications. It includes modules, macros, contracts, pattern matching, a rich standard library, DrRacket, and tools for building domain-specific languages.\n\nIt is used in programming education, language design research, DSLs, compilers, scripting, web applications, documentation with Scribble, and projects that benefit from programmable syntax and interactive development."
|
|
2592
|
+
},
|
|
2593
|
+
es: {
|
|
2594
|
+
name: "Racket",
|
|
2595
|
+
description: "Un lenguaje de la familia Scheme y una plataforma para programacion funcional, educativa y orientada a lenguajes.",
|
|
2596
|
+
longDescription: "Racket es un lenguaje de programacion de proposito general de la familia Scheme y Lisp, disenado como plataforma para crear lenguajes ademas de aplicaciones. Incluye modulos, macros, contratos, pattern matching, una biblioteca estandar amplia, DrRacket y herramientas para construir lenguajes especificos de dominio.\n\nSe usa en educacion en programacion, investigacion en diseno de lenguajes, DSLs, compiladores, scripting, aplicaciones web, documentacion con Scribble y proyectos que se benefician de sintaxis programable y desarrollo interactivo."
|
|
2597
|
+
}
|
|
2598
|
+
}
|
|
2599
|
+
};
|
|
2600
|
+
}
|
|
2601
|
+
});
|
|
2602
|
+
|
|
2185
2603
|
// src/languages/razor.ts
|
|
2186
2604
|
var razor_exports = {};
|
|
2187
2605
|
__export(razor_exports, {
|
|
@@ -2593,6 +3011,44 @@ var init_swift = __esm({
|
|
|
2593
3011
|
}
|
|
2594
3012
|
});
|
|
2595
3013
|
|
|
3014
|
+
// src/languages/tcl.ts
|
|
3015
|
+
var tcl_exports = {};
|
|
3016
|
+
__export(tcl_exports, {
|
|
3017
|
+
tcl: () => exports.tcl
|
|
3018
|
+
});
|
|
3019
|
+
exports.tcl = void 0;
|
|
3020
|
+
var init_tcl = __esm({
|
|
3021
|
+
"src/languages/tcl.ts"() {
|
|
3022
|
+
exports.tcl = {
|
|
3023
|
+
slug: "tcl",
|
|
3024
|
+
publishedDate: "1988-01-01",
|
|
3025
|
+
extensions: [".tcl", ".tm", ".test"],
|
|
3026
|
+
author: "John Ousterhout",
|
|
3027
|
+
website: "https://www.tcl-lang.org",
|
|
3028
|
+
paradigms: ["scripting", "command", "event-driven", "embeddable"],
|
|
3029
|
+
tooling: {
|
|
3030
|
+
runtimes: ["Tcl", "Tk", "tclsh", "wish"],
|
|
3031
|
+
packageManagers: ["Teapot", "Tcl Modules"],
|
|
3032
|
+
ecosystems: ["GUI Applications", "EDA", "Automation", "Embedded Scripting"]
|
|
3033
|
+
},
|
|
3034
|
+
version: "9.0.3",
|
|
3035
|
+
logo: "https://www.tcl-lang.org/images/tcl-logo.png",
|
|
3036
|
+
i18n: {
|
|
3037
|
+
en: {
|
|
3038
|
+
name: "Tcl/Tk",
|
|
3039
|
+
description: "An embeddable command language and GUI toolkit for automation, tools, and applications.",
|
|
3040
|
+
longDescription: "Tcl is a dynamic command language designed for embedding, scripting, automation, and extension. Tk is its cross-platform GUI toolkit. Together they provide a simple command syntax, event loop, strings-as-data model, embeddability, and portable user interface components.\n\nTcl/Tk is used for desktop tools, EDA and CAD automation, test harnesses, embedded scripting, build and deployment scripts, rapid prototypes, and applications that need a small extensible command language."
|
|
3041
|
+
},
|
|
3042
|
+
es: {
|
|
3043
|
+
name: "Tcl/Tk",
|
|
3044
|
+
description: "Un lenguaje de comandos embebible y toolkit GUI para automatizacion, herramientas y aplicaciones.",
|
|
3045
|
+
longDescription: "Tcl es un lenguaje dinamico de comandos disenado para embedding, scripting, automatizacion y extension. Tk es su toolkit GUI multiplataforma. Juntos ofrecen una sintaxis simple de comandos, event loop, modelo de strings como datos, capacidad de embedding y componentes de interfaz portables.\n\nTcl/Tk se usa en herramientas de escritorio, automatizacion EDA y CAD, bancos de prueba, scripting embebido, scripts de build y despliegue, prototipos rapidos y aplicaciones que necesitan un lenguaje de comandos pequeno y extensible."
|
|
3046
|
+
}
|
|
3047
|
+
}
|
|
3048
|
+
};
|
|
3049
|
+
}
|
|
3050
|
+
});
|
|
3051
|
+
|
|
2596
3052
|
// src/languages/toml.ts
|
|
2597
3053
|
var toml_exports = {};
|
|
2598
3054
|
__export(toml_exports, {
|
|
@@ -2960,12 +3416,16 @@ var init_zsh = __esm({
|
|
|
2960
3416
|
// src/catalog.ts
|
|
2961
3417
|
init_abap();
|
|
2962
3418
|
init_actionscript();
|
|
3419
|
+
init_ada();
|
|
3420
|
+
init_apex();
|
|
2963
3421
|
init_asp();
|
|
2964
3422
|
init_assembly();
|
|
2965
3423
|
init_astro();
|
|
3424
|
+
init_awk();
|
|
2966
3425
|
init_bash();
|
|
2967
3426
|
init_batch();
|
|
2968
3427
|
init_c();
|
|
3428
|
+
init_clojure();
|
|
2969
3429
|
init_cmake();
|
|
2970
3430
|
init_cobol();
|
|
2971
3431
|
init_coffeescript();
|
|
@@ -2974,20 +3434,24 @@ init_crystal();
|
|
|
2974
3434
|
init_csharp();
|
|
2975
3435
|
init_css();
|
|
2976
3436
|
init_cuda();
|
|
3437
|
+
init_d();
|
|
2977
3438
|
init_dart();
|
|
2978
3439
|
init_dockerfile();
|
|
2979
3440
|
init_elixir();
|
|
2980
3441
|
init_elm();
|
|
2981
3442
|
init_erlang();
|
|
3443
|
+
init_fennel();
|
|
2982
3444
|
init_fortran();
|
|
2983
3445
|
init_fsharp();
|
|
2984
3446
|
init_git();
|
|
3447
|
+
init_gleam();
|
|
2985
3448
|
init_glsl();
|
|
2986
3449
|
init_go();
|
|
2987
3450
|
init_gradle();
|
|
2988
3451
|
init_graphql();
|
|
2989
3452
|
init_groovy();
|
|
2990
3453
|
init_haskell();
|
|
3454
|
+
init_haxe();
|
|
2991
3455
|
init_hcl();
|
|
2992
3456
|
init_html();
|
|
2993
3457
|
init_ini();
|
|
@@ -3006,6 +3470,7 @@ init_matlab();
|
|
|
3006
3470
|
init_meson();
|
|
3007
3471
|
init_metal();
|
|
3008
3472
|
init_nginx();
|
|
3473
|
+
init_nim();
|
|
3009
3474
|
init_nix();
|
|
3010
3475
|
init_objective_c();
|
|
3011
3476
|
init_ocaml();
|
|
@@ -3013,9 +3478,11 @@ init_pascal();
|
|
|
3013
3478
|
init_perl();
|
|
3014
3479
|
init_php();
|
|
3015
3480
|
init_powershell();
|
|
3481
|
+
init_protobuf();
|
|
3016
3482
|
init_pug();
|
|
3017
3483
|
init_python();
|
|
3018
3484
|
init_r();
|
|
3485
|
+
init_racket();
|
|
3019
3486
|
init_razor();
|
|
3020
3487
|
init_ruby();
|
|
3021
3488
|
init_rust();
|
|
@@ -3027,6 +3494,7 @@ init_svelte();
|
|
|
3027
3494
|
init_svg();
|
|
3028
3495
|
init_svn();
|
|
3029
3496
|
init_swift();
|
|
3497
|
+
init_tcl();
|
|
3030
3498
|
init_toml();
|
|
3031
3499
|
init_typescript();
|
|
3032
3500
|
init_visual_basic();
|
|
@@ -3040,13 +3508,17 @@ init_zsh();
|
|
|
3040
3508
|
var languages = [
|
|
3041
3509
|
exports.abap,
|
|
3042
3510
|
exports.actionscript,
|
|
3511
|
+
exports.ada,
|
|
3512
|
+
exports.apex,
|
|
3043
3513
|
exports.asp,
|
|
3044
3514
|
exports.astro,
|
|
3045
3515
|
exports.assembly,
|
|
3516
|
+
exports.awk,
|
|
3046
3517
|
exports.bash,
|
|
3047
3518
|
exports.batch,
|
|
3048
3519
|
exports.c,
|
|
3049
3520
|
exports.cmake,
|
|
3521
|
+
exports.clojure,
|
|
3050
3522
|
exports.coffeescript,
|
|
3051
3523
|
exports.cobol,
|
|
3052
3524
|
exports.cpp,
|
|
@@ -3054,20 +3526,24 @@ var languages = [
|
|
|
3054
3526
|
exports.crystal,
|
|
3055
3527
|
exports.css,
|
|
3056
3528
|
exports.cuda,
|
|
3529
|
+
exports.d,
|
|
3057
3530
|
exports.dart,
|
|
3058
3531
|
exports.dockerfile,
|
|
3059
3532
|
exports.elixir,
|
|
3060
3533
|
exports.elm,
|
|
3061
3534
|
exports.erlang,
|
|
3535
|
+
exports.fennel,
|
|
3062
3536
|
exports.fortran,
|
|
3063
3537
|
exports.fsharp,
|
|
3064
3538
|
exports.git,
|
|
3539
|
+
exports.gleam,
|
|
3065
3540
|
exports.go,
|
|
3066
3541
|
exports.gradle,
|
|
3067
3542
|
exports.glsl,
|
|
3068
3543
|
exports.graphql,
|
|
3069
3544
|
exports.groovy,
|
|
3070
3545
|
exports.haskell,
|
|
3546
|
+
exports.haxe,
|
|
3071
3547
|
exports.hcl,
|
|
3072
3548
|
exports.html,
|
|
3073
3549
|
exports.ini,
|
|
@@ -3087,6 +3563,7 @@ var languages = [
|
|
|
3087
3563
|
exports.metal,
|
|
3088
3564
|
exports.svn,
|
|
3089
3565
|
exports.nginx,
|
|
3566
|
+
exports.nim,
|
|
3090
3567
|
exports.nix,
|
|
3091
3568
|
exports.ocaml,
|
|
3092
3569
|
exports.objectiveC,
|
|
@@ -3094,9 +3571,11 @@ var languages = [
|
|
|
3094
3571
|
exports.perl,
|
|
3095
3572
|
exports.php,
|
|
3096
3573
|
exports.powershell,
|
|
3574
|
+
exports.protobuf,
|
|
3097
3575
|
exports.pug,
|
|
3098
3576
|
exports.python,
|
|
3099
3577
|
exports.r,
|
|
3578
|
+
exports.racket,
|
|
3100
3579
|
exports.razor,
|
|
3101
3580
|
exports.ruby,
|
|
3102
3581
|
exports.rust,
|
|
@@ -3107,6 +3586,7 @@ var languages = [
|
|
|
3107
3586
|
exports.svg,
|
|
3108
3587
|
exports.svelte,
|
|
3109
3588
|
exports.swift,
|
|
3589
|
+
exports.tcl,
|
|
3110
3590
|
exports.toml,
|
|
3111
3591
|
exports.typescript,
|
|
3112
3592
|
exports.visualBasic,
|
|
@@ -3175,9 +3655,12 @@ var resolveLocale = (translations, locale) => {
|
|
|
3175
3655
|
var languageIndex = [
|
|
3176
3656
|
{ slug: "abap", extensions: [".abap"] },
|
|
3177
3657
|
{ slug: "actionscript", extensions: [".as"] },
|
|
3658
|
+
{ slug: "ada", extensions: [".adb", ".ads", ".ada"] },
|
|
3659
|
+
{ slug: "apex", extensions: [".cls", ".trigger"] },
|
|
3178
3660
|
{ slug: "asp", extensions: [".asp", ".aspx", ".ascx", ".ashx", ".asmx", ".master"] },
|
|
3179
3661
|
{ slug: "astro", extensions: [".astro"] },
|
|
3180
3662
|
{ slug: "assembly", extensions: [".asm", ".s", ".S", ".inc"] },
|
|
3663
|
+
{ slug: "awk", extensions: [".awk"] },
|
|
3181
3664
|
{
|
|
3182
3665
|
slug: "bash",
|
|
3183
3666
|
extensions: [".sh", ".bash", ".bashrc", ".bash_profile", ".bash_login", ".profile"]
|
|
@@ -3185,6 +3668,7 @@ var languageIndex = [
|
|
|
3185
3668
|
{ slug: "batch", extensions: [".bat", ".cmd"] },
|
|
3186
3669
|
{ slug: "c", extensions: [".c", ".h"] },
|
|
3187
3670
|
{ slug: "cmake", extensions: ["CMakeLists.txt", ".cmake"] },
|
|
3671
|
+
{ slug: "clojure", extensions: [".clj", ".cljs", ".cljc", ".edn", ".bb"] },
|
|
3188
3672
|
{ slug: "coffeescript", extensions: [".coffee", ".litcoffee", ".cson"] },
|
|
3189
3673
|
{ slug: "cobol", extensions: [".cob", ".cbl", ".cobol", ".cpy"] },
|
|
3190
3674
|
{ slug: "cpp", extensions: [".cpp", ".cc", ".cxx", ".h", ".hpp", ".hh", ".hxx"] },
|
|
@@ -3192,6 +3676,7 @@ var languageIndex = [
|
|
|
3192
3676
|
{ slug: "crystal", extensions: [".cr"] },
|
|
3193
3677
|
{ slug: "css", extensions: [".css"] },
|
|
3194
3678
|
{ slug: "cuda", extensions: [".cu", ".cuh"] },
|
|
3679
|
+
{ slug: "d", extensions: [".d", ".di"] },
|
|
3195
3680
|
{ slug: "dart", extensions: [".dart"] },
|
|
3196
3681
|
{ slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
|
|
3197
3682
|
{ slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
|
|
@@ -3200,12 +3685,14 @@ var languageIndex = [
|
|
|
3200
3685
|
slug: "erlang",
|
|
3201
3686
|
extensions: [".erl", ".hrl", ".app.src", ".escript", ".xrl", ".yrl", "rebar.config"]
|
|
3202
3687
|
},
|
|
3688
|
+
{ slug: "fennel", extensions: [".fnl"] },
|
|
3203
3689
|
{
|
|
3204
3690
|
slug: "fortran",
|
|
3205
3691
|
extensions: [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"]
|
|
3206
3692
|
},
|
|
3207
3693
|
{ slug: "fsharp", extensions: [".fs", ".fsi", ".fsx", ".fsscript"] },
|
|
3208
3694
|
{ slug: "git", extensions: [".git", ".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"] },
|
|
3695
|
+
{ slug: "gleam", extensions: [".gleam"] },
|
|
3209
3696
|
{ slug: "go", extensions: [".go"] },
|
|
3210
3697
|
{ slug: "gradle", extensions: [".gradle", ".gradle.kts"] },
|
|
3211
3698
|
{
|
|
@@ -3215,6 +3702,7 @@ var languageIndex = [
|
|
|
3215
3702
|
{ slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
|
|
3216
3703
|
{ slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
|
|
3217
3704
|
{ slug: "haskell", extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"] },
|
|
3705
|
+
{ slug: "haxe", extensions: [".hx", ".hxml"] },
|
|
3218
3706
|
{ slug: "hcl", extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"] },
|
|
3219
3707
|
{ slug: "html", extensions: [".html", ".htm"] },
|
|
3220
3708
|
{ slug: "ini", extensions: [".ini"] },
|
|
@@ -3234,6 +3722,7 @@ var languageIndex = [
|
|
|
3234
3722
|
{ slug: "metal", extensions: [".metal"] },
|
|
3235
3723
|
{ slug: "svn", extensions: [".svn", "svnserve.conf"] },
|
|
3236
3724
|
{ slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
|
|
3725
|
+
{ slug: "nim", extensions: [".nim", ".nims", ".nimble"] },
|
|
3237
3726
|
{ slug: "nix", extensions: [".nix"] },
|
|
3238
3727
|
{ slug: "ocaml", extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"] },
|
|
3239
3728
|
{ slug: "objective-c", extensions: [".m", ".mm"] },
|
|
@@ -3241,9 +3730,11 @@ var languageIndex = [
|
|
|
3241
3730
|
{ slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
|
|
3242
3731
|
{ slug: "php", extensions: [".php", ".phtml", ".php3", ".php4", ".php5", ".phps"] },
|
|
3243
3732
|
{ slug: "powershell", extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"] },
|
|
3733
|
+
{ slug: "protobuf", extensions: [".proto"] },
|
|
3244
3734
|
{ slug: "pug", extensions: [".pug", ".jade"] },
|
|
3245
3735
|
{ slug: "python", extensions: [".py", ".pyw"] },
|
|
3246
3736
|
{ slug: "r", extensions: [".r", ".R", ".rmd", ".Rmd", ".qmd", ".Rprofile"] },
|
|
3737
|
+
{ slug: "racket", extensions: [".rkt", ".rktd", ".rktl", ".scrbl"] },
|
|
3247
3738
|
{ slug: "razor", extensions: [".cshtml", ".razor"] },
|
|
3248
3739
|
{
|
|
3249
3740
|
slug: "ruby",
|
|
@@ -3257,6 +3748,7 @@ var languageIndex = [
|
|
|
3257
3748
|
{ slug: "svg", extensions: [".svg", ".svgz"] },
|
|
3258
3749
|
{ slug: "svelte", extensions: [".svelte"] },
|
|
3259
3750
|
{ slug: "swift", extensions: [".swift"] },
|
|
3751
|
+
{ slug: "tcl", extensions: [".tcl", ".tm", ".test"] },
|
|
3260
3752
|
{ slug: "toml", extensions: [".toml"] },
|
|
3261
3753
|
{ slug: "typescript", extensions: [".ts", ".tsx", ".mts", ".cts"] },
|
|
3262
3754
|
{ slug: "visual-basic", extensions: [".vb"] },
|
|
@@ -3274,13 +3766,17 @@ var languageIndex = [
|
|
|
3274
3766
|
var languageLoaders = {
|
|
3275
3767
|
abap: () => Promise.resolve().then(() => (init_abap(), abap_exports)).then((module) => module.abap),
|
|
3276
3768
|
actionscript: () => Promise.resolve().then(() => (init_actionscript(), actionscript_exports)).then((module) => module.actionscript),
|
|
3769
|
+
ada: () => Promise.resolve().then(() => (init_ada(), ada_exports)).then((module) => module.ada),
|
|
3770
|
+
apex: () => Promise.resolve().then(() => (init_apex(), apex_exports)).then((module) => module.apex),
|
|
3277
3771
|
asp: () => Promise.resolve().then(() => (init_asp(), asp_exports)).then((module) => module.asp),
|
|
3278
3772
|
assembly: () => Promise.resolve().then(() => (init_assembly(), assembly_exports)).then((module) => module.assembly),
|
|
3279
3773
|
astro: () => Promise.resolve().then(() => (init_astro(), astro_exports)).then((module) => module.astro),
|
|
3774
|
+
awk: () => Promise.resolve().then(() => (init_awk(), awk_exports)).then((module) => module.awk),
|
|
3280
3775
|
bash: () => Promise.resolve().then(() => (init_bash(), bash_exports)).then((module) => module.bash),
|
|
3281
3776
|
batch: () => Promise.resolve().then(() => (init_batch(), batch_exports)).then((module) => module.batch),
|
|
3282
3777
|
c: () => Promise.resolve().then(() => (init_c(), c_exports)).then((module) => module.c),
|
|
3283
3778
|
cmake: () => Promise.resolve().then(() => (init_cmake(), cmake_exports)).then((module) => module.cmake),
|
|
3779
|
+
clojure: () => Promise.resolve().then(() => (init_clojure(), clojure_exports)).then((module) => module.clojure),
|
|
3284
3780
|
cobol: () => Promise.resolve().then(() => (init_cobol(), cobol_exports)).then((module) => module.cobol),
|
|
3285
3781
|
coffeescript: () => Promise.resolve().then(() => (init_coffeescript(), coffeescript_exports)).then((module) => module.coffeescript),
|
|
3286
3782
|
cpp: () => Promise.resolve().then(() => (init_cpp(), cpp_exports)).then((module) => module.cpp),
|
|
@@ -3288,20 +3784,24 @@ var languageLoaders = {
|
|
|
3288
3784
|
crystal: () => Promise.resolve().then(() => (init_crystal(), crystal_exports)).then((module) => module.crystal),
|
|
3289
3785
|
css: () => Promise.resolve().then(() => (init_css(), css_exports)).then((module) => module.css),
|
|
3290
3786
|
cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
|
|
3787
|
+
d: () => Promise.resolve().then(() => (init_d(), d_exports)).then((module) => module.d),
|
|
3291
3788
|
dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
|
|
3292
3789
|
dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
|
|
3293
3790
|
elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
|
|
3294
3791
|
elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
|
|
3295
3792
|
erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
|
|
3793
|
+
fennel: () => Promise.resolve().then(() => (init_fennel(), fennel_exports)).then((module) => module.fennel),
|
|
3296
3794
|
fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
|
|
3297
3795
|
fsharp: () => Promise.resolve().then(() => (init_fsharp(), fsharp_exports)).then((module) => module.fsharp),
|
|
3298
3796
|
git: () => Promise.resolve().then(() => (init_git(), git_exports)).then((module) => module.git),
|
|
3797
|
+
gleam: () => Promise.resolve().then(() => (init_gleam(), gleam_exports)).then((module) => module.gleam),
|
|
3299
3798
|
go: () => Promise.resolve().then(() => (init_go(), go_exports)).then((module) => module.go),
|
|
3300
3799
|
gradle: () => Promise.resolve().then(() => (init_gradle(), gradle_exports)).then((module) => module.gradle),
|
|
3301
3800
|
glsl: () => Promise.resolve().then(() => (init_glsl(), glsl_exports)).then((module) => module.glsl),
|
|
3302
3801
|
graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
|
|
3303
3802
|
groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
|
|
3304
3803
|
haskell: () => Promise.resolve().then(() => (init_haskell(), haskell_exports)).then((module) => module.haskell),
|
|
3804
|
+
haxe: () => Promise.resolve().then(() => (init_haxe(), haxe_exports)).then((module) => module.haxe),
|
|
3305
3805
|
hcl: () => Promise.resolve().then(() => (init_hcl(), hcl_exports)).then((module) => module.hcl),
|
|
3306
3806
|
html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
|
|
3307
3807
|
ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
|
|
@@ -3321,6 +3821,7 @@ var languageLoaders = {
|
|
|
3321
3821
|
metal: () => Promise.resolve().then(() => (init_metal(), metal_exports)).then((module) => module.metal),
|
|
3322
3822
|
svn: () => Promise.resolve().then(() => (init_svn(), svn_exports)).then((module) => module.svn),
|
|
3323
3823
|
nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
|
|
3824
|
+
nim: () => Promise.resolve().then(() => (init_nim(), nim_exports)).then((module) => module.nim),
|
|
3324
3825
|
nix: () => Promise.resolve().then(() => (init_nix(), nix_exports)).then((module) => module.nix),
|
|
3325
3826
|
ocaml: () => Promise.resolve().then(() => (init_ocaml(), ocaml_exports)).then((module) => module.ocaml),
|
|
3326
3827
|
"objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
|
|
@@ -3328,9 +3829,11 @@ var languageLoaders = {
|
|
|
3328
3829
|
perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
|
|
3329
3830
|
php: () => Promise.resolve().then(() => (init_php(), php_exports)).then((module) => module.php),
|
|
3330
3831
|
powershell: () => Promise.resolve().then(() => (init_powershell(), powershell_exports)).then((module) => module.powershell),
|
|
3832
|
+
protobuf: () => Promise.resolve().then(() => (init_protobuf(), protobuf_exports)).then((module) => module.protobuf),
|
|
3331
3833
|
pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
|
|
3332
3834
|
python: () => Promise.resolve().then(() => (init_python(), python_exports)).then((module) => module.python),
|
|
3333
3835
|
r: () => Promise.resolve().then(() => (init_r(), r_exports)).then((module) => module.r),
|
|
3836
|
+
racket: () => Promise.resolve().then(() => (init_racket(), racket_exports)).then((module) => module.racket),
|
|
3334
3837
|
razor: () => Promise.resolve().then(() => (init_razor(), razor_exports)).then((module) => module.razor),
|
|
3335
3838
|
ruby: () => Promise.resolve().then(() => (init_ruby(), ruby_exports)).then((module) => module.ruby),
|
|
3336
3839
|
rust: () => Promise.resolve().then(() => (init_rust(), rust_exports)).then((module) => module.rust),
|
|
@@ -3341,6 +3844,7 @@ var languageLoaders = {
|
|
|
3341
3844
|
svelte: () => Promise.resolve().then(() => (init_svelte(), svelte_exports)).then((module) => module.svelte),
|
|
3342
3845
|
svg: () => Promise.resolve().then(() => (init_svg(), svg_exports)).then((module) => module.svg),
|
|
3343
3846
|
swift: () => Promise.resolve().then(() => (init_swift(), swift_exports)).then((module) => module.swift),
|
|
3847
|
+
tcl: () => Promise.resolve().then(() => (init_tcl(), tcl_exports)).then((module) => module.tcl),
|
|
3344
3848
|
toml: () => Promise.resolve().then(() => (init_toml(), toml_exports)).then((module) => module.toml),
|
|
3345
3849
|
typescript: () => Promise.resolve().then(() => (init_typescript(), typescript_exports)).then((module) => module.typescript),
|
|
3346
3850
|
"visual-basic": () => Promise.resolve().then(() => (init_visual_basic(), visual_basic_exports)).then((module) => module.visualBasic),
|
|
@@ -3450,13 +3954,17 @@ var api = {
|
|
|
3450
3954
|
// src/index.ts
|
|
3451
3955
|
init_abap();
|
|
3452
3956
|
init_actionscript();
|
|
3957
|
+
init_ada();
|
|
3958
|
+
init_apex();
|
|
3453
3959
|
init_asp();
|
|
3454
3960
|
init_astro();
|
|
3455
3961
|
init_assembly();
|
|
3962
|
+
init_awk();
|
|
3456
3963
|
init_bash();
|
|
3457
3964
|
init_batch();
|
|
3458
3965
|
init_c();
|
|
3459
3966
|
init_cmake();
|
|
3967
|
+
init_clojure();
|
|
3460
3968
|
init_coffeescript();
|
|
3461
3969
|
init_cobol();
|
|
3462
3970
|
init_csharp();
|
|
@@ -3464,20 +3972,24 @@ init_cpp();
|
|
|
3464
3972
|
init_crystal();
|
|
3465
3973
|
init_css();
|
|
3466
3974
|
init_cuda();
|
|
3975
|
+
init_d();
|
|
3467
3976
|
init_dart();
|
|
3468
3977
|
init_dockerfile();
|
|
3469
3978
|
init_elixir();
|
|
3470
3979
|
init_elm();
|
|
3471
3980
|
init_erlang();
|
|
3981
|
+
init_fennel();
|
|
3472
3982
|
init_fortran();
|
|
3473
3983
|
init_fsharp();
|
|
3474
3984
|
init_git();
|
|
3985
|
+
init_gleam();
|
|
3475
3986
|
init_go();
|
|
3476
3987
|
init_gradle();
|
|
3477
3988
|
init_glsl();
|
|
3478
3989
|
init_graphql();
|
|
3479
3990
|
init_groovy();
|
|
3480
3991
|
init_haskell();
|
|
3992
|
+
init_haxe();
|
|
3481
3993
|
init_hcl();
|
|
3482
3994
|
init_html();
|
|
3483
3995
|
init_ini();
|
|
@@ -3496,6 +4008,7 @@ init_markdown();
|
|
|
3496
4008
|
init_meson();
|
|
3497
4009
|
init_metal();
|
|
3498
4010
|
init_nginx();
|
|
4011
|
+
init_nim();
|
|
3499
4012
|
init_nix();
|
|
3500
4013
|
init_ocaml();
|
|
3501
4014
|
init_objective_c();
|
|
@@ -3503,9 +4016,11 @@ init_pascal();
|
|
|
3503
4016
|
init_perl();
|
|
3504
4017
|
init_php();
|
|
3505
4018
|
init_powershell();
|
|
4019
|
+
init_protobuf();
|
|
3506
4020
|
init_pug();
|
|
3507
4021
|
init_python();
|
|
3508
4022
|
init_r();
|
|
4023
|
+
init_racket();
|
|
3509
4024
|
init_razor();
|
|
3510
4025
|
init_ruby();
|
|
3511
4026
|
init_rust();
|
|
@@ -3517,6 +4032,7 @@ init_svg();
|
|
|
3517
4032
|
init_svn();
|
|
3518
4033
|
init_svelte();
|
|
3519
4034
|
init_swift();
|
|
4035
|
+
init_tcl();
|
|
3520
4036
|
init_toml();
|
|
3521
4037
|
init_typescript();
|
|
3522
4038
|
init_visual_basic();
|