code-languages 1.9.1 → 1.10.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 +31 -1
- package/dist/api.cjs +249 -1
- package/dist/api.cjs.map +1 -1
- package/dist/api.d.cts +158 -0
- package/dist/api.d.ts +158 -0
- package/dist/api.js +249 -1
- package/dist/api.js.map +1 -1
- package/dist/detect.cjs +177 -1
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +177 -1
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +255 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +158 -0
- package/dist/index.d.ts +158 -0
- package/dist/index.js +256 -2
- package/dist/index.js.map +1 -1
- package/dist/languages/crystal.cjs +34 -0
- package/dist/languages/crystal.cjs.map +1 -0
- package/dist/languages/crystal.d.cts +29 -0
- package/dist/languages/crystal.d.ts +29 -0
- package/dist/languages/crystal.js +32 -0
- package/dist/languages/crystal.js.map +1 -0
- package/dist/languages/gradle.cjs +1 -1
- package/dist/languages/gradle.cjs.map +1 -1
- package/dist/languages/gradle.js +1 -1
- package/dist/languages/gradle.js.map +1 -1
- package/dist/languages/ini.cjs +32 -0
- package/dist/languages/ini.cjs.map +1 -0
- package/dist/languages/ini.d.cts +27 -0
- package/dist/languages/ini.d.ts +27 -0
- package/dist/languages/ini.js +30 -0
- package/dist/languages/ini.js.map +1 -0
- package/dist/languages/lisp.cjs +34 -0
- package/dist/languages/lisp.cjs.map +1 -0
- package/dist/languages/lisp.d.cts +29 -0
- package/dist/languages/lisp.d.ts +29 -0
- package/dist/languages/lisp.js +32 -0
- package/dist/languages/lisp.js.map +1 -0
- package/dist/languages/meson.cjs +34 -0
- package/dist/languages/meson.cjs.map +1 -0
- package/dist/languages/meson.d.cts +29 -0
- package/dist/languages/meson.d.ts +29 -0
- package/dist/languages/meson.js +32 -0
- package/dist/languages/meson.js.map +1 -0
- package/dist/languages/metal.cjs +33 -0
- package/dist/languages/metal.cjs.map +1 -0
- package/dist/languages/metal.d.cts +28 -0
- package/dist/languages/metal.d.ts +28 -0
- package/dist/languages/metal.js +31 -0
- package/dist/languages/metal.js.map +1 -0
- package/dist/languages/xaml.cjs +33 -0
- package/dist/languages/xaml.cjs.map +1 -0
- package/dist/languages/xaml.d.cts +28 -0
- package/dist/languages/xaml.d.ts +28 -0
- package/dist/languages/xaml.js +31 -0
- package/dist/languages/xaml.js.map +1 -0
- package/package.json +31 -1
package/dist/index.cjs
CHANGED
|
@@ -424,6 +424,44 @@ var init_cpp = __esm({
|
|
|
424
424
|
}
|
|
425
425
|
});
|
|
426
426
|
|
|
427
|
+
// src/languages/crystal.ts
|
|
428
|
+
var crystal_exports = {};
|
|
429
|
+
__export(crystal_exports, {
|
|
430
|
+
crystal: () => exports.crystal
|
|
431
|
+
});
|
|
432
|
+
exports.crystal = void 0;
|
|
433
|
+
var init_crystal = __esm({
|
|
434
|
+
"src/languages/crystal.ts"() {
|
|
435
|
+
exports.crystal = {
|
|
436
|
+
slug: "crystal",
|
|
437
|
+
publishedDate: "2014-06-18",
|
|
438
|
+
extensions: [".cr"],
|
|
439
|
+
author: "Ary Borenszweig, Juan Wajnerman, Brian Cardiff / Crystal contributors",
|
|
440
|
+
website: "https://crystal-lang.org",
|
|
441
|
+
paradigms: ["object-oriented", "functional", "imperative", "concurrent"],
|
|
442
|
+
tooling: {
|
|
443
|
+
runtimes: ["Crystal"],
|
|
444
|
+
packageManagers: ["Shards"],
|
|
445
|
+
ecosystems: ["Web", "CLI", "Systems", "Native Applications"]
|
|
446
|
+
},
|
|
447
|
+
version: "1.20.1",
|
|
448
|
+
logo: "https://cdn.simpleicons.org/crystal/000000",
|
|
449
|
+
i18n: {
|
|
450
|
+
en: {
|
|
451
|
+
name: "Crystal",
|
|
452
|
+
description: "A compiled, statically typed language with Ruby-inspired syntax and native performance.",
|
|
453
|
+
longDescription: "Crystal is a general-purpose programming language with syntax inspired by Ruby, static type checking, type inference, macros, fibers, channels, C bindings, and native compilation. It aims to keep code expressive while catching type errors at compile time.\n\nIt is used for web services, command-line tools, automation, native applications, performance-sensitive backend systems, and projects that want Ruby-like ergonomics with a compiled toolchain."
|
|
454
|
+
},
|
|
455
|
+
es: {
|
|
456
|
+
name: "Crystal",
|
|
457
|
+
description: "Un lenguaje compilado y tipado estaticamente con sintaxis inspirada en Ruby y rendimiento nativo.",
|
|
458
|
+
longDescription: "Crystal es un lenguaje de programacion de proposito general con sintaxis inspirada en Ruby, verificacion estatica de tipos, inferencia de tipos, macros, fibers, channels, bindings con C y compilacion nativa. Busca mantener el codigo expresivo mientras detecta errores de tipos en compilacion.\n\nSe usa en servicios web, herramientas de linea de comandos, automatizacion, aplicaciones nativas, backends sensibles al rendimiento y proyectos que quieren ergonomia similar a Ruby con un toolchain compilado."
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
};
|
|
462
|
+
}
|
|
463
|
+
});
|
|
464
|
+
|
|
427
465
|
// src/languages/csharp.ts
|
|
428
466
|
var csharp_exports = {};
|
|
429
467
|
__export(csharp_exports, {
|
|
@@ -741,7 +779,7 @@ var init_gradle = __esm({
|
|
|
741
779
|
packageManagers: ["Gradle"],
|
|
742
780
|
ecosystems: ["JVM", "Android", "Java", "Kotlin", "Groovy"]
|
|
743
781
|
},
|
|
744
|
-
version: "9.5.
|
|
782
|
+
version: "9.5.1",
|
|
745
783
|
logo: "https://cdn.simpleicons.org/gradle/02303A",
|
|
746
784
|
i18n: {
|
|
747
785
|
en: {
|
|
@@ -868,6 +906,42 @@ var init_html = __esm({
|
|
|
868
906
|
}
|
|
869
907
|
});
|
|
870
908
|
|
|
909
|
+
// src/languages/ini.ts
|
|
910
|
+
var ini_exports = {};
|
|
911
|
+
__export(ini_exports, {
|
|
912
|
+
ini: () => exports.ini
|
|
913
|
+
});
|
|
914
|
+
exports.ini = void 0;
|
|
915
|
+
var init_ini = __esm({
|
|
916
|
+
"src/languages/ini.ts"() {
|
|
917
|
+
exports.ini = {
|
|
918
|
+
slug: "ini",
|
|
919
|
+
publishedDate: "1985-01-01",
|
|
920
|
+
extensions: [".ini"],
|
|
921
|
+
author: "Microsoft / community conventions",
|
|
922
|
+
website: "https://en.wikipedia.org/wiki/INI_file",
|
|
923
|
+
paradigms: ["configuration", "declarative", "key-value"],
|
|
924
|
+
tooling: {
|
|
925
|
+
ecosystems: ["Windows", "Configuration", "Desktop Applications", "Legacy Systems"]
|
|
926
|
+
},
|
|
927
|
+
version: "Informal format",
|
|
928
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Configure.svg",
|
|
929
|
+
i18n: {
|
|
930
|
+
en: {
|
|
931
|
+
name: "INI",
|
|
932
|
+
description: "A simple section-based configuration format built around keys, values, and comments.",
|
|
933
|
+
longDescription: "INI files store configuration as sections with key-value pairs, usually with comments and implementation-specific parsing rules. The format is intentionally simple and has no single formal standard, so behavior can vary across parsers.\n\nINI-style files are common in Windows applications, legacy desktop software, game configuration, developer tools, and small projects that need readable configuration without a heavier serialization format."
|
|
934
|
+
},
|
|
935
|
+
es: {
|
|
936
|
+
name: "INI",
|
|
937
|
+
description: "Un formato simple de configuracion por secciones basado en claves, valores y comentarios.",
|
|
938
|
+
longDescription: "Los archivos INI guardan configuracion como secciones con pares clave-valor, normalmente con comentarios y reglas de parseo especificas de cada implementacion. El formato es intencionalmente simple y no tiene un estandar formal unico, por lo que el comportamiento puede variar entre parsers.\n\nLos archivos estilo INI son comunes en aplicaciones Windows, software de escritorio legacy, configuracion de juegos, herramientas de desarrollo y proyectos pequenos que necesitan configuracion legible sin un formato de serializacion mas pesado."
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
};
|
|
942
|
+
}
|
|
943
|
+
});
|
|
944
|
+
|
|
871
945
|
// src/languages/java.ts
|
|
872
946
|
var java_exports = {};
|
|
873
947
|
__export(java_exports, {
|
|
@@ -1091,6 +1165,44 @@ var init_less = __esm({
|
|
|
1091
1165
|
}
|
|
1092
1166
|
});
|
|
1093
1167
|
|
|
1168
|
+
// src/languages/lisp.ts
|
|
1169
|
+
var lisp_exports = {};
|
|
1170
|
+
__export(lisp_exports, {
|
|
1171
|
+
lisp: () => exports.lisp
|
|
1172
|
+
});
|
|
1173
|
+
exports.lisp = void 0;
|
|
1174
|
+
var init_lisp = __esm({
|
|
1175
|
+
"src/languages/lisp.ts"() {
|
|
1176
|
+
exports.lisp = {
|
|
1177
|
+
slug: "lisp",
|
|
1178
|
+
publishedDate: "1958-01-01",
|
|
1179
|
+
extensions: [".lisp", ".lsp", ".cl", ".asd"],
|
|
1180
|
+
author: "John McCarthy / ANSI X3J13",
|
|
1181
|
+
website: "https://common-lisp.net",
|
|
1182
|
+
paradigms: ["functional", "symbolic", "object-oriented", "metaprogramming", "dynamic"],
|
|
1183
|
+
tooling: {
|
|
1184
|
+
runtimes: ["SBCL", "CCL", "ECL", "CLISP", "LispWorks", "Allegro CL"],
|
|
1185
|
+
packageManagers: ["Quicklisp", "ASDF"],
|
|
1186
|
+
ecosystems: ["Common Lisp", "AI", "Symbolic Computing", "Research", "CLI"]
|
|
1187
|
+
},
|
|
1188
|
+
version: "ANSI INCITS 226-1994",
|
|
1189
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Lisp_logo.svg",
|
|
1190
|
+
i18n: {
|
|
1191
|
+
en: {
|
|
1192
|
+
name: "Lisp",
|
|
1193
|
+
description: "A family of programmable, expression-oriented languages best known through Common Lisp.",
|
|
1194
|
+
longDescription: "Lisp is one of the oldest high-level programming language families, built around symbolic expressions, lists, macros, interactive development, dynamic typing, and programmable language syntax. This entry focuses on Common Lisp source files and systems.\n\nCommon Lisp is used for symbolic computation, AI research, compilers, DSLs, expert systems, automation, long-lived server applications, developer tools, and exploratory programming where macros and interactive workflows are central."
|
|
1195
|
+
},
|
|
1196
|
+
es: {
|
|
1197
|
+
name: "Lisp",
|
|
1198
|
+
description: "Una familia de lenguajes expresivos y programables, conocida especialmente por Common Lisp.",
|
|
1199
|
+
longDescription: "Lisp es una de las familias de lenguajes de alto nivel mas antiguas, basada en expresiones simbolicas, listas, macros, desarrollo interactivo, tipado dinamico y sintaxis programable. Esta entrada se enfoca en archivos fuente y sistemas de Common Lisp.\n\nCommon Lisp se usa en computacion simbolica, investigacion de IA, compiladores, DSLs, sistemas expertos, automatizacion, aplicaciones de servidor longevas, herramientas de desarrollo y programacion exploratoria donde las macros y los flujos interactivos son centrales."
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
};
|
|
1203
|
+
}
|
|
1204
|
+
});
|
|
1205
|
+
|
|
1094
1206
|
// src/languages/lua.ts
|
|
1095
1207
|
var lua_exports = {};
|
|
1096
1208
|
__export(lua_exports, {
|
|
@@ -1237,6 +1349,81 @@ var init_matlab = __esm({
|
|
|
1237
1349
|
}
|
|
1238
1350
|
});
|
|
1239
1351
|
|
|
1352
|
+
// src/languages/meson.ts
|
|
1353
|
+
var meson_exports = {};
|
|
1354
|
+
__export(meson_exports, {
|
|
1355
|
+
meson: () => exports.meson
|
|
1356
|
+
});
|
|
1357
|
+
exports.meson = void 0;
|
|
1358
|
+
var init_meson = __esm({
|
|
1359
|
+
"src/languages/meson.ts"() {
|
|
1360
|
+
exports.meson = {
|
|
1361
|
+
slug: "meson",
|
|
1362
|
+
publishedDate: "2013-01-01",
|
|
1363
|
+
extensions: ["meson.build", "meson_options.txt", "meson.options", ".wrap"],
|
|
1364
|
+
author: "Jussi Pakkanen / Meson contributors",
|
|
1365
|
+
website: "https://mesonbuild.com",
|
|
1366
|
+
paradigms: ["build-automation", "declarative", "configuration", "domain-specific"],
|
|
1367
|
+
tooling: {
|
|
1368
|
+
runtimes: ["Meson"],
|
|
1369
|
+
packageManagers: ["WrapDB"],
|
|
1370
|
+
ecosystems: ["C", "C++", "GNOME", "Linux", "Cross-platform Builds"]
|
|
1371
|
+
},
|
|
1372
|
+
version: "1.11.1",
|
|
1373
|
+
logo: "https://raw.githubusercontent.com/mesonbuild/meson/master/graphics/meson_logo.svg",
|
|
1374
|
+
i18n: {
|
|
1375
|
+
en: {
|
|
1376
|
+
name: "Meson",
|
|
1377
|
+
description: "A fast, user-friendly build system DSL used to describe cross-platform native builds.",
|
|
1378
|
+
longDescription: "Meson build files describe projects, targets, dependencies, compiler options, tests, install rules, subprojects, and cross-compilation settings using a readable non-Turing-complete DSL.\n\nIt is commonly used with Ninja for C, C++, C#, D, Fortran, Java, Rust, GNOME, Linux desktop, system software, native libraries, and projects that need fast incremental builds with clear build definitions."
|
|
1379
|
+
},
|
|
1380
|
+
es: {
|
|
1381
|
+
name: "Meson",
|
|
1382
|
+
description: "Un DSL de build rapido y amigable usado para describir builds nativos multiplataforma.",
|
|
1383
|
+
longDescription: "Los archivos Meson describen proyectos, targets, dependencias, opciones de compilador, tests, reglas de instalacion, subproyectos y configuracion de cross-compilation usando un DSL legible y no Turing-completo.\n\nSe usa comunmente con Ninja para C, C++, C#, D, Fortran, Java, Rust, GNOME, escritorio Linux, software de sistema, librerias nativas y proyectos que necesitan builds incrementales rapidos con definiciones claras."
|
|
1384
|
+
}
|
|
1385
|
+
}
|
|
1386
|
+
};
|
|
1387
|
+
}
|
|
1388
|
+
});
|
|
1389
|
+
|
|
1390
|
+
// src/languages/metal.ts
|
|
1391
|
+
var metal_exports = {};
|
|
1392
|
+
__export(metal_exports, {
|
|
1393
|
+
metal: () => exports.metal
|
|
1394
|
+
});
|
|
1395
|
+
exports.metal = void 0;
|
|
1396
|
+
var init_metal = __esm({
|
|
1397
|
+
"src/languages/metal.ts"() {
|
|
1398
|
+
exports.metal = {
|
|
1399
|
+
slug: "metal",
|
|
1400
|
+
publishedDate: "2014-06-02",
|
|
1401
|
+
extensions: [".metal"],
|
|
1402
|
+
author: "Apple Inc.",
|
|
1403
|
+
website: "https://developer.apple.com/metal/",
|
|
1404
|
+
paradigms: ["gpu-programming", "graphics", "compute", "shading"],
|
|
1405
|
+
tooling: {
|
|
1406
|
+
runtimes: ["Metal"],
|
|
1407
|
+
ecosystems: ["Apple Platforms", "iOS", "iPadOS", "macOS", "visionOS", "tvOS"]
|
|
1408
|
+
},
|
|
1409
|
+
version: "Metal 4",
|
|
1410
|
+
logo: "https://developer.apple.com/assets/elements/icons/metal/metal-256x256_2x.png",
|
|
1411
|
+
i18n: {
|
|
1412
|
+
en: {
|
|
1413
|
+
name: "Metal",
|
|
1414
|
+
description: "Apple's graphics and compute shading language for high-performance GPU programming.",
|
|
1415
|
+
longDescription: "Metal is Apple's low-level graphics and compute technology, paired with the Metal Shading Language for writing GPU kernels, vertex functions, fragment functions, mesh shaders, ray tracing workloads, and machine learning or media processing pipelines.\n\nIt is used across Apple platforms for games, rendering engines, compute-heavy apps, real-time graphics, image processing, video tools, scientific workloads, and performance-sensitive native applications that need direct access to Apple GPU capabilities."
|
|
1416
|
+
},
|
|
1417
|
+
es: {
|
|
1418
|
+
name: "Metal",
|
|
1419
|
+
description: "El lenguaje y API de Apple para graficos y computo de alto rendimiento en GPU.",
|
|
1420
|
+
longDescription: "Metal es la tecnologia de bajo nivel de Apple para graficos y computo, junto con Metal Shading Language para escribir kernels de GPU, funciones de vertices, funciones de fragmentos, mesh shaders, cargas de ray tracing y pipelines de machine learning o procesamiento multimedia.\n\nSe usa en plataformas Apple para juegos, motores de render, apps con computo intensivo, graficos en tiempo real, procesamiento de imagen, herramientas de video, cargas cientificas y aplicaciones nativas sensibles al rendimiento que necesitan acceso directo a capacidades de GPU de Apple."
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
};
|
|
1424
|
+
}
|
|
1425
|
+
});
|
|
1426
|
+
|
|
1240
1427
|
// src/languages/nginx.ts
|
|
1241
1428
|
var nginx_exports = {};
|
|
1242
1429
|
__export(nginx_exports, {
|
|
@@ -2023,6 +2210,43 @@ var init_webassembly = __esm({
|
|
|
2023
2210
|
}
|
|
2024
2211
|
});
|
|
2025
2212
|
|
|
2213
|
+
// src/languages/xaml.ts
|
|
2214
|
+
var xaml_exports = {};
|
|
2215
|
+
__export(xaml_exports, {
|
|
2216
|
+
xaml: () => exports.xaml
|
|
2217
|
+
});
|
|
2218
|
+
exports.xaml = void 0;
|
|
2219
|
+
var init_xaml = __esm({
|
|
2220
|
+
"src/languages/xaml.ts"() {
|
|
2221
|
+
exports.xaml = {
|
|
2222
|
+
slug: "xaml",
|
|
2223
|
+
publishedDate: "2006-11-21",
|
|
2224
|
+
extensions: [".xaml", ".baml"],
|
|
2225
|
+
author: "Microsoft",
|
|
2226
|
+
website: "https://learn.microsoft.com/en-us/windows/uwp/xaml-platform/xaml-overview",
|
|
2227
|
+
paradigms: ["declarative", "markup", "object-graph", "ui"],
|
|
2228
|
+
tooling: {
|
|
2229
|
+
runtimes: ["WPF", "WinUI", "UWP XAML", ".NET MAUI", "Avalonia"],
|
|
2230
|
+
ecosystems: ["Windows", ".NET", "Desktop Applications", "Mobile Applications", "UI"]
|
|
2231
|
+
},
|
|
2232
|
+
version: "Platform-specific",
|
|
2233
|
+
logo: "https://cdn.simpleicons.org/dotnet/512BD4",
|
|
2234
|
+
i18n: {
|
|
2235
|
+
en: {
|
|
2236
|
+
name: "XAML",
|
|
2237
|
+
description: "A declarative XML-based language for defining object graphs and application user interfaces.",
|
|
2238
|
+
longDescription: "XAML, Extensible Application Markup Language, is a declarative XML-based language used to instantiate objects, set properties, declare resources, bind data, and compose user interfaces.\n\nIt is used across Microsoft and .NET UI stacks such as WPF, UWP, WinUI, and .NET MAUI, as well as XAML-inspired frameworks like Avalonia. XAML files commonly define pages, windows, controls, styles, templates, animations, resources, and visual states."
|
|
2239
|
+
},
|
|
2240
|
+
es: {
|
|
2241
|
+
name: "XAML",
|
|
2242
|
+
description: "Un lenguaje declarativo basado en XML para definir grafos de objetos e interfaces de usuario.",
|
|
2243
|
+
longDescription: "XAML, Extensible Application Markup Language, es un lenguaje declarativo basado en XML usado para instanciar objetos, definir propiedades, declarar recursos, enlazar datos y componer interfaces de usuario.\n\nSe usa en stacks de UI de Microsoft y .NET como WPF, UWP, WinUI y .NET MAUI, ademas de frameworks inspirados en XAML como Avalonia. Los archivos XAML suelen definir paginas, ventanas, controles, estilos, templates, animaciones, recursos y estados visuales."
|
|
2244
|
+
}
|
|
2245
|
+
}
|
|
2246
|
+
};
|
|
2247
|
+
}
|
|
2248
|
+
});
|
|
2249
|
+
|
|
2026
2250
|
// src/languages/xml.ts
|
|
2027
2251
|
var xml_exports = {};
|
|
2028
2252
|
__export(xml_exports, {
|
|
@@ -2177,6 +2401,7 @@ init_cmake();
|
|
|
2177
2401
|
init_cobol();
|
|
2178
2402
|
init_coffeescript();
|
|
2179
2403
|
init_cpp();
|
|
2404
|
+
init_crystal();
|
|
2180
2405
|
init_csharp();
|
|
2181
2406
|
init_css();
|
|
2182
2407
|
init_cuda();
|
|
@@ -2189,16 +2414,20 @@ init_gradle();
|
|
|
2189
2414
|
init_graphql();
|
|
2190
2415
|
init_groovy();
|
|
2191
2416
|
init_html();
|
|
2417
|
+
init_ini();
|
|
2192
2418
|
init_java();
|
|
2193
2419
|
init_javascript();
|
|
2194
2420
|
init_json();
|
|
2195
2421
|
init_julia();
|
|
2196
2422
|
init_kotlin();
|
|
2197
2423
|
init_less();
|
|
2424
|
+
init_lisp();
|
|
2198
2425
|
init_lua();
|
|
2199
2426
|
init_makefile();
|
|
2200
2427
|
init_markdown();
|
|
2201
2428
|
init_matlab();
|
|
2429
|
+
init_meson();
|
|
2430
|
+
init_metal();
|
|
2202
2431
|
init_nginx();
|
|
2203
2432
|
init_objective_c();
|
|
2204
2433
|
init_pascal();
|
|
@@ -2220,6 +2449,7 @@ init_typescript();
|
|
|
2220
2449
|
init_visual_basic();
|
|
2221
2450
|
init_vue();
|
|
2222
2451
|
init_webassembly();
|
|
2452
|
+
init_xaml();
|
|
2223
2453
|
init_xml();
|
|
2224
2454
|
init_yaml();
|
|
2225
2455
|
init_zig();
|
|
@@ -2237,6 +2467,7 @@ var languages = [
|
|
|
2237
2467
|
exports.cobol,
|
|
2238
2468
|
exports.cpp,
|
|
2239
2469
|
exports.csharp,
|
|
2470
|
+
exports.crystal,
|
|
2240
2471
|
exports.css,
|
|
2241
2472
|
exports.cuda,
|
|
2242
2473
|
exports.dart,
|
|
@@ -2248,16 +2479,20 @@ var languages = [
|
|
|
2248
2479
|
exports.graphql,
|
|
2249
2480
|
exports.groovy,
|
|
2250
2481
|
exports.html,
|
|
2482
|
+
exports.ini,
|
|
2251
2483
|
exports.java,
|
|
2252
2484
|
exports.javascript,
|
|
2253
2485
|
exports.json,
|
|
2254
2486
|
exports.julia,
|
|
2255
2487
|
exports.kotlin,
|
|
2256
2488
|
exports.less,
|
|
2489
|
+
exports.lisp,
|
|
2257
2490
|
exports.lua,
|
|
2258
2491
|
exports.makefile,
|
|
2259
2492
|
exports.matlab,
|
|
2260
2493
|
exports.markdown,
|
|
2494
|
+
exports.meson,
|
|
2495
|
+
exports.metal,
|
|
2261
2496
|
exports.nginx,
|
|
2262
2497
|
exports.objectiveC,
|
|
2263
2498
|
exports.pascal,
|
|
@@ -2279,6 +2514,7 @@ var languages = [
|
|
|
2279
2514
|
exports.visualBasic,
|
|
2280
2515
|
exports.vue,
|
|
2281
2516
|
exports.webassembly,
|
|
2517
|
+
exports.xaml,
|
|
2282
2518
|
exports.xml,
|
|
2283
2519
|
exports.yaml,
|
|
2284
2520
|
exports.zig,
|
|
@@ -2354,6 +2590,7 @@ var languageIndex = [
|
|
|
2354
2590
|
{ slug: "cobol", extensions: [".cob", ".cbl", ".cobol", ".cpy"] },
|
|
2355
2591
|
{ slug: "cpp", extensions: [".cpp", ".cc", ".cxx", ".h", ".hpp", ".hh", ".hxx"] },
|
|
2356
2592
|
{ slug: "csharp", extensions: [".cs", ".csx"] },
|
|
2593
|
+
{ slug: "crystal", extensions: [".cr"] },
|
|
2357
2594
|
{ slug: "css", extensions: [".css"] },
|
|
2358
2595
|
{ slug: "cuda", extensions: [".cu", ".cuh"] },
|
|
2359
2596
|
{ slug: "dart", extensions: [".dart"] },
|
|
@@ -2365,16 +2602,20 @@ var languageIndex = [
|
|
|
2365
2602
|
{ slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
|
|
2366
2603
|
{ slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
|
|
2367
2604
|
{ slug: "html", extensions: [".html", ".htm"] },
|
|
2605
|
+
{ slug: "ini", extensions: [".ini"] },
|
|
2368
2606
|
{ slug: "java", extensions: [".java"] },
|
|
2369
2607
|
{ slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
|
|
2370
2608
|
{ slug: "json", extensions: [".json"] },
|
|
2371
2609
|
{ slug: "julia", extensions: [".jl"] },
|
|
2372
2610
|
{ slug: "kotlin", extensions: [".kt", ".kts"] },
|
|
2373
2611
|
{ slug: "less", extensions: [".less"] },
|
|
2612
|
+
{ slug: "lisp", extensions: [".lisp", ".lsp", ".cl", ".asd"] },
|
|
2374
2613
|
{ slug: "lua", extensions: [".lua", ".rockspec"] },
|
|
2375
2614
|
{ slug: "makefile", extensions: ["Makefile", "makefile", "GNUmakefile", ".mk", ".mak"] },
|
|
2376
2615
|
{ slug: "matlab", extensions: [".m", ".mlx"] },
|
|
2377
2616
|
{ slug: "markdown", extensions: [".md", ".markdown", ".mdown", ".mkd"] },
|
|
2617
|
+
{ slug: "meson", extensions: ["meson.build", "meson_options.txt", "meson.options", ".wrap"] },
|
|
2618
|
+
{ slug: "metal", extensions: [".metal"] },
|
|
2378
2619
|
{ slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
|
|
2379
2620
|
{ slug: "objective-c", extensions: [".m", ".mm"] },
|
|
2380
2621
|
{ slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
|
|
@@ -2399,6 +2640,7 @@ var languageIndex = [
|
|
|
2399
2640
|
{ slug: "visual-basic", extensions: [".vb"] },
|
|
2400
2641
|
{ slug: "vue", extensions: [".vue"] },
|
|
2401
2642
|
{ slug: "webassembly", extensions: [".wasm", ".wat"] },
|
|
2643
|
+
{ slug: "xaml", extensions: [".xaml", ".baml"] },
|
|
2402
2644
|
{ slug: "xml", extensions: [".xml", ".xsd", ".xsl", ".xslt"] },
|
|
2403
2645
|
{ slug: "yaml", extensions: [".yaml", ".yml"] },
|
|
2404
2646
|
{ slug: "zig", extensions: [".zig", ".zon"] },
|
|
@@ -2420,6 +2662,7 @@ var languageLoaders = {
|
|
|
2420
2662
|
coffeescript: () => Promise.resolve().then(() => (init_coffeescript(), coffeescript_exports)).then((module) => module.coffeescript),
|
|
2421
2663
|
cpp: () => Promise.resolve().then(() => (init_cpp(), cpp_exports)).then((module) => module.cpp),
|
|
2422
2664
|
csharp: () => Promise.resolve().then(() => (init_csharp(), csharp_exports)).then((module) => module.csharp),
|
|
2665
|
+
crystal: () => Promise.resolve().then(() => (init_crystal(), crystal_exports)).then((module) => module.crystal),
|
|
2423
2666
|
css: () => Promise.resolve().then(() => (init_css(), css_exports)).then((module) => module.css),
|
|
2424
2667
|
cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
|
|
2425
2668
|
dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
|
|
@@ -2431,16 +2674,20 @@ var languageLoaders = {
|
|
|
2431
2674
|
graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
|
|
2432
2675
|
groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
|
|
2433
2676
|
html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
|
|
2677
|
+
ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
|
|
2434
2678
|
java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
|
|
2435
2679
|
javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
|
|
2436
2680
|
json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
|
|
2437
2681
|
julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
|
|
2438
2682
|
kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
|
|
2439
2683
|
less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
|
|
2684
|
+
lisp: () => Promise.resolve().then(() => (init_lisp(), lisp_exports)).then((module) => module.lisp),
|
|
2440
2685
|
lua: () => Promise.resolve().then(() => (init_lua(), lua_exports)).then((module) => module.lua),
|
|
2441
2686
|
makefile: () => Promise.resolve().then(() => (init_makefile(), makefile_exports)).then((module) => module.makefile),
|
|
2442
2687
|
matlab: () => Promise.resolve().then(() => (init_matlab(), matlab_exports)).then((module) => module.matlab),
|
|
2443
2688
|
markdown: () => Promise.resolve().then(() => (init_markdown(), markdown_exports)).then((module) => module.markdown),
|
|
2689
|
+
meson: () => Promise.resolve().then(() => (init_meson(), meson_exports)).then((module) => module.meson),
|
|
2690
|
+
metal: () => Promise.resolve().then(() => (init_metal(), metal_exports)).then((module) => module.metal),
|
|
2444
2691
|
nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
|
|
2445
2692
|
"objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
|
|
2446
2693
|
pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
|
|
@@ -2462,6 +2709,7 @@ var languageLoaders = {
|
|
|
2462
2709
|
"visual-basic": () => Promise.resolve().then(() => (init_visual_basic(), visual_basic_exports)).then((module) => module.visualBasic),
|
|
2463
2710
|
vue: () => Promise.resolve().then(() => (init_vue(), vue_exports)).then((module) => module.vue),
|
|
2464
2711
|
webassembly: () => Promise.resolve().then(() => (init_webassembly(), webassembly_exports)).then((module) => module.webassembly),
|
|
2712
|
+
xaml: () => Promise.resolve().then(() => (init_xaml(), xaml_exports)).then((module) => module.xaml),
|
|
2465
2713
|
xml: () => Promise.resolve().then(() => (init_xml(), xml_exports)).then((module) => module.xml),
|
|
2466
2714
|
yaml: () => Promise.resolve().then(() => (init_yaml(), yaml_exports)).then((module) => module.yaml),
|
|
2467
2715
|
zig: () => Promise.resolve().then(() => (init_zig(), zig_exports)).then((module) => module.zig),
|
|
@@ -2575,6 +2823,7 @@ init_coffeescript();
|
|
|
2575
2823
|
init_cobol();
|
|
2576
2824
|
init_csharp();
|
|
2577
2825
|
init_cpp();
|
|
2826
|
+
init_crystal();
|
|
2578
2827
|
init_css();
|
|
2579
2828
|
init_cuda();
|
|
2580
2829
|
init_dart();
|
|
@@ -2586,16 +2835,20 @@ init_gradle();
|
|
|
2586
2835
|
init_graphql();
|
|
2587
2836
|
init_groovy();
|
|
2588
2837
|
init_html();
|
|
2838
|
+
init_ini();
|
|
2589
2839
|
init_java();
|
|
2590
2840
|
init_javascript();
|
|
2591
2841
|
init_json();
|
|
2592
2842
|
init_julia();
|
|
2593
2843
|
init_kotlin();
|
|
2594
2844
|
init_less();
|
|
2845
|
+
init_lisp();
|
|
2595
2846
|
init_lua();
|
|
2596
2847
|
init_makefile();
|
|
2597
2848
|
init_matlab();
|
|
2598
2849
|
init_markdown();
|
|
2850
|
+
init_meson();
|
|
2851
|
+
init_metal();
|
|
2599
2852
|
init_nginx();
|
|
2600
2853
|
init_objective_c();
|
|
2601
2854
|
init_pascal();
|
|
@@ -2617,6 +2870,7 @@ init_typescript();
|
|
|
2617
2870
|
init_visual_basic();
|
|
2618
2871
|
init_vue();
|
|
2619
2872
|
init_webassembly();
|
|
2873
|
+
init_xaml();
|
|
2620
2874
|
init_xml();
|
|
2621
2875
|
init_yaml();
|
|
2622
2876
|
init_zig();
|