code-languages 1.13.0 → 1.15.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 +21 -0
- package/dist/api.cjs +210 -0
- package/dist/api.cjs.map +1 -1
- package/dist/api.d.cts +135 -0
- package/dist/api.d.ts +135 -0
- package/dist/api.js +210 -0
- package/dist/api.js.map +1 -1
- package/dist/detect.cjs +150 -0
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +150 -0
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +215 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +135 -0
- package/dist/index.d.ts +135 -0
- package/dist/index.js +216 -1
- package/dist/index.js.map +1 -1
- package/dist/languages/elixir.cjs +34 -0
- package/dist/languages/elixir.cjs.map +1 -0
- package/dist/languages/elixir.d.cts +29 -0
- package/dist/languages/elixir.d.ts +29 -0
- package/dist/languages/elixir.js +32 -0
- package/dist/languages/elixir.js.map +1 -0
- package/dist/languages/haskell.cjs +34 -0
- package/dist/languages/haskell.cjs.map +1 -0
- package/dist/languages/haskell.d.cts +29 -0
- package/dist/languages/haskell.d.ts +29 -0
- package/dist/languages/haskell.js +32 -0
- package/dist/languages/haskell.js.map +1 -0
- package/dist/languages/jupyter-notebook.cjs +34 -0
- package/dist/languages/jupyter-notebook.cjs.map +1 -0
- package/dist/languages/jupyter-notebook.d.cts +29 -0
- package/dist/languages/jupyter-notebook.d.ts +29 -0
- package/dist/languages/jupyter-notebook.js +32 -0
- package/dist/languages/jupyter-notebook.js.map +1 -0
- package/dist/languages/ocaml.cjs +34 -0
- package/dist/languages/ocaml.cjs.map +1 -0
- package/dist/languages/ocaml.d.cts +29 -0
- package/dist/languages/ocaml.d.ts +29 -0
- package/dist/languages/ocaml.js +32 -0
- package/dist/languages/ocaml.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/package.json +26 -1
package/dist/index.js
CHANGED
|
@@ -681,6 +681,44 @@ var init_dockerfile = __esm({
|
|
|
681
681
|
}
|
|
682
682
|
});
|
|
683
683
|
|
|
684
|
+
// src/languages/elixir.ts
|
|
685
|
+
var elixir_exports = {};
|
|
686
|
+
__export(elixir_exports, {
|
|
687
|
+
elixir: () => elixir
|
|
688
|
+
});
|
|
689
|
+
var elixir;
|
|
690
|
+
var init_elixir = __esm({
|
|
691
|
+
"src/languages/elixir.ts"() {
|
|
692
|
+
elixir = {
|
|
693
|
+
slug: "elixir",
|
|
694
|
+
publishedDate: "2012-05-25",
|
|
695
|
+
extensions: [".ex", ".exs", ".eex", ".leex", ".heex"],
|
|
696
|
+
author: "Jose Valim",
|
|
697
|
+
website: "https://elixir-lang.org",
|
|
698
|
+
paradigms: ["functional", "concurrent", "distributed", "metaprogramming"],
|
|
699
|
+
tooling: {
|
|
700
|
+
runtimes: ["BEAM", "Erlang/OTP"],
|
|
701
|
+
packageManagers: ["Mix", "Hex"],
|
|
702
|
+
ecosystems: ["Web", "Distributed Systems", "Fault-tolerant Systems", "Data Processing"]
|
|
703
|
+
},
|
|
704
|
+
version: "1.19.5",
|
|
705
|
+
logo: "https://cdn.simpleicons.org/elixir/4B275F",
|
|
706
|
+
i18n: {
|
|
707
|
+
en: {
|
|
708
|
+
name: "Elixir",
|
|
709
|
+
description: "A dynamic functional language for scalable, maintainable, and fault-tolerant systems.",
|
|
710
|
+
longDescription: "Elixir runs on the BEAM virtual machine and combines functional programming, lightweight processes, message passing, pattern matching, macros, and OTP libraries for building concurrent and distributed software.\n\nIt is widely used for web applications with Phoenix, real-time systems, background jobs, data pipelines, embedded systems, and services that need resilience, observability, and high concurrency."
|
|
711
|
+
},
|
|
712
|
+
es: {
|
|
713
|
+
name: "Elixir",
|
|
714
|
+
description: "Un lenguaje funcional dinamico para sistemas escalables, mantenibles y tolerantes a fallos.",
|
|
715
|
+
longDescription: "Elixir corre sobre la maquina virtual BEAM y combina programacion funcional, procesos ligeros, paso de mensajes, pattern matching, macros y librerias OTP para construir software concurrente y distribuido.\n\nSe usa ampliamente en aplicaciones web con Phoenix, sistemas en tiempo real, trabajos en segundo plano, pipelines de datos, sistemas embebidos y servicios que necesitan resiliencia, observabilidad y alta concurrencia."
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
};
|
|
719
|
+
}
|
|
720
|
+
});
|
|
721
|
+
|
|
684
722
|
// src/languages/elm.ts
|
|
685
723
|
var elm_exports = {};
|
|
686
724
|
__export(elm_exports, {
|
|
@@ -1060,6 +1098,44 @@ var init_groovy = __esm({
|
|
|
1060
1098
|
}
|
|
1061
1099
|
});
|
|
1062
1100
|
|
|
1101
|
+
// src/languages/haskell.ts
|
|
1102
|
+
var haskell_exports = {};
|
|
1103
|
+
__export(haskell_exports, {
|
|
1104
|
+
haskell: () => haskell
|
|
1105
|
+
});
|
|
1106
|
+
var haskell;
|
|
1107
|
+
var init_haskell = __esm({
|
|
1108
|
+
"src/languages/haskell.ts"() {
|
|
1109
|
+
haskell = {
|
|
1110
|
+
slug: "haskell",
|
|
1111
|
+
publishedDate: "1990-04-01",
|
|
1112
|
+
extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"],
|
|
1113
|
+
author: "Haskell Committee",
|
|
1114
|
+
website: "https://www.haskell.org",
|
|
1115
|
+
paradigms: ["functional", "declarative", "lazy evaluation", "statically typed"],
|
|
1116
|
+
tooling: {
|
|
1117
|
+
runtimes: ["GHC", "GHCi"],
|
|
1118
|
+
packageManagers: ["Cabal", "Stack", "GHCup"],
|
|
1119
|
+
ecosystems: ["Functional Programming", "Compilers", "Research", "Financial Systems"]
|
|
1120
|
+
},
|
|
1121
|
+
version: "GHC 9.14.1",
|
|
1122
|
+
logo: "https://cdn.simpleicons.org/haskell/5D4F85",
|
|
1123
|
+
i18n: {
|
|
1124
|
+
en: {
|
|
1125
|
+
name: "Haskell",
|
|
1126
|
+
description: "A lazy, purely functional language with strong static typing and expressive abstractions.",
|
|
1127
|
+
longDescription: "Haskell is a general-purpose functional programming language known for purity, lazy evaluation, algebraic data types, type classes, pattern matching, and a powerful static type system. The Haskell 2010 language standard is widely supported, while GHC adds many commonly used extensions.\n\nIt is used in compiler construction, programming language research, financial systems, formal methods, data processing, education, and production services that benefit from strong types and high-level abstractions."
|
|
1128
|
+
},
|
|
1129
|
+
es: {
|
|
1130
|
+
name: "Haskell",
|
|
1131
|
+
description: "Un lenguaje puramente funcional y lazy con tipado estatico fuerte y abstracciones expresivas.",
|
|
1132
|
+
longDescription: "Haskell es un lenguaje de programacion funcional de proposito general conocido por pureza, evaluacion lazy, tipos algebraicos, type classes, pattern matching y un sistema de tipos estatico potente. El estandar Haskell 2010 tiene amplio soporte, mientras GHC agrega muchas extensiones de uso comun.\n\nSe usa en construccion de compiladores, investigacion en lenguajes de programacion, sistemas financieros, metodos formales, procesamiento de datos, educacion y servicios de produccion que se benefician de tipos fuertes y abstracciones de alto nivel."
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1135
|
+
};
|
|
1136
|
+
}
|
|
1137
|
+
});
|
|
1138
|
+
|
|
1063
1139
|
// src/languages/hcl.ts
|
|
1064
1140
|
var hcl_exports = {};
|
|
1065
1141
|
__export(hcl_exports, {
|
|
@@ -1314,6 +1390,44 @@ var init_julia = __esm({
|
|
|
1314
1390
|
}
|
|
1315
1391
|
});
|
|
1316
1392
|
|
|
1393
|
+
// src/languages/jupyter-notebook.ts
|
|
1394
|
+
var jupyter_notebook_exports = {};
|
|
1395
|
+
__export(jupyter_notebook_exports, {
|
|
1396
|
+
jupyterNotebook: () => jupyterNotebook
|
|
1397
|
+
});
|
|
1398
|
+
var jupyterNotebook;
|
|
1399
|
+
var init_jupyter_notebook = __esm({
|
|
1400
|
+
"src/languages/jupyter-notebook.ts"() {
|
|
1401
|
+
jupyterNotebook = {
|
|
1402
|
+
slug: "jupyter-notebook",
|
|
1403
|
+
publishedDate: "2011-12-21",
|
|
1404
|
+
extensions: [".ipynb"],
|
|
1405
|
+
author: "Project Jupyter",
|
|
1406
|
+
website: "https://jupyter.org",
|
|
1407
|
+
paradigms: ["literate programming", "interactive computing", "data serialization", "markup"],
|
|
1408
|
+
tooling: {
|
|
1409
|
+
runtimes: ["Jupyter Notebook", "JupyterLab", "VS Code"],
|
|
1410
|
+
packageManagers: ["pip", "conda", "mamba"],
|
|
1411
|
+
ecosystems: ["Data Science", "Machine Learning", "Scientific Computing", "Education"]
|
|
1412
|
+
},
|
|
1413
|
+
version: "nbformat 4.5",
|
|
1414
|
+
logo: "https://cdn.simpleicons.org/jupyter/F37626",
|
|
1415
|
+
i18n: {
|
|
1416
|
+
en: {
|
|
1417
|
+
name: "Jupyter Notebook",
|
|
1418
|
+
description: "A JSON-based notebook format for combining live code, narrative text, outputs, and media.",
|
|
1419
|
+
longDescription: "Jupyter Notebook files store executable code cells, Markdown narrative, rich outputs, metadata, and kernel information in a JSON document with the .ipynb extension.\n\nThey are widely used for data analysis, machine learning experiments, scientific computing, education, tutorials, reports, and reproducible computational workflows."
|
|
1420
|
+
},
|
|
1421
|
+
es: {
|
|
1422
|
+
name: "Jupyter Notebook",
|
|
1423
|
+
description: "Un formato de notebook basado en JSON para combinar codigo vivo, texto, salidas y medios.",
|
|
1424
|
+
longDescription: "Los archivos Jupyter Notebook guardan celdas de codigo ejecutable, narrativa en Markdown, salidas enriquecidas, metadatos e informacion del kernel en un documento JSON con extension .ipynb.\n\nSe usan ampliamente en analisis de datos, experimentos de machine learning, computacion cientifica, educacion, tutoriales, reportes y flujos computacionales reproducibles."
|
|
1425
|
+
}
|
|
1426
|
+
}
|
|
1427
|
+
};
|
|
1428
|
+
}
|
|
1429
|
+
});
|
|
1430
|
+
|
|
1317
1431
|
// src/languages/kotlin.ts
|
|
1318
1432
|
var kotlin_exports = {};
|
|
1319
1433
|
__export(kotlin_exports, {
|
|
@@ -1762,6 +1876,44 @@ var init_objective_c = __esm({
|
|
|
1762
1876
|
}
|
|
1763
1877
|
});
|
|
1764
1878
|
|
|
1879
|
+
// src/languages/ocaml.ts
|
|
1880
|
+
var ocaml_exports = {};
|
|
1881
|
+
__export(ocaml_exports, {
|
|
1882
|
+
ocaml: () => ocaml
|
|
1883
|
+
});
|
|
1884
|
+
var ocaml;
|
|
1885
|
+
var init_ocaml = __esm({
|
|
1886
|
+
"src/languages/ocaml.ts"() {
|
|
1887
|
+
ocaml = {
|
|
1888
|
+
slug: "ocaml",
|
|
1889
|
+
publishedDate: "1996-01-01",
|
|
1890
|
+
extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"],
|
|
1891
|
+
author: "Xavier Leroy, Jerome Vouillon, Damien Doligez, Didier Remy, Ascander Suarez",
|
|
1892
|
+
website: "https://ocaml.org",
|
|
1893
|
+
paradigms: ["functional", "imperative", "object-oriented", "modular"],
|
|
1894
|
+
tooling: {
|
|
1895
|
+
runtimes: ["OCaml Runtime", "Native Code Compiler", "Bytecode Interpreter"],
|
|
1896
|
+
packageManagers: ["opam", "Dune"],
|
|
1897
|
+
ecosystems: ["Compilers", "Formal Methods", "Systems Programming", "Web"]
|
|
1898
|
+
},
|
|
1899
|
+
version: "5.6.0",
|
|
1900
|
+
logo: "https://cdn.simpleicons.org/ocaml/EC6813",
|
|
1901
|
+
i18n: {
|
|
1902
|
+
en: {
|
|
1903
|
+
name: "OCaml",
|
|
1904
|
+
description: "A statically typed ML-family language with modules, inference, and native compilation.",
|
|
1905
|
+
longDescription: "OCaml combines functional, imperative, and object-oriented programming with Hindley-Milner type inference, algebraic data types, pattern matching, functors, and a powerful module system.\n\nIt is used for compilers, theorem provers, static analysis, developer tools, financial systems, systems software, and production services where strong types, performance, and maintainability matter."
|
|
1906
|
+
},
|
|
1907
|
+
es: {
|
|
1908
|
+
name: "OCaml",
|
|
1909
|
+
description: "Un lenguaje de la familia ML con tipado estatico, modulos, inferencia y compilacion nativa.",
|
|
1910
|
+
longDescription: "OCaml combina programacion funcional, imperativa y orientada a objetos con inferencia de tipos Hindley-Milner, tipos algebraicos, pattern matching, functors y un sistema de modulos potente.\n\nSe usa en compiladores, demostradores de teoremas, analisis estatico, herramientas de desarrollo, sistemas financieros, software de sistemas y servicios de produccion donde importan los tipos fuertes, el rendimiento y la mantenibilidad."
|
|
1911
|
+
}
|
|
1912
|
+
}
|
|
1913
|
+
};
|
|
1914
|
+
}
|
|
1915
|
+
});
|
|
1916
|
+
|
|
1765
1917
|
// src/languages/pascal.ts
|
|
1766
1918
|
var pascal_exports = {};
|
|
1767
1919
|
__export(pascal_exports, {
|
|
@@ -1914,6 +2066,44 @@ var init_powershell = __esm({
|
|
|
1914
2066
|
}
|
|
1915
2067
|
});
|
|
1916
2068
|
|
|
2069
|
+
// src/languages/protobuf.ts
|
|
2070
|
+
var protobuf_exports = {};
|
|
2071
|
+
__export(protobuf_exports, {
|
|
2072
|
+
protobuf: () => protobuf
|
|
2073
|
+
});
|
|
2074
|
+
var protobuf;
|
|
2075
|
+
var init_protobuf = __esm({
|
|
2076
|
+
"src/languages/protobuf.ts"() {
|
|
2077
|
+
protobuf = {
|
|
2078
|
+
slug: "protobuf",
|
|
2079
|
+
publishedDate: "2008-07-07",
|
|
2080
|
+
extensions: [".proto"],
|
|
2081
|
+
author: "Google",
|
|
2082
|
+
website: "https://protobuf.dev",
|
|
2083
|
+
paradigms: ["interface-definition", "schema", "declarative", "data-serialization"],
|
|
2084
|
+
tooling: {
|
|
2085
|
+
runtimes: ["Protocol Buffers Runtime", "gRPC"],
|
|
2086
|
+
packageManagers: ["Buf", "npm", "Maven", "Go modules", "NuGet", "PyPI"],
|
|
2087
|
+
ecosystems: ["gRPC", "APIs", "Microservices", "Data Serialization"]
|
|
2088
|
+
},
|
|
2089
|
+
version: "34.1",
|
|
2090
|
+
logo: "https://cdn.simpleicons.org/google/4285F4",
|
|
2091
|
+
i18n: {
|
|
2092
|
+
en: {
|
|
2093
|
+
name: "Protocol Buffers",
|
|
2094
|
+
description: "Google's language-neutral schema format for structured data serialization and service APIs.",
|
|
2095
|
+
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."
|
|
2096
|
+
},
|
|
2097
|
+
es: {
|
|
2098
|
+
name: "Protocol Buffers",
|
|
2099
|
+
description: "El formato de schemas neutral de Google para serializacion de datos estructurados y APIs de servicios.",
|
|
2100
|
+
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."
|
|
2101
|
+
}
|
|
2102
|
+
}
|
|
2103
|
+
};
|
|
2104
|
+
}
|
|
2105
|
+
});
|
|
2106
|
+
|
|
1917
2107
|
// src/languages/pug.ts
|
|
1918
2108
|
var pug_exports = {};
|
|
1919
2109
|
__export(pug_exports, {
|
|
@@ -2822,6 +3012,7 @@ init_css();
|
|
|
2822
3012
|
init_cuda();
|
|
2823
3013
|
init_dart();
|
|
2824
3014
|
init_dockerfile();
|
|
3015
|
+
init_elixir();
|
|
2825
3016
|
init_elm();
|
|
2826
3017
|
init_erlang();
|
|
2827
3018
|
init_fortran();
|
|
@@ -2832,6 +3023,7 @@ init_go();
|
|
|
2832
3023
|
init_gradle();
|
|
2833
3024
|
init_graphql();
|
|
2834
3025
|
init_groovy();
|
|
3026
|
+
init_haskell();
|
|
2835
3027
|
init_hcl();
|
|
2836
3028
|
init_html();
|
|
2837
3029
|
init_ini();
|
|
@@ -2839,6 +3031,7 @@ init_java();
|
|
|
2839
3031
|
init_javascript();
|
|
2840
3032
|
init_json();
|
|
2841
3033
|
init_julia();
|
|
3034
|
+
init_jupyter_notebook();
|
|
2842
3035
|
init_kotlin();
|
|
2843
3036
|
init_less();
|
|
2844
3037
|
init_lisp();
|
|
@@ -2851,10 +3044,12 @@ init_metal();
|
|
|
2851
3044
|
init_nginx();
|
|
2852
3045
|
init_nix();
|
|
2853
3046
|
init_objective_c();
|
|
3047
|
+
init_ocaml();
|
|
2854
3048
|
init_pascal();
|
|
2855
3049
|
init_perl();
|
|
2856
3050
|
init_php();
|
|
2857
3051
|
init_powershell();
|
|
3052
|
+
init_protobuf();
|
|
2858
3053
|
init_pug();
|
|
2859
3054
|
init_python();
|
|
2860
3055
|
init_r();
|
|
@@ -2898,6 +3093,7 @@ var languages = [
|
|
|
2898
3093
|
cuda,
|
|
2899
3094
|
dart,
|
|
2900
3095
|
dockerfile,
|
|
3096
|
+
elixir,
|
|
2901
3097
|
elm,
|
|
2902
3098
|
erlang,
|
|
2903
3099
|
fortran,
|
|
@@ -2908,12 +3104,14 @@ var languages = [
|
|
|
2908
3104
|
glsl,
|
|
2909
3105
|
graphql,
|
|
2910
3106
|
groovy,
|
|
3107
|
+
haskell,
|
|
2911
3108
|
hcl,
|
|
2912
3109
|
html,
|
|
2913
3110
|
ini,
|
|
2914
3111
|
java,
|
|
2915
3112
|
javascript,
|
|
2916
3113
|
json,
|
|
3114
|
+
jupyterNotebook,
|
|
2917
3115
|
julia,
|
|
2918
3116
|
kotlin,
|
|
2919
3117
|
less,
|
|
@@ -2927,11 +3125,13 @@ var languages = [
|
|
|
2927
3125
|
svn,
|
|
2928
3126
|
nginx,
|
|
2929
3127
|
nix,
|
|
3128
|
+
ocaml,
|
|
2930
3129
|
objectiveC,
|
|
2931
3130
|
pascal,
|
|
2932
3131
|
perl,
|
|
2933
3132
|
php,
|
|
2934
3133
|
powershell,
|
|
3134
|
+
protobuf,
|
|
2935
3135
|
pug,
|
|
2936
3136
|
python,
|
|
2937
3137
|
r,
|
|
@@ -3032,6 +3232,7 @@ var languageIndex = [
|
|
|
3032
3232
|
{ slug: "cuda", extensions: [".cu", ".cuh"] },
|
|
3033
3233
|
{ slug: "dart", extensions: [".dart"] },
|
|
3034
3234
|
{ slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
|
|
3235
|
+
{ slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
|
|
3035
3236
|
{ slug: "elm", extensions: [".elm"] },
|
|
3036
3237
|
{
|
|
3037
3238
|
slug: "erlang",
|
|
@@ -3051,12 +3252,14 @@ var languageIndex = [
|
|
|
3051
3252
|
},
|
|
3052
3253
|
{ slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
|
|
3053
3254
|
{ slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
|
|
3255
|
+
{ slug: "haskell", extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"] },
|
|
3054
3256
|
{ slug: "hcl", extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"] },
|
|
3055
3257
|
{ slug: "html", extensions: [".html", ".htm"] },
|
|
3056
3258
|
{ slug: "ini", extensions: [".ini"] },
|
|
3057
3259
|
{ slug: "java", extensions: [".java"] },
|
|
3058
3260
|
{ slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
|
|
3059
3261
|
{ slug: "json", extensions: [".json"] },
|
|
3262
|
+
{ slug: "jupyter-notebook", extensions: [".ipynb"] },
|
|
3060
3263
|
{ slug: "julia", extensions: [".jl"] },
|
|
3061
3264
|
{ slug: "kotlin", extensions: [".kt", ".kts"] },
|
|
3062
3265
|
{ slug: "less", extensions: [".less"] },
|
|
@@ -3070,11 +3273,13 @@ var languageIndex = [
|
|
|
3070
3273
|
{ slug: "svn", extensions: [".svn", "svnserve.conf"] },
|
|
3071
3274
|
{ slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
|
|
3072
3275
|
{ slug: "nix", extensions: [".nix"] },
|
|
3276
|
+
{ slug: "ocaml", extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"] },
|
|
3073
3277
|
{ slug: "objective-c", extensions: [".m", ".mm"] },
|
|
3074
3278
|
{ slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
|
|
3075
3279
|
{ slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
|
|
3076
3280
|
{ slug: "php", extensions: [".php", ".phtml", ".php3", ".php4", ".php5", ".phps"] },
|
|
3077
3281
|
{ slug: "powershell", extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"] },
|
|
3282
|
+
{ slug: "protobuf", extensions: [".proto"] },
|
|
3078
3283
|
{ slug: "pug", extensions: [".pug", ".jade"] },
|
|
3079
3284
|
{ slug: "python", extensions: [".py", ".pyw"] },
|
|
3080
3285
|
{ slug: "r", extensions: [".r", ".R", ".rmd", ".Rmd", ".qmd", ".Rprofile"] },
|
|
@@ -3124,6 +3329,7 @@ var languageLoaders = {
|
|
|
3124
3329
|
cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
|
|
3125
3330
|
dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
|
|
3126
3331
|
dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
|
|
3332
|
+
elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
|
|
3127
3333
|
elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
|
|
3128
3334
|
erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
|
|
3129
3335
|
fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
|
|
@@ -3134,12 +3340,14 @@ var languageLoaders = {
|
|
|
3134
3340
|
glsl: () => Promise.resolve().then(() => (init_glsl(), glsl_exports)).then((module) => module.glsl),
|
|
3135
3341
|
graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
|
|
3136
3342
|
groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
|
|
3343
|
+
haskell: () => Promise.resolve().then(() => (init_haskell(), haskell_exports)).then((module) => module.haskell),
|
|
3137
3344
|
hcl: () => Promise.resolve().then(() => (init_hcl(), hcl_exports)).then((module) => module.hcl),
|
|
3138
3345
|
html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
|
|
3139
3346
|
ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
|
|
3140
3347
|
java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
|
|
3141
3348
|
javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
|
|
3142
3349
|
json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
|
|
3350
|
+
"jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
|
|
3143
3351
|
julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
|
|
3144
3352
|
kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
|
|
3145
3353
|
less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
|
|
@@ -3153,11 +3361,13 @@ var languageLoaders = {
|
|
|
3153
3361
|
svn: () => Promise.resolve().then(() => (init_svn(), svn_exports)).then((module) => module.svn),
|
|
3154
3362
|
nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
|
|
3155
3363
|
nix: () => Promise.resolve().then(() => (init_nix(), nix_exports)).then((module) => module.nix),
|
|
3364
|
+
ocaml: () => Promise.resolve().then(() => (init_ocaml(), ocaml_exports)).then((module) => module.ocaml),
|
|
3156
3365
|
"objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
|
|
3157
3366
|
pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
|
|
3158
3367
|
perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
|
|
3159
3368
|
php: () => Promise.resolve().then(() => (init_php(), php_exports)).then((module) => module.php),
|
|
3160
3369
|
powershell: () => Promise.resolve().then(() => (init_powershell(), powershell_exports)).then((module) => module.powershell),
|
|
3370
|
+
protobuf: () => Promise.resolve().then(() => (init_protobuf(), protobuf_exports)).then((module) => module.protobuf),
|
|
3161
3371
|
pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
|
|
3162
3372
|
python: () => Promise.resolve().then(() => (init_python(), python_exports)).then((module) => module.python),
|
|
3163
3373
|
r: () => Promise.resolve().then(() => (init_r(), r_exports)).then((module) => module.r),
|
|
@@ -3296,6 +3506,7 @@ init_css();
|
|
|
3296
3506
|
init_cuda();
|
|
3297
3507
|
init_dart();
|
|
3298
3508
|
init_dockerfile();
|
|
3509
|
+
init_elixir();
|
|
3299
3510
|
init_elm();
|
|
3300
3511
|
init_erlang();
|
|
3301
3512
|
init_fortran();
|
|
@@ -3306,12 +3517,14 @@ init_gradle();
|
|
|
3306
3517
|
init_glsl();
|
|
3307
3518
|
init_graphql();
|
|
3308
3519
|
init_groovy();
|
|
3520
|
+
init_haskell();
|
|
3309
3521
|
init_hcl();
|
|
3310
3522
|
init_html();
|
|
3311
3523
|
init_ini();
|
|
3312
3524
|
init_java();
|
|
3313
3525
|
init_javascript();
|
|
3314
3526
|
init_json();
|
|
3527
|
+
init_jupyter_notebook();
|
|
3315
3528
|
init_julia();
|
|
3316
3529
|
init_kotlin();
|
|
3317
3530
|
init_less();
|
|
@@ -3324,11 +3537,13 @@ init_meson();
|
|
|
3324
3537
|
init_metal();
|
|
3325
3538
|
init_nginx();
|
|
3326
3539
|
init_nix();
|
|
3540
|
+
init_ocaml();
|
|
3327
3541
|
init_objective_c();
|
|
3328
3542
|
init_pascal();
|
|
3329
3543
|
init_perl();
|
|
3330
3544
|
init_php();
|
|
3331
3545
|
init_powershell();
|
|
3546
|
+
init_protobuf();
|
|
3332
3547
|
init_pug();
|
|
3333
3548
|
init_python();
|
|
3334
3549
|
init_r();
|
|
@@ -3354,6 +3569,6 @@ init_yaml();
|
|
|
3354
3569
|
init_zig();
|
|
3355
3570
|
init_zsh();
|
|
3356
3571
|
|
|
3357
|
-
export { abap, actionscript, api, asp, assembly, astro, bash, batch, c, cmake, cobol, coffeescript, cpp, crystal, csharp, css, cuda, dart, detectLanguage, detectLanguages, dockerfile, elm, erlang, fortran, fsharp, git, glsl, go, gradle, graphql, groovy, hcl, html, ini, java, javascript, json, julia, kotlin, languages, less, lisp, localizeLanguage, lua, makefile, markdown, matlab, meson, metal, nginx, nix, objectiveC, pascal, perl, php, powershell, pug, python, r, razor, ruby, rust, scala, scss, solidity, sql, svelte, svg, svn, swift, toml, typescript, visualBasic, vue, webassembly, xaml, xml, yaml, zig, zsh };
|
|
3572
|
+
export { abap, actionscript, api, asp, assembly, astro, bash, batch, c, cmake, cobol, coffeescript, cpp, crystal, csharp, css, cuda, dart, detectLanguage, detectLanguages, dockerfile, elixir, elm, erlang, fortran, fsharp, git, glsl, go, gradle, graphql, groovy, haskell, hcl, html, ini, java, javascript, json, julia, jupyterNotebook, kotlin, languages, less, lisp, localizeLanguage, lua, makefile, markdown, matlab, meson, metal, nginx, nix, objectiveC, ocaml, pascal, perl, php, powershell, protobuf, pug, python, r, razor, ruby, rust, scala, scss, solidity, sql, svelte, svg, svn, swift, toml, typescript, visualBasic, vue, webassembly, xaml, xml, yaml, zig, zsh };
|
|
3358
3573
|
//# sourceMappingURL=index.js.map
|
|
3359
3574
|
//# sourceMappingURL=index.js.map
|