code-languages 1.13.0 → 1.14.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 +16 -0
- package/dist/api.cjs +168 -0
- package/dist/api.cjs.map +1 -1
- package/dist/api.d.cts +108 -0
- package/dist/api.d.ts +108 -0
- package/dist/api.js +168 -0
- package/dist/api.js.map +1 -1
- package/dist/detect.cjs +120 -0
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +120 -0
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +172 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +108 -0
- package/dist/index.d.ts +108 -0
- package/dist/index.js +173 -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/package.json +21 -1
package/dist/index.d.cts
CHANGED
|
@@ -20,6 +20,7 @@ export { css } from './languages/css.cjs';
|
|
|
20
20
|
export { cuda } from './languages/cuda.cjs';
|
|
21
21
|
export { dart } from './languages/dart.cjs';
|
|
22
22
|
export { dockerfile } from './languages/dockerfile.cjs';
|
|
23
|
+
export { elixir } from './languages/elixir.cjs';
|
|
23
24
|
export { elm } from './languages/elm.cjs';
|
|
24
25
|
export { erlang } from './languages/erlang.cjs';
|
|
25
26
|
export { fortran } from './languages/fortran.cjs';
|
|
@@ -30,12 +31,14 @@ export { gradle } from './languages/gradle.cjs';
|
|
|
30
31
|
export { glsl } from './languages/glsl.cjs';
|
|
31
32
|
export { graphql } from './languages/graphql.cjs';
|
|
32
33
|
export { groovy } from './languages/groovy.cjs';
|
|
34
|
+
export { haskell } from './languages/haskell.cjs';
|
|
33
35
|
export { hcl } from './languages/hcl.cjs';
|
|
34
36
|
export { html } from './languages/html.cjs';
|
|
35
37
|
export { ini } from './languages/ini.cjs';
|
|
36
38
|
export { java } from './languages/java.cjs';
|
|
37
39
|
export { javascript } from './languages/javascript.cjs';
|
|
38
40
|
export { json } from './languages/json.cjs';
|
|
41
|
+
export { jupyterNotebook } from './languages/jupyter-notebook.cjs';
|
|
39
42
|
export { julia } from './languages/julia.cjs';
|
|
40
43
|
export { kotlin } from './languages/kotlin.cjs';
|
|
41
44
|
export { less } from './languages/less.cjs';
|
|
@@ -48,6 +51,7 @@ export { meson } from './languages/meson.cjs';
|
|
|
48
51
|
export { metal } from './languages/metal.cjs';
|
|
49
52
|
export { nginx } from './languages/nginx.cjs';
|
|
50
53
|
export { nix } from './languages/nix.cjs';
|
|
54
|
+
export { ocaml } from './languages/ocaml.cjs';
|
|
51
55
|
export { objectiveC } from './languages/objective-c.cjs';
|
|
52
56
|
export { pascal } from './languages/pascal.cjs';
|
|
53
57
|
export { perl } from './languages/perl.cjs';
|
|
@@ -649,6 +653,58 @@ declare const languages: readonly [{
|
|
|
649
653
|
paradigms: string[];
|
|
650
654
|
tooling: {
|
|
651
655
|
runtimes: string[];
|
|
656
|
+
packageManagers: string[];
|
|
657
|
+
ecosystems: string[];
|
|
658
|
+
};
|
|
659
|
+
version: string;
|
|
660
|
+
logo: string;
|
|
661
|
+
i18n: {
|
|
662
|
+
en: {
|
|
663
|
+
name: string;
|
|
664
|
+
description: string;
|
|
665
|
+
longDescription: string;
|
|
666
|
+
};
|
|
667
|
+
es: {
|
|
668
|
+
name: string;
|
|
669
|
+
description: string;
|
|
670
|
+
longDescription: string;
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
}, {
|
|
674
|
+
slug: string;
|
|
675
|
+
publishedDate: string;
|
|
676
|
+
extensions: string[];
|
|
677
|
+
author: string;
|
|
678
|
+
website: string;
|
|
679
|
+
paradigms: string[];
|
|
680
|
+
tooling: {
|
|
681
|
+
runtimes: string[];
|
|
682
|
+
ecosystems: string[];
|
|
683
|
+
};
|
|
684
|
+
version: string;
|
|
685
|
+
logo: string;
|
|
686
|
+
i18n: {
|
|
687
|
+
en: {
|
|
688
|
+
name: string;
|
|
689
|
+
description: string;
|
|
690
|
+
longDescription: string;
|
|
691
|
+
};
|
|
692
|
+
es: {
|
|
693
|
+
name: string;
|
|
694
|
+
description: string;
|
|
695
|
+
longDescription: string;
|
|
696
|
+
};
|
|
697
|
+
};
|
|
698
|
+
}, {
|
|
699
|
+
slug: string;
|
|
700
|
+
publishedDate: string;
|
|
701
|
+
extensions: string[];
|
|
702
|
+
author: string;
|
|
703
|
+
website: string;
|
|
704
|
+
paradigms: string[];
|
|
705
|
+
tooling: {
|
|
706
|
+
runtimes: string[];
|
|
707
|
+
packageManagers: string[];
|
|
652
708
|
ecosystems: string[];
|
|
653
709
|
};
|
|
654
710
|
version: string;
|
|
@@ -1069,6 +1125,32 @@ declare const languages: readonly [{
|
|
|
1069
1125
|
longDescription: string;
|
|
1070
1126
|
};
|
|
1071
1127
|
};
|
|
1128
|
+
}, {
|
|
1129
|
+
slug: string;
|
|
1130
|
+
publishedDate: string;
|
|
1131
|
+
extensions: string[];
|
|
1132
|
+
author: string;
|
|
1133
|
+
website: string;
|
|
1134
|
+
paradigms: string[];
|
|
1135
|
+
tooling: {
|
|
1136
|
+
runtimes: string[];
|
|
1137
|
+
packageManagers: string[];
|
|
1138
|
+
ecosystems: string[];
|
|
1139
|
+
};
|
|
1140
|
+
version: string;
|
|
1141
|
+
logo: string;
|
|
1142
|
+
i18n: {
|
|
1143
|
+
en: {
|
|
1144
|
+
name: string;
|
|
1145
|
+
description: string;
|
|
1146
|
+
longDescription: string;
|
|
1147
|
+
};
|
|
1148
|
+
es: {
|
|
1149
|
+
name: string;
|
|
1150
|
+
description: string;
|
|
1151
|
+
longDescription: string;
|
|
1152
|
+
};
|
|
1153
|
+
};
|
|
1072
1154
|
}, {
|
|
1073
1155
|
slug: string;
|
|
1074
1156
|
publishedDate: string;
|
|
@@ -1632,6 +1714,32 @@ declare const languages: readonly [{
|
|
|
1632
1714
|
longDescription: string;
|
|
1633
1715
|
};
|
|
1634
1716
|
};
|
|
1717
|
+
}, {
|
|
1718
|
+
slug: string;
|
|
1719
|
+
publishedDate: string;
|
|
1720
|
+
extensions: string[];
|
|
1721
|
+
author: string;
|
|
1722
|
+
website: string;
|
|
1723
|
+
paradigms: string[];
|
|
1724
|
+
tooling: {
|
|
1725
|
+
runtimes: string[];
|
|
1726
|
+
packageManagers: string[];
|
|
1727
|
+
ecosystems: string[];
|
|
1728
|
+
};
|
|
1729
|
+
version: string;
|
|
1730
|
+
logo: string;
|
|
1731
|
+
i18n: {
|
|
1732
|
+
en: {
|
|
1733
|
+
name: string;
|
|
1734
|
+
description: string;
|
|
1735
|
+
longDescription: string;
|
|
1736
|
+
};
|
|
1737
|
+
es: {
|
|
1738
|
+
name: string;
|
|
1739
|
+
description: string;
|
|
1740
|
+
longDescription: string;
|
|
1741
|
+
};
|
|
1742
|
+
};
|
|
1635
1743
|
}, {
|
|
1636
1744
|
slug: string;
|
|
1637
1745
|
publishedDate: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export { css } from './languages/css.js';
|
|
|
20
20
|
export { cuda } from './languages/cuda.js';
|
|
21
21
|
export { dart } from './languages/dart.js';
|
|
22
22
|
export { dockerfile } from './languages/dockerfile.js';
|
|
23
|
+
export { elixir } from './languages/elixir.js';
|
|
23
24
|
export { elm } from './languages/elm.js';
|
|
24
25
|
export { erlang } from './languages/erlang.js';
|
|
25
26
|
export { fortran } from './languages/fortran.js';
|
|
@@ -30,12 +31,14 @@ export { gradle } from './languages/gradle.js';
|
|
|
30
31
|
export { glsl } from './languages/glsl.js';
|
|
31
32
|
export { graphql } from './languages/graphql.js';
|
|
32
33
|
export { groovy } from './languages/groovy.js';
|
|
34
|
+
export { haskell } from './languages/haskell.js';
|
|
33
35
|
export { hcl } from './languages/hcl.js';
|
|
34
36
|
export { html } from './languages/html.js';
|
|
35
37
|
export { ini } from './languages/ini.js';
|
|
36
38
|
export { java } from './languages/java.js';
|
|
37
39
|
export { javascript } from './languages/javascript.js';
|
|
38
40
|
export { json } from './languages/json.js';
|
|
41
|
+
export { jupyterNotebook } from './languages/jupyter-notebook.js';
|
|
39
42
|
export { julia } from './languages/julia.js';
|
|
40
43
|
export { kotlin } from './languages/kotlin.js';
|
|
41
44
|
export { less } from './languages/less.js';
|
|
@@ -48,6 +51,7 @@ export { meson } from './languages/meson.js';
|
|
|
48
51
|
export { metal } from './languages/metal.js';
|
|
49
52
|
export { nginx } from './languages/nginx.js';
|
|
50
53
|
export { nix } from './languages/nix.js';
|
|
54
|
+
export { ocaml } from './languages/ocaml.js';
|
|
51
55
|
export { objectiveC } from './languages/objective-c.js';
|
|
52
56
|
export { pascal } from './languages/pascal.js';
|
|
53
57
|
export { perl } from './languages/perl.js';
|
|
@@ -649,6 +653,58 @@ declare const languages: readonly [{
|
|
|
649
653
|
paradigms: string[];
|
|
650
654
|
tooling: {
|
|
651
655
|
runtimes: string[];
|
|
656
|
+
packageManagers: string[];
|
|
657
|
+
ecosystems: string[];
|
|
658
|
+
};
|
|
659
|
+
version: string;
|
|
660
|
+
logo: string;
|
|
661
|
+
i18n: {
|
|
662
|
+
en: {
|
|
663
|
+
name: string;
|
|
664
|
+
description: string;
|
|
665
|
+
longDescription: string;
|
|
666
|
+
};
|
|
667
|
+
es: {
|
|
668
|
+
name: string;
|
|
669
|
+
description: string;
|
|
670
|
+
longDescription: string;
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
}, {
|
|
674
|
+
slug: string;
|
|
675
|
+
publishedDate: string;
|
|
676
|
+
extensions: string[];
|
|
677
|
+
author: string;
|
|
678
|
+
website: string;
|
|
679
|
+
paradigms: string[];
|
|
680
|
+
tooling: {
|
|
681
|
+
runtimes: string[];
|
|
682
|
+
ecosystems: string[];
|
|
683
|
+
};
|
|
684
|
+
version: string;
|
|
685
|
+
logo: string;
|
|
686
|
+
i18n: {
|
|
687
|
+
en: {
|
|
688
|
+
name: string;
|
|
689
|
+
description: string;
|
|
690
|
+
longDescription: string;
|
|
691
|
+
};
|
|
692
|
+
es: {
|
|
693
|
+
name: string;
|
|
694
|
+
description: string;
|
|
695
|
+
longDescription: string;
|
|
696
|
+
};
|
|
697
|
+
};
|
|
698
|
+
}, {
|
|
699
|
+
slug: string;
|
|
700
|
+
publishedDate: string;
|
|
701
|
+
extensions: string[];
|
|
702
|
+
author: string;
|
|
703
|
+
website: string;
|
|
704
|
+
paradigms: string[];
|
|
705
|
+
tooling: {
|
|
706
|
+
runtimes: string[];
|
|
707
|
+
packageManagers: string[];
|
|
652
708
|
ecosystems: string[];
|
|
653
709
|
};
|
|
654
710
|
version: string;
|
|
@@ -1069,6 +1125,32 @@ declare const languages: readonly [{
|
|
|
1069
1125
|
longDescription: string;
|
|
1070
1126
|
};
|
|
1071
1127
|
};
|
|
1128
|
+
}, {
|
|
1129
|
+
slug: string;
|
|
1130
|
+
publishedDate: string;
|
|
1131
|
+
extensions: string[];
|
|
1132
|
+
author: string;
|
|
1133
|
+
website: string;
|
|
1134
|
+
paradigms: string[];
|
|
1135
|
+
tooling: {
|
|
1136
|
+
runtimes: string[];
|
|
1137
|
+
packageManagers: string[];
|
|
1138
|
+
ecosystems: string[];
|
|
1139
|
+
};
|
|
1140
|
+
version: string;
|
|
1141
|
+
logo: string;
|
|
1142
|
+
i18n: {
|
|
1143
|
+
en: {
|
|
1144
|
+
name: string;
|
|
1145
|
+
description: string;
|
|
1146
|
+
longDescription: string;
|
|
1147
|
+
};
|
|
1148
|
+
es: {
|
|
1149
|
+
name: string;
|
|
1150
|
+
description: string;
|
|
1151
|
+
longDescription: string;
|
|
1152
|
+
};
|
|
1153
|
+
};
|
|
1072
1154
|
}, {
|
|
1073
1155
|
slug: string;
|
|
1074
1156
|
publishedDate: string;
|
|
@@ -1632,6 +1714,32 @@ declare const languages: readonly [{
|
|
|
1632
1714
|
longDescription: string;
|
|
1633
1715
|
};
|
|
1634
1716
|
};
|
|
1717
|
+
}, {
|
|
1718
|
+
slug: string;
|
|
1719
|
+
publishedDate: string;
|
|
1720
|
+
extensions: string[];
|
|
1721
|
+
author: string;
|
|
1722
|
+
website: string;
|
|
1723
|
+
paradigms: string[];
|
|
1724
|
+
tooling: {
|
|
1725
|
+
runtimes: string[];
|
|
1726
|
+
packageManagers: string[];
|
|
1727
|
+
ecosystems: string[];
|
|
1728
|
+
};
|
|
1729
|
+
version: string;
|
|
1730
|
+
logo: string;
|
|
1731
|
+
i18n: {
|
|
1732
|
+
en: {
|
|
1733
|
+
name: string;
|
|
1734
|
+
description: string;
|
|
1735
|
+
longDescription: string;
|
|
1736
|
+
};
|
|
1737
|
+
es: {
|
|
1738
|
+
name: string;
|
|
1739
|
+
description: string;
|
|
1740
|
+
longDescription: string;
|
|
1741
|
+
};
|
|
1742
|
+
};
|
|
1635
1743
|
}, {
|
|
1636
1744
|
slug: string;
|
|
1637
1745
|
publishedDate: string;
|
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, {
|
|
@@ -2822,6 +2974,7 @@ init_css();
|
|
|
2822
2974
|
init_cuda();
|
|
2823
2975
|
init_dart();
|
|
2824
2976
|
init_dockerfile();
|
|
2977
|
+
init_elixir();
|
|
2825
2978
|
init_elm();
|
|
2826
2979
|
init_erlang();
|
|
2827
2980
|
init_fortran();
|
|
@@ -2832,6 +2985,7 @@ init_go();
|
|
|
2832
2985
|
init_gradle();
|
|
2833
2986
|
init_graphql();
|
|
2834
2987
|
init_groovy();
|
|
2988
|
+
init_haskell();
|
|
2835
2989
|
init_hcl();
|
|
2836
2990
|
init_html();
|
|
2837
2991
|
init_ini();
|
|
@@ -2839,6 +2993,7 @@ init_java();
|
|
|
2839
2993
|
init_javascript();
|
|
2840
2994
|
init_json();
|
|
2841
2995
|
init_julia();
|
|
2996
|
+
init_jupyter_notebook();
|
|
2842
2997
|
init_kotlin();
|
|
2843
2998
|
init_less();
|
|
2844
2999
|
init_lisp();
|
|
@@ -2851,6 +3006,7 @@ init_metal();
|
|
|
2851
3006
|
init_nginx();
|
|
2852
3007
|
init_nix();
|
|
2853
3008
|
init_objective_c();
|
|
3009
|
+
init_ocaml();
|
|
2854
3010
|
init_pascal();
|
|
2855
3011
|
init_perl();
|
|
2856
3012
|
init_php();
|
|
@@ -2898,6 +3054,7 @@ var languages = [
|
|
|
2898
3054
|
cuda,
|
|
2899
3055
|
dart,
|
|
2900
3056
|
dockerfile,
|
|
3057
|
+
elixir,
|
|
2901
3058
|
elm,
|
|
2902
3059
|
erlang,
|
|
2903
3060
|
fortran,
|
|
@@ -2908,12 +3065,14 @@ var languages = [
|
|
|
2908
3065
|
glsl,
|
|
2909
3066
|
graphql,
|
|
2910
3067
|
groovy,
|
|
3068
|
+
haskell,
|
|
2911
3069
|
hcl,
|
|
2912
3070
|
html,
|
|
2913
3071
|
ini,
|
|
2914
3072
|
java,
|
|
2915
3073
|
javascript,
|
|
2916
3074
|
json,
|
|
3075
|
+
jupyterNotebook,
|
|
2917
3076
|
julia,
|
|
2918
3077
|
kotlin,
|
|
2919
3078
|
less,
|
|
@@ -2927,6 +3086,7 @@ var languages = [
|
|
|
2927
3086
|
svn,
|
|
2928
3087
|
nginx,
|
|
2929
3088
|
nix,
|
|
3089
|
+
ocaml,
|
|
2930
3090
|
objectiveC,
|
|
2931
3091
|
pascal,
|
|
2932
3092
|
perl,
|
|
@@ -3032,6 +3192,7 @@ var languageIndex = [
|
|
|
3032
3192
|
{ slug: "cuda", extensions: [".cu", ".cuh"] },
|
|
3033
3193
|
{ slug: "dart", extensions: [".dart"] },
|
|
3034
3194
|
{ slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
|
|
3195
|
+
{ slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
|
|
3035
3196
|
{ slug: "elm", extensions: [".elm"] },
|
|
3036
3197
|
{
|
|
3037
3198
|
slug: "erlang",
|
|
@@ -3051,12 +3212,14 @@ var languageIndex = [
|
|
|
3051
3212
|
},
|
|
3052
3213
|
{ slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
|
|
3053
3214
|
{ slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
|
|
3215
|
+
{ slug: "haskell", extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"] },
|
|
3054
3216
|
{ slug: "hcl", extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"] },
|
|
3055
3217
|
{ slug: "html", extensions: [".html", ".htm"] },
|
|
3056
3218
|
{ slug: "ini", extensions: [".ini"] },
|
|
3057
3219
|
{ slug: "java", extensions: [".java"] },
|
|
3058
3220
|
{ slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
|
|
3059
3221
|
{ slug: "json", extensions: [".json"] },
|
|
3222
|
+
{ slug: "jupyter-notebook", extensions: [".ipynb"] },
|
|
3060
3223
|
{ slug: "julia", extensions: [".jl"] },
|
|
3061
3224
|
{ slug: "kotlin", extensions: [".kt", ".kts"] },
|
|
3062
3225
|
{ slug: "less", extensions: [".less"] },
|
|
@@ -3070,6 +3233,7 @@ var languageIndex = [
|
|
|
3070
3233
|
{ slug: "svn", extensions: [".svn", "svnserve.conf"] },
|
|
3071
3234
|
{ slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
|
|
3072
3235
|
{ slug: "nix", extensions: [".nix"] },
|
|
3236
|
+
{ slug: "ocaml", extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"] },
|
|
3073
3237
|
{ slug: "objective-c", extensions: [".m", ".mm"] },
|
|
3074
3238
|
{ slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
|
|
3075
3239
|
{ slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
|
|
@@ -3124,6 +3288,7 @@ var languageLoaders = {
|
|
|
3124
3288
|
cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
|
|
3125
3289
|
dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
|
|
3126
3290
|
dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
|
|
3291
|
+
elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
|
|
3127
3292
|
elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
|
|
3128
3293
|
erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
|
|
3129
3294
|
fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
|
|
@@ -3134,12 +3299,14 @@ var languageLoaders = {
|
|
|
3134
3299
|
glsl: () => Promise.resolve().then(() => (init_glsl(), glsl_exports)).then((module) => module.glsl),
|
|
3135
3300
|
graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
|
|
3136
3301
|
groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
|
|
3302
|
+
haskell: () => Promise.resolve().then(() => (init_haskell(), haskell_exports)).then((module) => module.haskell),
|
|
3137
3303
|
hcl: () => Promise.resolve().then(() => (init_hcl(), hcl_exports)).then((module) => module.hcl),
|
|
3138
3304
|
html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
|
|
3139
3305
|
ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
|
|
3140
3306
|
java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
|
|
3141
3307
|
javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
|
|
3142
3308
|
json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
|
|
3309
|
+
"jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
|
|
3143
3310
|
julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
|
|
3144
3311
|
kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
|
|
3145
3312
|
less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
|
|
@@ -3153,6 +3320,7 @@ var languageLoaders = {
|
|
|
3153
3320
|
svn: () => Promise.resolve().then(() => (init_svn(), svn_exports)).then((module) => module.svn),
|
|
3154
3321
|
nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
|
|
3155
3322
|
nix: () => Promise.resolve().then(() => (init_nix(), nix_exports)).then((module) => module.nix),
|
|
3323
|
+
ocaml: () => Promise.resolve().then(() => (init_ocaml(), ocaml_exports)).then((module) => module.ocaml),
|
|
3156
3324
|
"objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
|
|
3157
3325
|
pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
|
|
3158
3326
|
perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
|
|
@@ -3296,6 +3464,7 @@ init_css();
|
|
|
3296
3464
|
init_cuda();
|
|
3297
3465
|
init_dart();
|
|
3298
3466
|
init_dockerfile();
|
|
3467
|
+
init_elixir();
|
|
3299
3468
|
init_elm();
|
|
3300
3469
|
init_erlang();
|
|
3301
3470
|
init_fortran();
|
|
@@ -3306,12 +3475,14 @@ init_gradle();
|
|
|
3306
3475
|
init_glsl();
|
|
3307
3476
|
init_graphql();
|
|
3308
3477
|
init_groovy();
|
|
3478
|
+
init_haskell();
|
|
3309
3479
|
init_hcl();
|
|
3310
3480
|
init_html();
|
|
3311
3481
|
init_ini();
|
|
3312
3482
|
init_java();
|
|
3313
3483
|
init_javascript();
|
|
3314
3484
|
init_json();
|
|
3485
|
+
init_jupyter_notebook();
|
|
3315
3486
|
init_julia();
|
|
3316
3487
|
init_kotlin();
|
|
3317
3488
|
init_less();
|
|
@@ -3324,6 +3495,7 @@ init_meson();
|
|
|
3324
3495
|
init_metal();
|
|
3325
3496
|
init_nginx();
|
|
3326
3497
|
init_nix();
|
|
3498
|
+
init_ocaml();
|
|
3327
3499
|
init_objective_c();
|
|
3328
3500
|
init_pascal();
|
|
3329
3501
|
init_perl();
|
|
@@ -3354,6 +3526,6 @@ init_yaml();
|
|
|
3354
3526
|
init_zig();
|
|
3355
3527
|
init_zsh();
|
|
3356
3528
|
|
|
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 };
|
|
3529
|
+
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, 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
3530
|
//# sourceMappingURL=index.js.map
|
|
3359
3531
|
//# sourceMappingURL=index.js.map
|