code-languages 1.7.0 → 1.8.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 +77 -1
- package/dist/api.cjs +2443 -0
- package/dist/api.cjs.map +1 -0
- package/dist/api.d.cts +1517 -0
- package/dist/api.d.ts +1517 -0
- package/dist/api.js +2441 -0
- package/dist/api.js.map +1 -0
- package/dist/detect.cjs +342 -12
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +342 -12
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +2325 -1202
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +293 -0
- package/dist/index.d.ts +293 -0
- package/dist/index.js +2281 -1115
- package/dist/index.js.map +1 -1
- package/dist/languages/asp.cjs +34 -0
- package/dist/languages/asp.cjs.map +1 -0
- package/dist/languages/asp.d.cts +29 -0
- package/dist/languages/asp.d.ts +29 -0
- package/dist/languages/asp.js +32 -0
- package/dist/languages/asp.js.map +1 -0
- package/dist/languages/cuda.cjs +34 -0
- package/dist/languages/cuda.cjs.map +1 -0
- package/dist/languages/cuda.d.cts +29 -0
- package/dist/languages/cuda.d.ts +29 -0
- package/dist/languages/cuda.js +32 -0
- package/dist/languages/cuda.js.map +1 -0
- package/dist/languages/fsharp.cjs +34 -0
- package/dist/languages/fsharp.cjs.map +1 -0
- package/dist/languages/fsharp.d.cts +29 -0
- package/dist/languages/fsharp.d.ts +29 -0
- package/dist/languages/fsharp.js +32 -0
- package/dist/languages/fsharp.js.map +1 -0
- package/dist/languages/julia.cjs +34 -0
- package/dist/languages/julia.cjs.map +1 -0
- package/dist/languages/julia.d.cts +29 -0
- package/dist/languages/julia.d.ts +29 -0
- package/dist/languages/julia.js +32 -0
- package/dist/languages/julia.js.map +1 -0
- package/dist/languages/matlab.cjs +34 -0
- package/dist/languages/matlab.cjs.map +1 -0
- package/dist/languages/matlab.d.cts +29 -0
- package/dist/languages/matlab.d.ts +29 -0
- package/dist/languages/matlab.js +32 -0
- package/dist/languages/matlab.js.map +1 -0
- package/dist/languages/pascal.cjs +34 -0
- package/dist/languages/pascal.cjs.map +1 -0
- package/dist/languages/pascal.d.cts +29 -0
- package/dist/languages/pascal.d.ts +29 -0
- package/dist/languages/pascal.js +32 -0
- package/dist/languages/pascal.js.map +1 -0
- package/dist/languages/pug.cjs +34 -0
- package/dist/languages/pug.cjs.map +1 -0
- package/dist/languages/pug.d.cts +29 -0
- package/dist/languages/pug.d.ts +29 -0
- package/dist/languages/pug.js +32 -0
- package/dist/languages/pug.js.map +1 -0
- package/dist/languages/r.cjs +34 -0
- package/dist/languages/r.cjs.map +1 -0
- package/dist/languages/r.d.cts +29 -0
- package/dist/languages/r.d.ts +29 -0
- package/dist/languages/r.js +32 -0
- package/dist/languages/r.js.map +1 -0
- package/dist/languages/scala.cjs +34 -0
- package/dist/languages/scala.cjs.map +1 -0
- package/dist/languages/scala.d.cts +29 -0
- package/dist/languages/scala.d.ts +29 -0
- package/dist/languages/scala.js +32 -0
- package/dist/languages/scala.js.map +1 -0
- package/dist/languages/toml.cjs +29 -0
- package/dist/languages/toml.cjs.map +1 -0
- package/dist/languages/toml.d.cts +24 -0
- package/dist/languages/toml.d.ts +24 -0
- package/dist/languages/toml.js +27 -0
- package/dist/languages/toml.js.map +1 -0
- package/dist/languages/zig.cjs +34 -0
- package/dist/languages/zig.cjs.map +1 -0
- package/dist/languages/zig.d.cts +29 -0
- package/dist/languages/zig.d.ts +29 -0
- package/dist/languages/zig.js +32 -0
- package/dist/languages/zig.js.map +1 -0
- package/package.json +61 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/asp.ts
|
|
4
|
+
var asp = {
|
|
5
|
+
slug: "asp",
|
|
6
|
+
publishedDate: "1996-12-01",
|
|
7
|
+
extensions: [".asp", ".aspx", ".ascx", ".ashx", ".asmx", ".master"],
|
|
8
|
+
author: "Microsoft",
|
|
9
|
+
website: "https://learn.microsoft.com/en-us/aspnet/web-forms/",
|
|
10
|
+
paradigms: ["server-side", "templating", "object-oriented", "event-driven"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["IIS", ".NET Framework"],
|
|
13
|
+
packageManagers: ["NuGet"],
|
|
14
|
+
ecosystems: ["Windows", ".NET", "Web"]
|
|
15
|
+
},
|
|
16
|
+
version: "4.8.1",
|
|
17
|
+
logo: "https://cdn.simpleicons.org/dotnet/512BD4",
|
|
18
|
+
i18n: {
|
|
19
|
+
en: {
|
|
20
|
+
name: "ASP/ASPX",
|
|
21
|
+
description: "Microsoft server-side web templates and pages for Classic ASP and ASP.NET Web Forms.",
|
|
22
|
+
longDescription: "ASP and ASPX files represent Microsoft server-side web page technologies. Classic ASP uses `.asp` files with script blocks, while ASP.NET Web Forms uses `.aspx`, user controls, handlers, services, and master pages on top of the .NET Framework.\n\nThey are commonly found in legacy and long-lived Windows web applications hosted on IIS, often alongside C#, Visual Basic, HTML, CSS, JavaScript, and NuGet-based .NET Framework dependencies."
|
|
23
|
+
},
|
|
24
|
+
es: {
|
|
25
|
+
name: "ASP/ASPX",
|
|
26
|
+
description: "Plantillas y paginas web server-side de Microsoft para Classic ASP y ASP.NET Web Forms.",
|
|
27
|
+
longDescription: "Los archivos ASP y ASPX representan tecnologias de paginas web server-side de Microsoft. Classic ASP usa archivos `.asp` con bloques de script, mientras ASP.NET Web Forms usa `.aspx`, controles de usuario, handlers, servicios y paginas maestras sobre .NET Framework.\n\nAparecen comunmente en aplicaciones web Windows legacy o de larga vida alojadas en IIS, a menudo junto con C#, Visual Basic, HTML, CSS, JavaScript y dependencias .NET Framework basadas en NuGet."
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
exports.asp = asp;
|
|
33
|
+
//# sourceMappingURL=asp.cjs.map
|
|
34
|
+
//# sourceMappingURL=asp.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/asp.ts"],"names":[],"mappings":";;;AAEO,IAAM,GAAA,GAAM;AAAA,EACjB,IAAA,EAAM,KAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,YAAY,CAAC,MAAA,EAAQ,SAAS,OAAA,EAAS,OAAA,EAAS,SAAS,SAAS,CAAA;AAAA,EAClE,MAAA,EAAQ,WAAA;AAAA,EACR,OAAA,EAAS,qDAAA;AAAA,EACT,SAAA,EAAW,CAAC,aAAA,EAAe,YAAA,EAAc,mBAAmB,cAAc,CAAA;AAAA,EAC1E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,KAAA,EAAO,gBAAgB,CAAA;AAAA,IAClC,eAAA,EAAiB,CAAC,OAAO,CAAA;AAAA,IACzB,UAAA,EAAY,CAAC,SAAA,EAAW,MAAA,EAAQ,KAAK;AAAA,GACvC;AAAA,EACA,OAAA,EAAS,OAAA;AAAA,EACT,IAAA,EAAM,2CAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,UAAA;AAAA,MACN,WAAA,EACE,sFAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,UAAA;AAAA,MACN,WAAA,EACE,yFAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"asp.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const asp = {\n slug: \"asp\",\n publishedDate: \"1996-12-01\",\n extensions: [\".asp\", \".aspx\", \".ascx\", \".ashx\", \".asmx\", \".master\"],\n author: \"Microsoft\",\n website: \"https://learn.microsoft.com/en-us/aspnet/web-forms/\",\n paradigms: [\"server-side\", \"templating\", \"object-oriented\", \"event-driven\"],\n tooling: {\n runtimes: [\"IIS\", \".NET Framework\"],\n packageManagers: [\"NuGet\"],\n ecosystems: [\"Windows\", \".NET\", \"Web\"],\n },\n version: \"4.8.1\",\n logo: \"https://cdn.simpleicons.org/dotnet/512BD4\",\n i18n: {\n en: {\n name: \"ASP/ASPX\",\n description:\n \"Microsoft server-side web templates and pages for Classic ASP and ASP.NET Web Forms.\",\n longDescription:\n \"ASP and ASPX files represent Microsoft server-side web page technologies. Classic ASP uses `.asp` files with script blocks, while ASP.NET Web Forms uses `.aspx`, user controls, handlers, services, and master pages on top of the .NET Framework.\\n\\nThey are commonly found in legacy and long-lived Windows web applications hosted on IIS, often alongside C#, Visual Basic, HTML, CSS, JavaScript, and NuGet-based .NET Framework dependencies.\",\n },\n es: {\n name: \"ASP/ASPX\",\n description:\n \"Plantillas y paginas web server-side de Microsoft para Classic ASP y ASP.NET Web Forms.\",\n longDescription:\n \"Los archivos ASP y ASPX representan tecnologias de paginas web server-side de Microsoft. Classic ASP usa archivos `.asp` con bloques de script, mientras ASP.NET Web Forms usa `.aspx`, controles de usuario, handlers, servicios y paginas maestras sobre .NET Framework.\\n\\nAparecen comunmente en aplicaciones web Windows legacy o de larga vida alojadas en IIS, a menudo junto con C#, Visual Basic, HTML, CSS, JavaScript y dependencias .NET Framework basadas en NuGet.\",\n },\n },\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const asp: {
|
|
2
|
+
slug: string;
|
|
3
|
+
publishedDate: string;
|
|
4
|
+
extensions: string[];
|
|
5
|
+
author: string;
|
|
6
|
+
website: string;
|
|
7
|
+
paradigms: string[];
|
|
8
|
+
tooling: {
|
|
9
|
+
runtimes: string[];
|
|
10
|
+
packageManagers: string[];
|
|
11
|
+
ecosystems: string[];
|
|
12
|
+
};
|
|
13
|
+
version: string;
|
|
14
|
+
logo: string;
|
|
15
|
+
i18n: {
|
|
16
|
+
en: {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
longDescription: string;
|
|
20
|
+
};
|
|
21
|
+
es: {
|
|
22
|
+
name: string;
|
|
23
|
+
description: string;
|
|
24
|
+
longDescription: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export { asp };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const asp: {
|
|
2
|
+
slug: string;
|
|
3
|
+
publishedDate: string;
|
|
4
|
+
extensions: string[];
|
|
5
|
+
author: string;
|
|
6
|
+
website: string;
|
|
7
|
+
paradigms: string[];
|
|
8
|
+
tooling: {
|
|
9
|
+
runtimes: string[];
|
|
10
|
+
packageManagers: string[];
|
|
11
|
+
ecosystems: string[];
|
|
12
|
+
};
|
|
13
|
+
version: string;
|
|
14
|
+
logo: string;
|
|
15
|
+
i18n: {
|
|
16
|
+
en: {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
longDescription: string;
|
|
20
|
+
};
|
|
21
|
+
es: {
|
|
22
|
+
name: string;
|
|
23
|
+
description: string;
|
|
24
|
+
longDescription: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export { asp };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// src/languages/asp.ts
|
|
2
|
+
var asp = {
|
|
3
|
+
slug: "asp",
|
|
4
|
+
publishedDate: "1996-12-01",
|
|
5
|
+
extensions: [".asp", ".aspx", ".ascx", ".ashx", ".asmx", ".master"],
|
|
6
|
+
author: "Microsoft",
|
|
7
|
+
website: "https://learn.microsoft.com/en-us/aspnet/web-forms/",
|
|
8
|
+
paradigms: ["server-side", "templating", "object-oriented", "event-driven"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["IIS", ".NET Framework"],
|
|
11
|
+
packageManagers: ["NuGet"],
|
|
12
|
+
ecosystems: ["Windows", ".NET", "Web"]
|
|
13
|
+
},
|
|
14
|
+
version: "4.8.1",
|
|
15
|
+
logo: "https://cdn.simpleicons.org/dotnet/512BD4",
|
|
16
|
+
i18n: {
|
|
17
|
+
en: {
|
|
18
|
+
name: "ASP/ASPX",
|
|
19
|
+
description: "Microsoft server-side web templates and pages for Classic ASP and ASP.NET Web Forms.",
|
|
20
|
+
longDescription: "ASP and ASPX files represent Microsoft server-side web page technologies. Classic ASP uses `.asp` files with script blocks, while ASP.NET Web Forms uses `.aspx`, user controls, handlers, services, and master pages on top of the .NET Framework.\n\nThey are commonly found in legacy and long-lived Windows web applications hosted on IIS, often alongside C#, Visual Basic, HTML, CSS, JavaScript, and NuGet-based .NET Framework dependencies."
|
|
21
|
+
},
|
|
22
|
+
es: {
|
|
23
|
+
name: "ASP/ASPX",
|
|
24
|
+
description: "Plantillas y paginas web server-side de Microsoft para Classic ASP y ASP.NET Web Forms.",
|
|
25
|
+
longDescription: "Los archivos ASP y ASPX representan tecnologias de paginas web server-side de Microsoft. Classic ASP usa archivos `.asp` con bloques de script, mientras ASP.NET Web Forms usa `.aspx`, controles de usuario, handlers, servicios y paginas maestras sobre .NET Framework.\n\nAparecen comunmente en aplicaciones web Windows legacy o de larga vida alojadas en IIS, a menudo junto con C#, Visual Basic, HTML, CSS, JavaScript y dependencias .NET Framework basadas en NuGet."
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { asp };
|
|
31
|
+
//# sourceMappingURL=asp.js.map
|
|
32
|
+
//# sourceMappingURL=asp.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/asp.ts"],"names":[],"mappings":";AAEO,IAAM,GAAA,GAAM;AAAA,EACjB,IAAA,EAAM,KAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,YAAY,CAAC,MAAA,EAAQ,SAAS,OAAA,EAAS,OAAA,EAAS,SAAS,SAAS,CAAA;AAAA,EAClE,MAAA,EAAQ,WAAA;AAAA,EACR,OAAA,EAAS,qDAAA;AAAA,EACT,SAAA,EAAW,CAAC,aAAA,EAAe,YAAA,EAAc,mBAAmB,cAAc,CAAA;AAAA,EAC1E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,KAAA,EAAO,gBAAgB,CAAA;AAAA,IAClC,eAAA,EAAiB,CAAC,OAAO,CAAA;AAAA,IACzB,UAAA,EAAY,CAAC,SAAA,EAAW,MAAA,EAAQ,KAAK;AAAA,GACvC;AAAA,EACA,OAAA,EAAS,OAAA;AAAA,EACT,IAAA,EAAM,2CAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,UAAA;AAAA,MACN,WAAA,EACE,sFAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,UAAA;AAAA,MACN,WAAA,EACE,yFAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"asp.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const asp = {\n slug: \"asp\",\n publishedDate: \"1996-12-01\",\n extensions: [\".asp\", \".aspx\", \".ascx\", \".ashx\", \".asmx\", \".master\"],\n author: \"Microsoft\",\n website: \"https://learn.microsoft.com/en-us/aspnet/web-forms/\",\n paradigms: [\"server-side\", \"templating\", \"object-oriented\", \"event-driven\"],\n tooling: {\n runtimes: [\"IIS\", \".NET Framework\"],\n packageManagers: [\"NuGet\"],\n ecosystems: [\"Windows\", \".NET\", \"Web\"],\n },\n version: \"4.8.1\",\n logo: \"https://cdn.simpleicons.org/dotnet/512BD4\",\n i18n: {\n en: {\n name: \"ASP/ASPX\",\n description:\n \"Microsoft server-side web templates and pages for Classic ASP and ASP.NET Web Forms.\",\n longDescription:\n \"ASP and ASPX files represent Microsoft server-side web page technologies. Classic ASP uses `.asp` files with script blocks, while ASP.NET Web Forms uses `.aspx`, user controls, handlers, services, and master pages on top of the .NET Framework.\\n\\nThey are commonly found in legacy and long-lived Windows web applications hosted on IIS, often alongside C#, Visual Basic, HTML, CSS, JavaScript, and NuGet-based .NET Framework dependencies.\",\n },\n es: {\n name: \"ASP/ASPX\",\n description:\n \"Plantillas y paginas web server-side de Microsoft para Classic ASP y ASP.NET Web Forms.\",\n longDescription:\n \"Los archivos ASP y ASPX representan tecnologias de paginas web server-side de Microsoft. Classic ASP usa archivos `.asp` con bloques de script, mientras ASP.NET Web Forms usa `.aspx`, controles de usuario, handlers, servicios y paginas maestras sobre .NET Framework.\\n\\nAparecen comunmente en aplicaciones web Windows legacy o de larga vida alojadas en IIS, a menudo junto con C#, Visual Basic, HTML, CSS, JavaScript y dependencias .NET Framework basadas en NuGet.\",\n },\n },\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/cuda.ts
|
|
4
|
+
var cuda = {
|
|
5
|
+
slug: "cuda",
|
|
6
|
+
publishedDate: "2007-02-15",
|
|
7
|
+
extensions: [".cu", ".cuh"],
|
|
8
|
+
author: "NVIDIA",
|
|
9
|
+
website: "https://developer.nvidia.com/cuda-toolkit",
|
|
10
|
+
paradigms: ["parallel", "data-parallel", "systems", "heterogeneous-computing"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["CUDA Runtime", "CUDA Driver API"],
|
|
13
|
+
packageManagers: ["CUDA Toolkit", "conda"],
|
|
14
|
+
ecosystems: ["GPU Computing", "HPC", "Machine Learning", "Scientific Computing"]
|
|
15
|
+
},
|
|
16
|
+
version: "13.2.1",
|
|
17
|
+
logo: "https://cdn.simpleicons.org/nvidia/76B900",
|
|
18
|
+
i18n: {
|
|
19
|
+
en: {
|
|
20
|
+
name: "CUDA",
|
|
21
|
+
description: "NVIDIA's GPU programming platform and C/C++ extensions for parallel computing.",
|
|
22
|
+
longDescription: "CUDA is NVIDIA's parallel computing platform and programming model for GPU-accelerated applications. CUDA C/C++ source files use extensions for kernels, device functions, memory spaces, grids, blocks, and threads that execute on NVIDIA GPUs.\n\nIt is used in machine learning, scientific computing, simulations, image processing, rendering, high-performance computing, and applications that need to offload massively parallel workloads to GPU hardware."
|
|
23
|
+
},
|
|
24
|
+
es: {
|
|
25
|
+
name: "CUDA",
|
|
26
|
+
description: "La plataforma GPU de NVIDIA y extensiones C/C++ para computacion paralela.",
|
|
27
|
+
longDescription: "CUDA es la plataforma de computacion paralela y modelo de programacion de NVIDIA para aplicaciones aceleradas por GPU. Los archivos CUDA C/C++ usan extensiones para kernels, funciones de dispositivo, espacios de memoria, grids, blocks y threads que se ejecutan en GPUs NVIDIA.\n\nSe usa en machine learning, computacion cientifica, simulaciones, procesamiento de imagenes, rendering, computacion de alto rendimiento y aplicaciones que necesitan descargar cargas masivamente paralelas al hardware GPU."
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
exports.cuda = cuda;
|
|
33
|
+
//# sourceMappingURL=cuda.cjs.map
|
|
34
|
+
//# sourceMappingURL=cuda.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/cuda.ts"],"names":[],"mappings":";;;AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,MAAM,CAAA;AAAA,EAC1B,MAAA,EAAQ,QAAA;AAAA,EACR,OAAA,EAAS,2CAAA;AAAA,EACT,SAAA,EAAW,CAAC,UAAA,EAAY,eAAA,EAAiB,WAAW,yBAAyB,CAAA;AAAA,EAC7E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,cAAA,EAAgB,iBAAiB,CAAA;AAAA,IAC5C,eAAA,EAAiB,CAAC,cAAA,EAAgB,OAAO,CAAA;AAAA,IACzC,UAAA,EAAY,CAAC,eAAA,EAAiB,KAAA,EAAO,oBAAoB,sBAAsB;AAAA,GACjF;AAAA,EACA,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM,2CAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,MAAA;AAAA,MACN,WAAA,EAAa,gFAAA;AAAA,MACb,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,MAAA;AAAA,MACN,WAAA,EAAa,4EAAA;AAAA,MACb,eAAA,EACE;AAAA;AACJ;AAEJ","file":"cuda.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const cuda = {\n slug: \"cuda\",\n publishedDate: \"2007-02-15\",\n extensions: [\".cu\", \".cuh\"],\n author: \"NVIDIA\",\n website: \"https://developer.nvidia.com/cuda-toolkit\",\n paradigms: [\"parallel\", \"data-parallel\", \"systems\", \"heterogeneous-computing\"],\n tooling: {\n runtimes: [\"CUDA Runtime\", \"CUDA Driver API\"],\n packageManagers: [\"CUDA Toolkit\", \"conda\"],\n ecosystems: [\"GPU Computing\", \"HPC\", \"Machine Learning\", \"Scientific Computing\"],\n },\n version: \"13.2.1\",\n logo: \"https://cdn.simpleicons.org/nvidia/76B900\",\n i18n: {\n en: {\n name: \"CUDA\",\n description: \"NVIDIA's GPU programming platform and C/C++ extensions for parallel computing.\",\n longDescription:\n \"CUDA is NVIDIA's parallel computing platform and programming model for GPU-accelerated applications. CUDA C/C++ source files use extensions for kernels, device functions, memory spaces, grids, blocks, and threads that execute on NVIDIA GPUs.\\n\\nIt is used in machine learning, scientific computing, simulations, image processing, rendering, high-performance computing, and applications that need to offload massively parallel workloads to GPU hardware.\",\n },\n es: {\n name: \"CUDA\",\n description: \"La plataforma GPU de NVIDIA y extensiones C/C++ para computacion paralela.\",\n longDescription:\n \"CUDA es la plataforma de computacion paralela y modelo de programacion de NVIDIA para aplicaciones aceleradas por GPU. Los archivos CUDA C/C++ usan extensiones para kernels, funciones de dispositivo, espacios de memoria, grids, blocks y threads que se ejecutan en GPUs NVIDIA.\\n\\nSe usa en machine learning, computacion cientifica, simulaciones, procesamiento de imagenes, rendering, computacion de alto rendimiento y aplicaciones que necesitan descargar cargas masivamente paralelas al hardware GPU.\",\n },\n },\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const cuda: {
|
|
2
|
+
slug: string;
|
|
3
|
+
publishedDate: string;
|
|
4
|
+
extensions: string[];
|
|
5
|
+
author: string;
|
|
6
|
+
website: string;
|
|
7
|
+
paradigms: string[];
|
|
8
|
+
tooling: {
|
|
9
|
+
runtimes: string[];
|
|
10
|
+
packageManagers: string[];
|
|
11
|
+
ecosystems: string[];
|
|
12
|
+
};
|
|
13
|
+
version: string;
|
|
14
|
+
logo: string;
|
|
15
|
+
i18n: {
|
|
16
|
+
en: {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
longDescription: string;
|
|
20
|
+
};
|
|
21
|
+
es: {
|
|
22
|
+
name: string;
|
|
23
|
+
description: string;
|
|
24
|
+
longDescription: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export { cuda };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const cuda: {
|
|
2
|
+
slug: string;
|
|
3
|
+
publishedDate: string;
|
|
4
|
+
extensions: string[];
|
|
5
|
+
author: string;
|
|
6
|
+
website: string;
|
|
7
|
+
paradigms: string[];
|
|
8
|
+
tooling: {
|
|
9
|
+
runtimes: string[];
|
|
10
|
+
packageManagers: string[];
|
|
11
|
+
ecosystems: string[];
|
|
12
|
+
};
|
|
13
|
+
version: string;
|
|
14
|
+
logo: string;
|
|
15
|
+
i18n: {
|
|
16
|
+
en: {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
longDescription: string;
|
|
20
|
+
};
|
|
21
|
+
es: {
|
|
22
|
+
name: string;
|
|
23
|
+
description: string;
|
|
24
|
+
longDescription: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export { cuda };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// src/languages/cuda.ts
|
|
2
|
+
var cuda = {
|
|
3
|
+
slug: "cuda",
|
|
4
|
+
publishedDate: "2007-02-15",
|
|
5
|
+
extensions: [".cu", ".cuh"],
|
|
6
|
+
author: "NVIDIA",
|
|
7
|
+
website: "https://developer.nvidia.com/cuda-toolkit",
|
|
8
|
+
paradigms: ["parallel", "data-parallel", "systems", "heterogeneous-computing"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["CUDA Runtime", "CUDA Driver API"],
|
|
11
|
+
packageManagers: ["CUDA Toolkit", "conda"],
|
|
12
|
+
ecosystems: ["GPU Computing", "HPC", "Machine Learning", "Scientific Computing"]
|
|
13
|
+
},
|
|
14
|
+
version: "13.2.1",
|
|
15
|
+
logo: "https://cdn.simpleicons.org/nvidia/76B900",
|
|
16
|
+
i18n: {
|
|
17
|
+
en: {
|
|
18
|
+
name: "CUDA",
|
|
19
|
+
description: "NVIDIA's GPU programming platform and C/C++ extensions for parallel computing.",
|
|
20
|
+
longDescription: "CUDA is NVIDIA's parallel computing platform and programming model for GPU-accelerated applications. CUDA C/C++ source files use extensions for kernels, device functions, memory spaces, grids, blocks, and threads that execute on NVIDIA GPUs.\n\nIt is used in machine learning, scientific computing, simulations, image processing, rendering, high-performance computing, and applications that need to offload massively parallel workloads to GPU hardware."
|
|
21
|
+
},
|
|
22
|
+
es: {
|
|
23
|
+
name: "CUDA",
|
|
24
|
+
description: "La plataforma GPU de NVIDIA y extensiones C/C++ para computacion paralela.",
|
|
25
|
+
longDescription: "CUDA es la plataforma de computacion paralela y modelo de programacion de NVIDIA para aplicaciones aceleradas por GPU. Los archivos CUDA C/C++ usan extensiones para kernels, funciones de dispositivo, espacios de memoria, grids, blocks y threads que se ejecutan en GPUs NVIDIA.\n\nSe usa en machine learning, computacion cientifica, simulaciones, procesamiento de imagenes, rendering, computacion de alto rendimiento y aplicaciones que necesitan descargar cargas masivamente paralelas al hardware GPU."
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { cuda };
|
|
31
|
+
//# sourceMappingURL=cuda.js.map
|
|
32
|
+
//# sourceMappingURL=cuda.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/cuda.ts"],"names":[],"mappings":";AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,MAAM,CAAA;AAAA,EAC1B,MAAA,EAAQ,QAAA;AAAA,EACR,OAAA,EAAS,2CAAA;AAAA,EACT,SAAA,EAAW,CAAC,UAAA,EAAY,eAAA,EAAiB,WAAW,yBAAyB,CAAA;AAAA,EAC7E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,cAAA,EAAgB,iBAAiB,CAAA;AAAA,IAC5C,eAAA,EAAiB,CAAC,cAAA,EAAgB,OAAO,CAAA;AAAA,IACzC,UAAA,EAAY,CAAC,eAAA,EAAiB,KAAA,EAAO,oBAAoB,sBAAsB;AAAA,GACjF;AAAA,EACA,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM,2CAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,MAAA;AAAA,MACN,WAAA,EAAa,gFAAA;AAAA,MACb,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,MAAA;AAAA,MACN,WAAA,EAAa,4EAAA;AAAA,MACb,eAAA,EACE;AAAA;AACJ;AAEJ","file":"cuda.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const cuda = {\n slug: \"cuda\",\n publishedDate: \"2007-02-15\",\n extensions: [\".cu\", \".cuh\"],\n author: \"NVIDIA\",\n website: \"https://developer.nvidia.com/cuda-toolkit\",\n paradigms: [\"parallel\", \"data-parallel\", \"systems\", \"heterogeneous-computing\"],\n tooling: {\n runtimes: [\"CUDA Runtime\", \"CUDA Driver API\"],\n packageManagers: [\"CUDA Toolkit\", \"conda\"],\n ecosystems: [\"GPU Computing\", \"HPC\", \"Machine Learning\", \"Scientific Computing\"],\n },\n version: \"13.2.1\",\n logo: \"https://cdn.simpleicons.org/nvidia/76B900\",\n i18n: {\n en: {\n name: \"CUDA\",\n description: \"NVIDIA's GPU programming platform and C/C++ extensions for parallel computing.\",\n longDescription:\n \"CUDA is NVIDIA's parallel computing platform and programming model for GPU-accelerated applications. CUDA C/C++ source files use extensions for kernels, device functions, memory spaces, grids, blocks, and threads that execute on NVIDIA GPUs.\\n\\nIt is used in machine learning, scientific computing, simulations, image processing, rendering, high-performance computing, and applications that need to offload massively parallel workloads to GPU hardware.\",\n },\n es: {\n name: \"CUDA\",\n description: \"La plataforma GPU de NVIDIA y extensiones C/C++ para computacion paralela.\",\n longDescription:\n \"CUDA es la plataforma de computacion paralela y modelo de programacion de NVIDIA para aplicaciones aceleradas por GPU. Los archivos CUDA C/C++ usan extensiones para kernels, funciones de dispositivo, espacios de memoria, grids, blocks y threads que se ejecutan en GPUs NVIDIA.\\n\\nSe usa en machine learning, computacion cientifica, simulaciones, procesamiento de imagenes, rendering, computacion de alto rendimiento y aplicaciones que necesitan descargar cargas masivamente paralelas al hardware GPU.\",\n },\n },\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/fsharp.ts
|
|
4
|
+
var fsharp = {
|
|
5
|
+
slug: "fsharp",
|
|
6
|
+
publishedDate: "2005-05-01",
|
|
7
|
+
extensions: [".fs", ".fsi", ".fsx", ".fsscript"],
|
|
8
|
+
author: "Don Syme / Microsoft Research",
|
|
9
|
+
website: "https://dotnet.microsoft.com/en-us/languages/fsharp",
|
|
10
|
+
paradigms: ["functional", "object-oriented", "imperative", "scripting"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: [".NET", "F# Interactive"],
|
|
13
|
+
packageManagers: ["NuGet"],
|
|
14
|
+
ecosystems: [".NET", "Data Science", "Web", "Cloud"]
|
|
15
|
+
},
|
|
16
|
+
version: "10",
|
|
17
|
+
logo: "https://cdn.simpleicons.org/fsharp/378BBA",
|
|
18
|
+
i18n: {
|
|
19
|
+
en: {
|
|
20
|
+
name: "F#",
|
|
21
|
+
description: "A succinct, functional-first .NET language for robust applications, scripts, and data workflows.",
|
|
22
|
+
longDescription: "F# is a functional-first programming language in the .NET ecosystem. It combines type inference, immutable data by default, pattern matching, discriminated unions, computation expressions, and interoperability with C# and other .NET languages.\n\nIt is used for backend services, data processing, scripting, domain modeling, financial systems, cloud applications, and teams that want concise code with strong static typing and access to the broader .NET platform."
|
|
23
|
+
},
|
|
24
|
+
es: {
|
|
25
|
+
name: "F#",
|
|
26
|
+
description: "Un lenguaje .NET conciso y funcional para aplicaciones robustas, scripts y flujos de datos.",
|
|
27
|
+
longDescription: "F# es un lenguaje de programacion funcional-first dentro del ecosistema .NET. Combina inferencia de tipos, datos inmutables por defecto, pattern matching, uniones discriminadas, computation expressions e interoperabilidad con C# y otros lenguajes .NET.\n\nSe usa en servicios backend, procesamiento de datos, scripting, modelado de dominios, sistemas financieros, aplicaciones cloud y equipos que quieren codigo conciso con tipado estatico fuerte y acceso a la plataforma .NET."
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
exports.fsharp = fsharp;
|
|
33
|
+
//# sourceMappingURL=fsharp.cjs.map
|
|
34
|
+
//# sourceMappingURL=fsharp.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/fsharp.ts"],"names":[],"mappings":";;;AAEO,IAAM,MAAA,GAAS;AAAA,EACpB,IAAA,EAAM,QAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,MAAA,EAAQ,QAAQ,WAAW,CAAA;AAAA,EAC/C,MAAA,EAAQ,+BAAA;AAAA,EACR,OAAA,EAAS,qDAAA;AAAA,EACT,SAAA,EAAW,CAAC,YAAA,EAAc,iBAAA,EAAmB,cAAc,WAAW,CAAA;AAAA,EACtE,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,MAAA,EAAQ,gBAAgB,CAAA;AAAA,IACnC,eAAA,EAAiB,CAAC,OAAO,CAAA;AAAA,IACzB,UAAA,EAAY,CAAC,MAAA,EAAQ,cAAA,EAAgB,OAAO,OAAO;AAAA,GACrD;AAAA,EACA,OAAA,EAAS,IAAA;AAAA,EACT,IAAA,EAAM,2CAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,IAAA;AAAA,MACN,WAAA,EACE,kGAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,IAAA;AAAA,MACN,WAAA,EACE,6FAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"fsharp.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const fsharp = {\n slug: \"fsharp\",\n publishedDate: \"2005-05-01\",\n extensions: [\".fs\", \".fsi\", \".fsx\", \".fsscript\"],\n author: \"Don Syme / Microsoft Research\",\n website: \"https://dotnet.microsoft.com/en-us/languages/fsharp\",\n paradigms: [\"functional\", \"object-oriented\", \"imperative\", \"scripting\"],\n tooling: {\n runtimes: [\".NET\", \"F# Interactive\"],\n packageManagers: [\"NuGet\"],\n ecosystems: [\".NET\", \"Data Science\", \"Web\", \"Cloud\"],\n },\n version: \"10\",\n logo: \"https://cdn.simpleicons.org/fsharp/378BBA\",\n i18n: {\n en: {\n name: \"F#\",\n description:\n \"A succinct, functional-first .NET language for robust applications, scripts, and data workflows.\",\n longDescription:\n \"F# is a functional-first programming language in the .NET ecosystem. It combines type inference, immutable data by default, pattern matching, discriminated unions, computation expressions, and interoperability with C# and other .NET languages.\\n\\nIt is used for backend services, data processing, scripting, domain modeling, financial systems, cloud applications, and teams that want concise code with strong static typing and access to the broader .NET platform.\",\n },\n es: {\n name: \"F#\",\n description:\n \"Un lenguaje .NET conciso y funcional para aplicaciones robustas, scripts y flujos de datos.\",\n longDescription:\n \"F# es un lenguaje de programacion funcional-first dentro del ecosistema .NET. Combina inferencia de tipos, datos inmutables por defecto, pattern matching, uniones discriminadas, computation expressions e interoperabilidad con C# y otros lenguajes .NET.\\n\\nSe usa en servicios backend, procesamiento de datos, scripting, modelado de dominios, sistemas financieros, aplicaciones cloud y equipos que quieren codigo conciso con tipado estatico fuerte y acceso a la plataforma .NET.\",\n },\n },\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const fsharp: {
|
|
2
|
+
slug: string;
|
|
3
|
+
publishedDate: string;
|
|
4
|
+
extensions: string[];
|
|
5
|
+
author: string;
|
|
6
|
+
website: string;
|
|
7
|
+
paradigms: string[];
|
|
8
|
+
tooling: {
|
|
9
|
+
runtimes: string[];
|
|
10
|
+
packageManagers: string[];
|
|
11
|
+
ecosystems: string[];
|
|
12
|
+
};
|
|
13
|
+
version: string;
|
|
14
|
+
logo: string;
|
|
15
|
+
i18n: {
|
|
16
|
+
en: {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
longDescription: string;
|
|
20
|
+
};
|
|
21
|
+
es: {
|
|
22
|
+
name: string;
|
|
23
|
+
description: string;
|
|
24
|
+
longDescription: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export { fsharp };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const fsharp: {
|
|
2
|
+
slug: string;
|
|
3
|
+
publishedDate: string;
|
|
4
|
+
extensions: string[];
|
|
5
|
+
author: string;
|
|
6
|
+
website: string;
|
|
7
|
+
paradigms: string[];
|
|
8
|
+
tooling: {
|
|
9
|
+
runtimes: string[];
|
|
10
|
+
packageManagers: string[];
|
|
11
|
+
ecosystems: string[];
|
|
12
|
+
};
|
|
13
|
+
version: string;
|
|
14
|
+
logo: string;
|
|
15
|
+
i18n: {
|
|
16
|
+
en: {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
longDescription: string;
|
|
20
|
+
};
|
|
21
|
+
es: {
|
|
22
|
+
name: string;
|
|
23
|
+
description: string;
|
|
24
|
+
longDescription: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export { fsharp };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// src/languages/fsharp.ts
|
|
2
|
+
var fsharp = {
|
|
3
|
+
slug: "fsharp",
|
|
4
|
+
publishedDate: "2005-05-01",
|
|
5
|
+
extensions: [".fs", ".fsi", ".fsx", ".fsscript"],
|
|
6
|
+
author: "Don Syme / Microsoft Research",
|
|
7
|
+
website: "https://dotnet.microsoft.com/en-us/languages/fsharp",
|
|
8
|
+
paradigms: ["functional", "object-oriented", "imperative", "scripting"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: [".NET", "F# Interactive"],
|
|
11
|
+
packageManagers: ["NuGet"],
|
|
12
|
+
ecosystems: [".NET", "Data Science", "Web", "Cloud"]
|
|
13
|
+
},
|
|
14
|
+
version: "10",
|
|
15
|
+
logo: "https://cdn.simpleicons.org/fsharp/378BBA",
|
|
16
|
+
i18n: {
|
|
17
|
+
en: {
|
|
18
|
+
name: "F#",
|
|
19
|
+
description: "A succinct, functional-first .NET language for robust applications, scripts, and data workflows.",
|
|
20
|
+
longDescription: "F# is a functional-first programming language in the .NET ecosystem. It combines type inference, immutable data by default, pattern matching, discriminated unions, computation expressions, and interoperability with C# and other .NET languages.\n\nIt is used for backend services, data processing, scripting, domain modeling, financial systems, cloud applications, and teams that want concise code with strong static typing and access to the broader .NET platform."
|
|
21
|
+
},
|
|
22
|
+
es: {
|
|
23
|
+
name: "F#",
|
|
24
|
+
description: "Un lenguaje .NET conciso y funcional para aplicaciones robustas, scripts y flujos de datos.",
|
|
25
|
+
longDescription: "F# es un lenguaje de programacion funcional-first dentro del ecosistema .NET. Combina inferencia de tipos, datos inmutables por defecto, pattern matching, uniones discriminadas, computation expressions e interoperabilidad con C# y otros lenguajes .NET.\n\nSe usa en servicios backend, procesamiento de datos, scripting, modelado de dominios, sistemas financieros, aplicaciones cloud y equipos que quieren codigo conciso con tipado estatico fuerte y acceso a la plataforma .NET."
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { fsharp };
|
|
31
|
+
//# sourceMappingURL=fsharp.js.map
|
|
32
|
+
//# sourceMappingURL=fsharp.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/fsharp.ts"],"names":[],"mappings":";AAEO,IAAM,MAAA,GAAS;AAAA,EACpB,IAAA,EAAM,QAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,MAAA,EAAQ,QAAQ,WAAW,CAAA;AAAA,EAC/C,MAAA,EAAQ,+BAAA;AAAA,EACR,OAAA,EAAS,qDAAA;AAAA,EACT,SAAA,EAAW,CAAC,YAAA,EAAc,iBAAA,EAAmB,cAAc,WAAW,CAAA;AAAA,EACtE,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,MAAA,EAAQ,gBAAgB,CAAA;AAAA,IACnC,eAAA,EAAiB,CAAC,OAAO,CAAA;AAAA,IACzB,UAAA,EAAY,CAAC,MAAA,EAAQ,cAAA,EAAgB,OAAO,OAAO;AAAA,GACrD;AAAA,EACA,OAAA,EAAS,IAAA;AAAA,EACT,IAAA,EAAM,2CAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,IAAA;AAAA,MACN,WAAA,EACE,kGAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,IAAA;AAAA,MACN,WAAA,EACE,6FAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"fsharp.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const fsharp = {\n slug: \"fsharp\",\n publishedDate: \"2005-05-01\",\n extensions: [\".fs\", \".fsi\", \".fsx\", \".fsscript\"],\n author: \"Don Syme / Microsoft Research\",\n website: \"https://dotnet.microsoft.com/en-us/languages/fsharp\",\n paradigms: [\"functional\", \"object-oriented\", \"imperative\", \"scripting\"],\n tooling: {\n runtimes: [\".NET\", \"F# Interactive\"],\n packageManagers: [\"NuGet\"],\n ecosystems: [\".NET\", \"Data Science\", \"Web\", \"Cloud\"],\n },\n version: \"10\",\n logo: \"https://cdn.simpleicons.org/fsharp/378BBA\",\n i18n: {\n en: {\n name: \"F#\",\n description:\n \"A succinct, functional-first .NET language for robust applications, scripts, and data workflows.\",\n longDescription:\n \"F# is a functional-first programming language in the .NET ecosystem. It combines type inference, immutable data by default, pattern matching, discriminated unions, computation expressions, and interoperability with C# and other .NET languages.\\n\\nIt is used for backend services, data processing, scripting, domain modeling, financial systems, cloud applications, and teams that want concise code with strong static typing and access to the broader .NET platform.\",\n },\n es: {\n name: \"F#\",\n description:\n \"Un lenguaje .NET conciso y funcional para aplicaciones robustas, scripts y flujos de datos.\",\n longDescription:\n \"F# es un lenguaje de programacion funcional-first dentro del ecosistema .NET. Combina inferencia de tipos, datos inmutables por defecto, pattern matching, uniones discriminadas, computation expressions e interoperabilidad con C# y otros lenguajes .NET.\\n\\nSe usa en servicios backend, procesamiento de datos, scripting, modelado de dominios, sistemas financieros, aplicaciones cloud y equipos que quieren codigo conciso con tipado estatico fuerte y acceso a la plataforma .NET.\",\n },\n },\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/julia.ts
|
|
4
|
+
var julia = {
|
|
5
|
+
slug: "julia",
|
|
6
|
+
publishedDate: "2012-02-14",
|
|
7
|
+
extensions: [".jl"],
|
|
8
|
+
author: "Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman",
|
|
9
|
+
website: "https://julialang.org",
|
|
10
|
+
paradigms: ["multiple-dispatch", "functional", "imperative", "metaprogramming"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["Julia"],
|
|
13
|
+
packageManagers: ["Pkg"],
|
|
14
|
+
ecosystems: ["Scientific Computing", "Data Science", "Machine Learning", "HPC"]
|
|
15
|
+
},
|
|
16
|
+
version: "1.12.6",
|
|
17
|
+
logo: "https://cdn.simpleicons.org/julia/9558B2",
|
|
18
|
+
i18n: {
|
|
19
|
+
en: {
|
|
20
|
+
name: "Julia",
|
|
21
|
+
description: "A high-performance language for technical computing, data science, and numerical work.",
|
|
22
|
+
longDescription: "Julia is a high-level, high-performance programming language designed for numerical and scientific computing. It combines dynamic interactivity with just-in-time compilation, multiple dispatch, metaprogramming, and a package ecosystem focused on technical work.\n\nIt is widely used for scientific computing, data analysis, machine learning, optimization, simulations, high-performance computing, and workflows where teams want expressive code that can run close to native speed."
|
|
23
|
+
},
|
|
24
|
+
es: {
|
|
25
|
+
name: "Julia",
|
|
26
|
+
description: "Un lenguaje de alto rendimiento para computacion tecnica, ciencia de datos y trabajo numerico.",
|
|
27
|
+
longDescription: "Julia es un lenguaje de programacion de alto nivel y alto rendimiento disenado para computacion numerica y cientifica. Combina interactividad dinamica con compilacion just-in-time, multiple dispatch, metaprogramacion y un ecosistema de paquetes enfocado en trabajo tecnico.\n\nSe usa ampliamente en computacion cientifica, analisis de datos, machine learning, optimizacion, simulaciones, computacion de alto rendimiento y flujos donde los equipos quieren codigo expresivo que pueda ejecutarse cerca de velocidad nativa."
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
exports.julia = julia;
|
|
33
|
+
//# sourceMappingURL=julia.cjs.map
|
|
34
|
+
//# sourceMappingURL=julia.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/julia.ts"],"names":[],"mappings":";;;AAEO,IAAM,KAAA,GAAQ;AAAA,EACnB,IAAA,EAAM,OAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAK,CAAA;AAAA,EAClB,MAAA,EAAQ,8DAAA;AAAA,EACR,OAAA,EAAS,uBAAA;AAAA,EACT,SAAA,EAAW,CAAC,mBAAA,EAAqB,YAAA,EAAc,cAAc,iBAAiB,CAAA;AAAA,EAC9E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,OAAO,CAAA;AAAA,IAClB,eAAA,EAAiB,CAAC,KAAK,CAAA;AAAA,IACvB,UAAA,EAAY,CAAC,sBAAA,EAAwB,cAAA,EAAgB,oBAAoB,KAAK;AAAA,GAChF;AAAA,EACA,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM,0CAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,OAAA;AAAA,MACN,WAAA,EACE,wFAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,OAAA;AAAA,MACN,WAAA,EACE,gGAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"julia.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const julia = {\n slug: \"julia\",\n publishedDate: \"2012-02-14\",\n extensions: [\".jl\"],\n author: \"Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman\",\n website: \"https://julialang.org\",\n paradigms: [\"multiple-dispatch\", \"functional\", \"imperative\", \"metaprogramming\"],\n tooling: {\n runtimes: [\"Julia\"],\n packageManagers: [\"Pkg\"],\n ecosystems: [\"Scientific Computing\", \"Data Science\", \"Machine Learning\", \"HPC\"],\n },\n version: \"1.12.6\",\n logo: \"https://cdn.simpleicons.org/julia/9558B2\",\n i18n: {\n en: {\n name: \"Julia\",\n description:\n \"A high-performance language for technical computing, data science, and numerical work.\",\n longDescription:\n \"Julia is a high-level, high-performance programming language designed for numerical and scientific computing. It combines dynamic interactivity with just-in-time compilation, multiple dispatch, metaprogramming, and a package ecosystem focused on technical work.\\n\\nIt is widely used for scientific computing, data analysis, machine learning, optimization, simulations, high-performance computing, and workflows where teams want expressive code that can run close to native speed.\",\n },\n es: {\n name: \"Julia\",\n description:\n \"Un lenguaje de alto rendimiento para computacion tecnica, ciencia de datos y trabajo numerico.\",\n longDescription:\n \"Julia es un lenguaje de programacion de alto nivel y alto rendimiento disenado para computacion numerica y cientifica. Combina interactividad dinamica con compilacion just-in-time, multiple dispatch, metaprogramacion y un ecosistema de paquetes enfocado en trabajo tecnico.\\n\\nSe usa ampliamente en computacion cientifica, analisis de datos, machine learning, optimizacion, simulaciones, computacion de alto rendimiento y flujos donde los equipos quieren codigo expresivo que pueda ejecutarse cerca de velocidad nativa.\",\n },\n },\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const julia: {
|
|
2
|
+
slug: string;
|
|
3
|
+
publishedDate: string;
|
|
4
|
+
extensions: string[];
|
|
5
|
+
author: string;
|
|
6
|
+
website: string;
|
|
7
|
+
paradigms: string[];
|
|
8
|
+
tooling: {
|
|
9
|
+
runtimes: string[];
|
|
10
|
+
packageManagers: string[];
|
|
11
|
+
ecosystems: string[];
|
|
12
|
+
};
|
|
13
|
+
version: string;
|
|
14
|
+
logo: string;
|
|
15
|
+
i18n: {
|
|
16
|
+
en: {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
longDescription: string;
|
|
20
|
+
};
|
|
21
|
+
es: {
|
|
22
|
+
name: string;
|
|
23
|
+
description: string;
|
|
24
|
+
longDescription: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export { julia };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const julia: {
|
|
2
|
+
slug: string;
|
|
3
|
+
publishedDate: string;
|
|
4
|
+
extensions: string[];
|
|
5
|
+
author: string;
|
|
6
|
+
website: string;
|
|
7
|
+
paradigms: string[];
|
|
8
|
+
tooling: {
|
|
9
|
+
runtimes: string[];
|
|
10
|
+
packageManagers: string[];
|
|
11
|
+
ecosystems: string[];
|
|
12
|
+
};
|
|
13
|
+
version: string;
|
|
14
|
+
logo: string;
|
|
15
|
+
i18n: {
|
|
16
|
+
en: {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
longDescription: string;
|
|
20
|
+
};
|
|
21
|
+
es: {
|
|
22
|
+
name: string;
|
|
23
|
+
description: string;
|
|
24
|
+
longDescription: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export { julia };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// src/languages/julia.ts
|
|
2
|
+
var julia = {
|
|
3
|
+
slug: "julia",
|
|
4
|
+
publishedDate: "2012-02-14",
|
|
5
|
+
extensions: [".jl"],
|
|
6
|
+
author: "Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman",
|
|
7
|
+
website: "https://julialang.org",
|
|
8
|
+
paradigms: ["multiple-dispatch", "functional", "imperative", "metaprogramming"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["Julia"],
|
|
11
|
+
packageManagers: ["Pkg"],
|
|
12
|
+
ecosystems: ["Scientific Computing", "Data Science", "Machine Learning", "HPC"]
|
|
13
|
+
},
|
|
14
|
+
version: "1.12.6",
|
|
15
|
+
logo: "https://cdn.simpleicons.org/julia/9558B2",
|
|
16
|
+
i18n: {
|
|
17
|
+
en: {
|
|
18
|
+
name: "Julia",
|
|
19
|
+
description: "A high-performance language for technical computing, data science, and numerical work.",
|
|
20
|
+
longDescription: "Julia is a high-level, high-performance programming language designed for numerical and scientific computing. It combines dynamic interactivity with just-in-time compilation, multiple dispatch, metaprogramming, and a package ecosystem focused on technical work.\n\nIt is widely used for scientific computing, data analysis, machine learning, optimization, simulations, high-performance computing, and workflows where teams want expressive code that can run close to native speed."
|
|
21
|
+
},
|
|
22
|
+
es: {
|
|
23
|
+
name: "Julia",
|
|
24
|
+
description: "Un lenguaje de alto rendimiento para computacion tecnica, ciencia de datos y trabajo numerico.",
|
|
25
|
+
longDescription: "Julia es un lenguaje de programacion de alto nivel y alto rendimiento disenado para computacion numerica y cientifica. Combina interactividad dinamica con compilacion just-in-time, multiple dispatch, metaprogramacion y un ecosistema de paquetes enfocado en trabajo tecnico.\n\nSe usa ampliamente en computacion cientifica, analisis de datos, machine learning, optimizacion, simulaciones, computacion de alto rendimiento y flujos donde los equipos quieren codigo expresivo que pueda ejecutarse cerca de velocidad nativa."
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { julia };
|
|
31
|
+
//# sourceMappingURL=julia.js.map
|
|
32
|
+
//# sourceMappingURL=julia.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/julia.ts"],"names":[],"mappings":";AAEO,IAAM,KAAA,GAAQ;AAAA,EACnB,IAAA,EAAM,OAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAK,CAAA;AAAA,EAClB,MAAA,EAAQ,8DAAA;AAAA,EACR,OAAA,EAAS,uBAAA;AAAA,EACT,SAAA,EAAW,CAAC,mBAAA,EAAqB,YAAA,EAAc,cAAc,iBAAiB,CAAA;AAAA,EAC9E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,OAAO,CAAA;AAAA,IAClB,eAAA,EAAiB,CAAC,KAAK,CAAA;AAAA,IACvB,UAAA,EAAY,CAAC,sBAAA,EAAwB,cAAA,EAAgB,oBAAoB,KAAK;AAAA,GAChF;AAAA,EACA,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM,0CAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,OAAA;AAAA,MACN,WAAA,EACE,wFAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,OAAA;AAAA,MACN,WAAA,EACE,gGAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"julia.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const julia = {\n slug: \"julia\",\n publishedDate: \"2012-02-14\",\n extensions: [\".jl\"],\n author: \"Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman\",\n website: \"https://julialang.org\",\n paradigms: [\"multiple-dispatch\", \"functional\", \"imperative\", \"metaprogramming\"],\n tooling: {\n runtimes: [\"Julia\"],\n packageManagers: [\"Pkg\"],\n ecosystems: [\"Scientific Computing\", \"Data Science\", \"Machine Learning\", \"HPC\"],\n },\n version: \"1.12.6\",\n logo: \"https://cdn.simpleicons.org/julia/9558B2\",\n i18n: {\n en: {\n name: \"Julia\",\n description:\n \"A high-performance language for technical computing, data science, and numerical work.\",\n longDescription:\n \"Julia is a high-level, high-performance programming language designed for numerical and scientific computing. It combines dynamic interactivity with just-in-time compilation, multiple dispatch, metaprogramming, and a package ecosystem focused on technical work.\\n\\nIt is widely used for scientific computing, data analysis, machine learning, optimization, simulations, high-performance computing, and workflows where teams want expressive code that can run close to native speed.\",\n },\n es: {\n name: \"Julia\",\n description:\n \"Un lenguaje de alto rendimiento para computacion tecnica, ciencia de datos y trabajo numerico.\",\n longDescription:\n \"Julia es un lenguaje de programacion de alto nivel y alto rendimiento disenado para computacion numerica y cientifica. Combina interactividad dinamica con compilacion just-in-time, multiple dispatch, metaprogramacion y un ecosistema de paquetes enfocado en trabajo tecnico.\\n\\nSe usa ampliamente en computacion cientifica, analisis de datos, machine learning, optimizacion, simulaciones, computacion de alto rendimiento y flujos donde los equipos quieren codigo expresivo que pueda ejecutarse cerca de velocidad nativa.\",\n },\n },\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/matlab.ts
|
|
4
|
+
var matlab = {
|
|
5
|
+
slug: "matlab",
|
|
6
|
+
publishedDate: "1984-01-01",
|
|
7
|
+
extensions: [".m", ".mlx"],
|
|
8
|
+
author: "MathWorks",
|
|
9
|
+
website: "https://www.mathworks.com/products/matlab.html",
|
|
10
|
+
paradigms: ["array-oriented", "imperative", "object-oriented", "procedural"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["MATLAB"],
|
|
13
|
+
packageManagers: ["MATLAB Add-On Explorer"],
|
|
14
|
+
ecosystems: ["Scientific Computing", "Numerical Computing", "Engineering", "Simulink"]
|
|
15
|
+
},
|
|
16
|
+
version: "R2026a",
|
|
17
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Matlab_Logo.png",
|
|
18
|
+
i18n: {
|
|
19
|
+
en: {
|
|
20
|
+
name: "MATLAB",
|
|
21
|
+
description: "A matrix-oriented language and environment for engineering, science, data, and simulation.",
|
|
22
|
+
longDescription: "MATLAB is a programming language and numerical computing environment from MathWorks. It is centered on matrix and array operations, interactive analysis, visualization, algorithm development, and workflows for engineers and scientists.\n\nIt is commonly used for signal processing, control systems, robotics, data analysis, optimization, simulation, education, and model-based design alongside Simulink and MathWorks toolboxes."
|
|
23
|
+
},
|
|
24
|
+
es: {
|
|
25
|
+
name: "MATLAB",
|
|
26
|
+
description: "Un lenguaje y entorno orientado a matrices para ingenieria, ciencia, datos y simulacion.",
|
|
27
|
+
longDescription: "MATLAB es un lenguaje de programacion y entorno de computacion numerica de MathWorks. Esta centrado en operaciones con matrices y arreglos, analisis interactivo, visualizacion, desarrollo de algoritmos y flujos de trabajo para ingenieros y cientificos.\n\nSe usa comunmente en procesamiento de senales, sistemas de control, robotica, analisis de datos, optimizacion, simulacion, educacion y diseno basado en modelos junto con Simulink y las toolboxes de MathWorks."
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
exports.matlab = matlab;
|
|
33
|
+
//# sourceMappingURL=matlab.cjs.map
|
|
34
|
+
//# sourceMappingURL=matlab.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/matlab.ts"],"names":[],"mappings":";;;AAEO,IAAM,MAAA,GAAS;AAAA,EACpB,IAAA,EAAM,QAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,IAAA,EAAM,MAAM,CAAA;AAAA,EACzB,MAAA,EAAQ,WAAA;AAAA,EACR,OAAA,EAAS,gDAAA;AAAA,EACT,SAAA,EAAW,CAAC,gBAAA,EAAkB,YAAA,EAAc,mBAAmB,YAAY,CAAA;AAAA,EAC3E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,QAAQ,CAAA;AAAA,IACnB,eAAA,EAAiB,CAAC,wBAAwB,CAAA;AAAA,IAC1C,UAAA,EAAY,CAAC,sBAAA,EAAwB,qBAAA,EAAuB,eAAe,UAAU;AAAA,GACvF;AAAA,EACA,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM,qEAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,QAAA;AAAA,MACN,WAAA,EACE,4FAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,QAAA;AAAA,MACN,WAAA,EACE,0FAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"matlab.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const matlab = {\n slug: \"matlab\",\n publishedDate: \"1984-01-01\",\n extensions: [\".m\", \".mlx\"],\n author: \"MathWorks\",\n website: \"https://www.mathworks.com/products/matlab.html\",\n paradigms: [\"array-oriented\", \"imperative\", \"object-oriented\", \"procedural\"],\n tooling: {\n runtimes: [\"MATLAB\"],\n packageManagers: [\"MATLAB Add-On Explorer\"],\n ecosystems: [\"Scientific Computing\", \"Numerical Computing\", \"Engineering\", \"Simulink\"],\n },\n version: \"R2026a\",\n logo: \"https://commons.wikimedia.org/wiki/Special:FilePath/Matlab_Logo.png\",\n i18n: {\n en: {\n name: \"MATLAB\",\n description:\n \"A matrix-oriented language and environment for engineering, science, data, and simulation.\",\n longDescription:\n \"MATLAB is a programming language and numerical computing environment from MathWorks. It is centered on matrix and array operations, interactive analysis, visualization, algorithm development, and workflows for engineers and scientists.\\n\\nIt is commonly used for signal processing, control systems, robotics, data analysis, optimization, simulation, education, and model-based design alongside Simulink and MathWorks toolboxes.\",\n },\n es: {\n name: \"MATLAB\",\n description:\n \"Un lenguaje y entorno orientado a matrices para ingenieria, ciencia, datos y simulacion.\",\n longDescription:\n \"MATLAB es un lenguaje de programacion y entorno de computacion numerica de MathWorks. Esta centrado en operaciones con matrices y arreglos, analisis interactivo, visualizacion, desarrollo de algoritmos y flujos de trabajo para ingenieros y cientificos.\\n\\nSe usa comunmente en procesamiento de senales, sistemas de control, robotica, analisis de datos, optimizacion, simulacion, educacion y diseno basado en modelos junto con Simulink y las toolboxes de MathWorks.\",\n },\n },\n} satisfies Language;\n"]}
|