code-languages 1.9.2 → 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 +30 -0
- package/dist/api.cjs +248 -0
- 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 +248 -0
- package/dist/api.js.map +1 -1
- package/dist/detect.cjs +176 -0
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +176 -0
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +254 -0
- 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 +255 -1
- 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/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.js
CHANGED
|
@@ -422,6 +422,44 @@ var init_cpp = __esm({
|
|
|
422
422
|
}
|
|
423
423
|
});
|
|
424
424
|
|
|
425
|
+
// src/languages/crystal.ts
|
|
426
|
+
var crystal_exports = {};
|
|
427
|
+
__export(crystal_exports, {
|
|
428
|
+
crystal: () => crystal
|
|
429
|
+
});
|
|
430
|
+
var crystal;
|
|
431
|
+
var init_crystal = __esm({
|
|
432
|
+
"src/languages/crystal.ts"() {
|
|
433
|
+
crystal = {
|
|
434
|
+
slug: "crystal",
|
|
435
|
+
publishedDate: "2014-06-18",
|
|
436
|
+
extensions: [".cr"],
|
|
437
|
+
author: "Ary Borenszweig, Juan Wajnerman, Brian Cardiff / Crystal contributors",
|
|
438
|
+
website: "https://crystal-lang.org",
|
|
439
|
+
paradigms: ["object-oriented", "functional", "imperative", "concurrent"],
|
|
440
|
+
tooling: {
|
|
441
|
+
runtimes: ["Crystal"],
|
|
442
|
+
packageManagers: ["Shards"],
|
|
443
|
+
ecosystems: ["Web", "CLI", "Systems", "Native Applications"]
|
|
444
|
+
},
|
|
445
|
+
version: "1.20.1",
|
|
446
|
+
logo: "https://cdn.simpleicons.org/crystal/000000",
|
|
447
|
+
i18n: {
|
|
448
|
+
en: {
|
|
449
|
+
name: "Crystal",
|
|
450
|
+
description: "A compiled, statically typed language with Ruby-inspired syntax and native performance.",
|
|
451
|
+
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."
|
|
452
|
+
},
|
|
453
|
+
es: {
|
|
454
|
+
name: "Crystal",
|
|
455
|
+
description: "Un lenguaje compilado y tipado estaticamente con sintaxis inspirada en Ruby y rendimiento nativo.",
|
|
456
|
+
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."
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
};
|
|
460
|
+
}
|
|
461
|
+
});
|
|
462
|
+
|
|
425
463
|
// src/languages/csharp.ts
|
|
426
464
|
var csharp_exports = {};
|
|
427
465
|
__export(csharp_exports, {
|
|
@@ -866,6 +904,42 @@ var init_html = __esm({
|
|
|
866
904
|
}
|
|
867
905
|
});
|
|
868
906
|
|
|
907
|
+
// src/languages/ini.ts
|
|
908
|
+
var ini_exports = {};
|
|
909
|
+
__export(ini_exports, {
|
|
910
|
+
ini: () => ini
|
|
911
|
+
});
|
|
912
|
+
var ini;
|
|
913
|
+
var init_ini = __esm({
|
|
914
|
+
"src/languages/ini.ts"() {
|
|
915
|
+
ini = {
|
|
916
|
+
slug: "ini",
|
|
917
|
+
publishedDate: "1985-01-01",
|
|
918
|
+
extensions: [".ini"],
|
|
919
|
+
author: "Microsoft / community conventions",
|
|
920
|
+
website: "https://en.wikipedia.org/wiki/INI_file",
|
|
921
|
+
paradigms: ["configuration", "declarative", "key-value"],
|
|
922
|
+
tooling: {
|
|
923
|
+
ecosystems: ["Windows", "Configuration", "Desktop Applications", "Legacy Systems"]
|
|
924
|
+
},
|
|
925
|
+
version: "Informal format",
|
|
926
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Configure.svg",
|
|
927
|
+
i18n: {
|
|
928
|
+
en: {
|
|
929
|
+
name: "INI",
|
|
930
|
+
description: "A simple section-based configuration format built around keys, values, and comments.",
|
|
931
|
+
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."
|
|
932
|
+
},
|
|
933
|
+
es: {
|
|
934
|
+
name: "INI",
|
|
935
|
+
description: "Un formato simple de configuracion por secciones basado en claves, valores y comentarios.",
|
|
936
|
+
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."
|
|
937
|
+
}
|
|
938
|
+
}
|
|
939
|
+
};
|
|
940
|
+
}
|
|
941
|
+
});
|
|
942
|
+
|
|
869
943
|
// src/languages/java.ts
|
|
870
944
|
var java_exports = {};
|
|
871
945
|
__export(java_exports, {
|
|
@@ -1089,6 +1163,44 @@ var init_less = __esm({
|
|
|
1089
1163
|
}
|
|
1090
1164
|
});
|
|
1091
1165
|
|
|
1166
|
+
// src/languages/lisp.ts
|
|
1167
|
+
var lisp_exports = {};
|
|
1168
|
+
__export(lisp_exports, {
|
|
1169
|
+
lisp: () => lisp
|
|
1170
|
+
});
|
|
1171
|
+
var lisp;
|
|
1172
|
+
var init_lisp = __esm({
|
|
1173
|
+
"src/languages/lisp.ts"() {
|
|
1174
|
+
lisp = {
|
|
1175
|
+
slug: "lisp",
|
|
1176
|
+
publishedDate: "1958-01-01",
|
|
1177
|
+
extensions: [".lisp", ".lsp", ".cl", ".asd"],
|
|
1178
|
+
author: "John McCarthy / ANSI X3J13",
|
|
1179
|
+
website: "https://common-lisp.net",
|
|
1180
|
+
paradigms: ["functional", "symbolic", "object-oriented", "metaprogramming", "dynamic"],
|
|
1181
|
+
tooling: {
|
|
1182
|
+
runtimes: ["SBCL", "CCL", "ECL", "CLISP", "LispWorks", "Allegro CL"],
|
|
1183
|
+
packageManagers: ["Quicklisp", "ASDF"],
|
|
1184
|
+
ecosystems: ["Common Lisp", "AI", "Symbolic Computing", "Research", "CLI"]
|
|
1185
|
+
},
|
|
1186
|
+
version: "ANSI INCITS 226-1994",
|
|
1187
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Lisp_logo.svg",
|
|
1188
|
+
i18n: {
|
|
1189
|
+
en: {
|
|
1190
|
+
name: "Lisp",
|
|
1191
|
+
description: "A family of programmable, expression-oriented languages best known through Common Lisp.",
|
|
1192
|
+
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."
|
|
1193
|
+
},
|
|
1194
|
+
es: {
|
|
1195
|
+
name: "Lisp",
|
|
1196
|
+
description: "Una familia de lenguajes expresivos y programables, conocida especialmente por Common Lisp.",
|
|
1197
|
+
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."
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1200
|
+
};
|
|
1201
|
+
}
|
|
1202
|
+
});
|
|
1203
|
+
|
|
1092
1204
|
// src/languages/lua.ts
|
|
1093
1205
|
var lua_exports = {};
|
|
1094
1206
|
__export(lua_exports, {
|
|
@@ -1235,6 +1347,81 @@ var init_matlab = __esm({
|
|
|
1235
1347
|
}
|
|
1236
1348
|
});
|
|
1237
1349
|
|
|
1350
|
+
// src/languages/meson.ts
|
|
1351
|
+
var meson_exports = {};
|
|
1352
|
+
__export(meson_exports, {
|
|
1353
|
+
meson: () => meson
|
|
1354
|
+
});
|
|
1355
|
+
var meson;
|
|
1356
|
+
var init_meson = __esm({
|
|
1357
|
+
"src/languages/meson.ts"() {
|
|
1358
|
+
meson = {
|
|
1359
|
+
slug: "meson",
|
|
1360
|
+
publishedDate: "2013-01-01",
|
|
1361
|
+
extensions: ["meson.build", "meson_options.txt", "meson.options", ".wrap"],
|
|
1362
|
+
author: "Jussi Pakkanen / Meson contributors",
|
|
1363
|
+
website: "https://mesonbuild.com",
|
|
1364
|
+
paradigms: ["build-automation", "declarative", "configuration", "domain-specific"],
|
|
1365
|
+
tooling: {
|
|
1366
|
+
runtimes: ["Meson"],
|
|
1367
|
+
packageManagers: ["WrapDB"],
|
|
1368
|
+
ecosystems: ["C", "C++", "GNOME", "Linux", "Cross-platform Builds"]
|
|
1369
|
+
},
|
|
1370
|
+
version: "1.11.1",
|
|
1371
|
+
logo: "https://raw.githubusercontent.com/mesonbuild/meson/master/graphics/meson_logo.svg",
|
|
1372
|
+
i18n: {
|
|
1373
|
+
en: {
|
|
1374
|
+
name: "Meson",
|
|
1375
|
+
description: "A fast, user-friendly build system DSL used to describe cross-platform native builds.",
|
|
1376
|
+
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."
|
|
1377
|
+
},
|
|
1378
|
+
es: {
|
|
1379
|
+
name: "Meson",
|
|
1380
|
+
description: "Un DSL de build rapido y amigable usado para describir builds nativos multiplataforma.",
|
|
1381
|
+
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."
|
|
1382
|
+
}
|
|
1383
|
+
}
|
|
1384
|
+
};
|
|
1385
|
+
}
|
|
1386
|
+
});
|
|
1387
|
+
|
|
1388
|
+
// src/languages/metal.ts
|
|
1389
|
+
var metal_exports = {};
|
|
1390
|
+
__export(metal_exports, {
|
|
1391
|
+
metal: () => metal
|
|
1392
|
+
});
|
|
1393
|
+
var metal;
|
|
1394
|
+
var init_metal = __esm({
|
|
1395
|
+
"src/languages/metal.ts"() {
|
|
1396
|
+
metal = {
|
|
1397
|
+
slug: "metal",
|
|
1398
|
+
publishedDate: "2014-06-02",
|
|
1399
|
+
extensions: [".metal"],
|
|
1400
|
+
author: "Apple Inc.",
|
|
1401
|
+
website: "https://developer.apple.com/metal/",
|
|
1402
|
+
paradigms: ["gpu-programming", "graphics", "compute", "shading"],
|
|
1403
|
+
tooling: {
|
|
1404
|
+
runtimes: ["Metal"],
|
|
1405
|
+
ecosystems: ["Apple Platforms", "iOS", "iPadOS", "macOS", "visionOS", "tvOS"]
|
|
1406
|
+
},
|
|
1407
|
+
version: "Metal 4",
|
|
1408
|
+
logo: "https://developer.apple.com/assets/elements/icons/metal/metal-256x256_2x.png",
|
|
1409
|
+
i18n: {
|
|
1410
|
+
en: {
|
|
1411
|
+
name: "Metal",
|
|
1412
|
+
description: "Apple's graphics and compute shading language for high-performance GPU programming.",
|
|
1413
|
+
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."
|
|
1414
|
+
},
|
|
1415
|
+
es: {
|
|
1416
|
+
name: "Metal",
|
|
1417
|
+
description: "El lenguaje y API de Apple para graficos y computo de alto rendimiento en GPU.",
|
|
1418
|
+
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."
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1421
|
+
};
|
|
1422
|
+
}
|
|
1423
|
+
});
|
|
1424
|
+
|
|
1238
1425
|
// src/languages/nginx.ts
|
|
1239
1426
|
var nginx_exports = {};
|
|
1240
1427
|
__export(nginx_exports, {
|
|
@@ -2021,6 +2208,43 @@ var init_webassembly = __esm({
|
|
|
2021
2208
|
}
|
|
2022
2209
|
});
|
|
2023
2210
|
|
|
2211
|
+
// src/languages/xaml.ts
|
|
2212
|
+
var xaml_exports = {};
|
|
2213
|
+
__export(xaml_exports, {
|
|
2214
|
+
xaml: () => xaml
|
|
2215
|
+
});
|
|
2216
|
+
var xaml;
|
|
2217
|
+
var init_xaml = __esm({
|
|
2218
|
+
"src/languages/xaml.ts"() {
|
|
2219
|
+
xaml = {
|
|
2220
|
+
slug: "xaml",
|
|
2221
|
+
publishedDate: "2006-11-21",
|
|
2222
|
+
extensions: [".xaml", ".baml"],
|
|
2223
|
+
author: "Microsoft",
|
|
2224
|
+
website: "https://learn.microsoft.com/en-us/windows/uwp/xaml-platform/xaml-overview",
|
|
2225
|
+
paradigms: ["declarative", "markup", "object-graph", "ui"],
|
|
2226
|
+
tooling: {
|
|
2227
|
+
runtimes: ["WPF", "WinUI", "UWP XAML", ".NET MAUI", "Avalonia"],
|
|
2228
|
+
ecosystems: ["Windows", ".NET", "Desktop Applications", "Mobile Applications", "UI"]
|
|
2229
|
+
},
|
|
2230
|
+
version: "Platform-specific",
|
|
2231
|
+
logo: "https://cdn.simpleicons.org/dotnet/512BD4",
|
|
2232
|
+
i18n: {
|
|
2233
|
+
en: {
|
|
2234
|
+
name: "XAML",
|
|
2235
|
+
description: "A declarative XML-based language for defining object graphs and application user interfaces.",
|
|
2236
|
+
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."
|
|
2237
|
+
},
|
|
2238
|
+
es: {
|
|
2239
|
+
name: "XAML",
|
|
2240
|
+
description: "Un lenguaje declarativo basado en XML para definir grafos de objetos e interfaces de usuario.",
|
|
2241
|
+
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."
|
|
2242
|
+
}
|
|
2243
|
+
}
|
|
2244
|
+
};
|
|
2245
|
+
}
|
|
2246
|
+
});
|
|
2247
|
+
|
|
2024
2248
|
// src/languages/xml.ts
|
|
2025
2249
|
var xml_exports = {};
|
|
2026
2250
|
__export(xml_exports, {
|
|
@@ -2175,6 +2399,7 @@ init_cmake();
|
|
|
2175
2399
|
init_cobol();
|
|
2176
2400
|
init_coffeescript();
|
|
2177
2401
|
init_cpp();
|
|
2402
|
+
init_crystal();
|
|
2178
2403
|
init_csharp();
|
|
2179
2404
|
init_css();
|
|
2180
2405
|
init_cuda();
|
|
@@ -2187,16 +2412,20 @@ init_gradle();
|
|
|
2187
2412
|
init_graphql();
|
|
2188
2413
|
init_groovy();
|
|
2189
2414
|
init_html();
|
|
2415
|
+
init_ini();
|
|
2190
2416
|
init_java();
|
|
2191
2417
|
init_javascript();
|
|
2192
2418
|
init_json();
|
|
2193
2419
|
init_julia();
|
|
2194
2420
|
init_kotlin();
|
|
2195
2421
|
init_less();
|
|
2422
|
+
init_lisp();
|
|
2196
2423
|
init_lua();
|
|
2197
2424
|
init_makefile();
|
|
2198
2425
|
init_markdown();
|
|
2199
2426
|
init_matlab();
|
|
2427
|
+
init_meson();
|
|
2428
|
+
init_metal();
|
|
2200
2429
|
init_nginx();
|
|
2201
2430
|
init_objective_c();
|
|
2202
2431
|
init_pascal();
|
|
@@ -2218,6 +2447,7 @@ init_typescript();
|
|
|
2218
2447
|
init_visual_basic();
|
|
2219
2448
|
init_vue();
|
|
2220
2449
|
init_webassembly();
|
|
2450
|
+
init_xaml();
|
|
2221
2451
|
init_xml();
|
|
2222
2452
|
init_yaml();
|
|
2223
2453
|
init_zig();
|
|
@@ -2235,6 +2465,7 @@ var languages = [
|
|
|
2235
2465
|
cobol,
|
|
2236
2466
|
cpp,
|
|
2237
2467
|
csharp,
|
|
2468
|
+
crystal,
|
|
2238
2469
|
css,
|
|
2239
2470
|
cuda,
|
|
2240
2471
|
dart,
|
|
@@ -2246,16 +2477,20 @@ var languages = [
|
|
|
2246
2477
|
graphql,
|
|
2247
2478
|
groovy,
|
|
2248
2479
|
html,
|
|
2480
|
+
ini,
|
|
2249
2481
|
java,
|
|
2250
2482
|
javascript,
|
|
2251
2483
|
json,
|
|
2252
2484
|
julia,
|
|
2253
2485
|
kotlin,
|
|
2254
2486
|
less,
|
|
2487
|
+
lisp,
|
|
2255
2488
|
lua,
|
|
2256
2489
|
makefile,
|
|
2257
2490
|
matlab,
|
|
2258
2491
|
markdown,
|
|
2492
|
+
meson,
|
|
2493
|
+
metal,
|
|
2259
2494
|
nginx,
|
|
2260
2495
|
objectiveC,
|
|
2261
2496
|
pascal,
|
|
@@ -2277,6 +2512,7 @@ var languages = [
|
|
|
2277
2512
|
visualBasic,
|
|
2278
2513
|
vue,
|
|
2279
2514
|
webassembly,
|
|
2515
|
+
xaml,
|
|
2280
2516
|
xml,
|
|
2281
2517
|
yaml,
|
|
2282
2518
|
zig,
|
|
@@ -2352,6 +2588,7 @@ var languageIndex = [
|
|
|
2352
2588
|
{ slug: "cobol", extensions: [".cob", ".cbl", ".cobol", ".cpy"] },
|
|
2353
2589
|
{ slug: "cpp", extensions: [".cpp", ".cc", ".cxx", ".h", ".hpp", ".hh", ".hxx"] },
|
|
2354
2590
|
{ slug: "csharp", extensions: [".cs", ".csx"] },
|
|
2591
|
+
{ slug: "crystal", extensions: [".cr"] },
|
|
2355
2592
|
{ slug: "css", extensions: [".css"] },
|
|
2356
2593
|
{ slug: "cuda", extensions: [".cu", ".cuh"] },
|
|
2357
2594
|
{ slug: "dart", extensions: [".dart"] },
|
|
@@ -2363,16 +2600,20 @@ var languageIndex = [
|
|
|
2363
2600
|
{ slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
|
|
2364
2601
|
{ slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
|
|
2365
2602
|
{ slug: "html", extensions: [".html", ".htm"] },
|
|
2603
|
+
{ slug: "ini", extensions: [".ini"] },
|
|
2366
2604
|
{ slug: "java", extensions: [".java"] },
|
|
2367
2605
|
{ slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
|
|
2368
2606
|
{ slug: "json", extensions: [".json"] },
|
|
2369
2607
|
{ slug: "julia", extensions: [".jl"] },
|
|
2370
2608
|
{ slug: "kotlin", extensions: [".kt", ".kts"] },
|
|
2371
2609
|
{ slug: "less", extensions: [".less"] },
|
|
2610
|
+
{ slug: "lisp", extensions: [".lisp", ".lsp", ".cl", ".asd"] },
|
|
2372
2611
|
{ slug: "lua", extensions: [".lua", ".rockspec"] },
|
|
2373
2612
|
{ slug: "makefile", extensions: ["Makefile", "makefile", "GNUmakefile", ".mk", ".mak"] },
|
|
2374
2613
|
{ slug: "matlab", extensions: [".m", ".mlx"] },
|
|
2375
2614
|
{ slug: "markdown", extensions: [".md", ".markdown", ".mdown", ".mkd"] },
|
|
2615
|
+
{ slug: "meson", extensions: ["meson.build", "meson_options.txt", "meson.options", ".wrap"] },
|
|
2616
|
+
{ slug: "metal", extensions: [".metal"] },
|
|
2376
2617
|
{ slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
|
|
2377
2618
|
{ slug: "objective-c", extensions: [".m", ".mm"] },
|
|
2378
2619
|
{ slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
|
|
@@ -2397,6 +2638,7 @@ var languageIndex = [
|
|
|
2397
2638
|
{ slug: "visual-basic", extensions: [".vb"] },
|
|
2398
2639
|
{ slug: "vue", extensions: [".vue"] },
|
|
2399
2640
|
{ slug: "webassembly", extensions: [".wasm", ".wat"] },
|
|
2641
|
+
{ slug: "xaml", extensions: [".xaml", ".baml"] },
|
|
2400
2642
|
{ slug: "xml", extensions: [".xml", ".xsd", ".xsl", ".xslt"] },
|
|
2401
2643
|
{ slug: "yaml", extensions: [".yaml", ".yml"] },
|
|
2402
2644
|
{ slug: "zig", extensions: [".zig", ".zon"] },
|
|
@@ -2418,6 +2660,7 @@ var languageLoaders = {
|
|
|
2418
2660
|
coffeescript: () => Promise.resolve().then(() => (init_coffeescript(), coffeescript_exports)).then((module) => module.coffeescript),
|
|
2419
2661
|
cpp: () => Promise.resolve().then(() => (init_cpp(), cpp_exports)).then((module) => module.cpp),
|
|
2420
2662
|
csharp: () => Promise.resolve().then(() => (init_csharp(), csharp_exports)).then((module) => module.csharp),
|
|
2663
|
+
crystal: () => Promise.resolve().then(() => (init_crystal(), crystal_exports)).then((module) => module.crystal),
|
|
2421
2664
|
css: () => Promise.resolve().then(() => (init_css(), css_exports)).then((module) => module.css),
|
|
2422
2665
|
cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
|
|
2423
2666
|
dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
|
|
@@ -2429,16 +2672,20 @@ var languageLoaders = {
|
|
|
2429
2672
|
graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
|
|
2430
2673
|
groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
|
|
2431
2674
|
html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
|
|
2675
|
+
ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
|
|
2432
2676
|
java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
|
|
2433
2677
|
javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
|
|
2434
2678
|
json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
|
|
2435
2679
|
julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
|
|
2436
2680
|
kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
|
|
2437
2681
|
less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
|
|
2682
|
+
lisp: () => Promise.resolve().then(() => (init_lisp(), lisp_exports)).then((module) => module.lisp),
|
|
2438
2683
|
lua: () => Promise.resolve().then(() => (init_lua(), lua_exports)).then((module) => module.lua),
|
|
2439
2684
|
makefile: () => Promise.resolve().then(() => (init_makefile(), makefile_exports)).then((module) => module.makefile),
|
|
2440
2685
|
matlab: () => Promise.resolve().then(() => (init_matlab(), matlab_exports)).then((module) => module.matlab),
|
|
2441
2686
|
markdown: () => Promise.resolve().then(() => (init_markdown(), markdown_exports)).then((module) => module.markdown),
|
|
2687
|
+
meson: () => Promise.resolve().then(() => (init_meson(), meson_exports)).then((module) => module.meson),
|
|
2688
|
+
metal: () => Promise.resolve().then(() => (init_metal(), metal_exports)).then((module) => module.metal),
|
|
2442
2689
|
nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
|
|
2443
2690
|
"objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
|
|
2444
2691
|
pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
|
|
@@ -2460,6 +2707,7 @@ var languageLoaders = {
|
|
|
2460
2707
|
"visual-basic": () => Promise.resolve().then(() => (init_visual_basic(), visual_basic_exports)).then((module) => module.visualBasic),
|
|
2461
2708
|
vue: () => Promise.resolve().then(() => (init_vue(), vue_exports)).then((module) => module.vue),
|
|
2462
2709
|
webassembly: () => Promise.resolve().then(() => (init_webassembly(), webassembly_exports)).then((module) => module.webassembly),
|
|
2710
|
+
xaml: () => Promise.resolve().then(() => (init_xaml(), xaml_exports)).then((module) => module.xaml),
|
|
2463
2711
|
xml: () => Promise.resolve().then(() => (init_xml(), xml_exports)).then((module) => module.xml),
|
|
2464
2712
|
yaml: () => Promise.resolve().then(() => (init_yaml(), yaml_exports)).then((module) => module.yaml),
|
|
2465
2713
|
zig: () => Promise.resolve().then(() => (init_zig(), zig_exports)).then((module) => module.zig),
|
|
@@ -2573,6 +2821,7 @@ init_coffeescript();
|
|
|
2573
2821
|
init_cobol();
|
|
2574
2822
|
init_csharp();
|
|
2575
2823
|
init_cpp();
|
|
2824
|
+
init_crystal();
|
|
2576
2825
|
init_css();
|
|
2577
2826
|
init_cuda();
|
|
2578
2827
|
init_dart();
|
|
@@ -2584,16 +2833,20 @@ init_gradle();
|
|
|
2584
2833
|
init_graphql();
|
|
2585
2834
|
init_groovy();
|
|
2586
2835
|
init_html();
|
|
2836
|
+
init_ini();
|
|
2587
2837
|
init_java();
|
|
2588
2838
|
init_javascript();
|
|
2589
2839
|
init_json();
|
|
2590
2840
|
init_julia();
|
|
2591
2841
|
init_kotlin();
|
|
2592
2842
|
init_less();
|
|
2843
|
+
init_lisp();
|
|
2593
2844
|
init_lua();
|
|
2594
2845
|
init_makefile();
|
|
2595
2846
|
init_matlab();
|
|
2596
2847
|
init_markdown();
|
|
2848
|
+
init_meson();
|
|
2849
|
+
init_metal();
|
|
2597
2850
|
init_nginx();
|
|
2598
2851
|
init_objective_c();
|
|
2599
2852
|
init_pascal();
|
|
@@ -2615,11 +2868,12 @@ init_typescript();
|
|
|
2615
2868
|
init_visual_basic();
|
|
2616
2869
|
init_vue();
|
|
2617
2870
|
init_webassembly();
|
|
2871
|
+
init_xaml();
|
|
2618
2872
|
init_xml();
|
|
2619
2873
|
init_yaml();
|
|
2620
2874
|
init_zig();
|
|
2621
2875
|
init_zsh();
|
|
2622
2876
|
|
|
2623
|
-
export { abap, api, asp, assembly, astro, bash, batch, c, cmake, cobol, coffeescript, cpp, csharp, css, cuda, dart, detectLanguage, detectLanguages, dockerfile, fsharp, git, go, gradle, graphql, groovy, html, java, javascript, json, julia, kotlin, languages, less, localizeLanguage, lua, makefile, markdown, matlab, nginx, objectiveC, pascal, php, powershell, pug, python, r, ruby, rust, scala, scss, sql, svelte, svg, swift, toml, typescript, visualBasic, vue, webassembly, xml, yaml, zig, zsh };
|
|
2877
|
+
export { abap, api, asp, assembly, astro, bash, batch, c, cmake, cobol, coffeescript, cpp, crystal, csharp, css, cuda, dart, detectLanguage, detectLanguages, dockerfile, fsharp, git, go, gradle, graphql, groovy, html, ini, java, javascript, json, julia, kotlin, languages, less, lisp, localizeLanguage, lua, makefile, markdown, matlab, meson, metal, nginx, objectiveC, pascal, php, powershell, pug, python, r, ruby, rust, scala, scss, sql, svelte, svg, swift, toml, typescript, visualBasic, vue, webassembly, xaml, xml, yaml, zig, zsh };
|
|
2624
2878
|
//# sourceMappingURL=index.js.map
|
|
2625
2879
|
//# sourceMappingURL=index.js.map
|