code-languages 1.10.0 → 1.12.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 +60 -5
- package/dist/api.cjs +346 -3
- package/dist/api.cjs.map +1 -1
- package/dist/api.d.cts +214 -0
- package/dist/api.d.ts +214 -0
- package/dist/api.js +346 -3
- package/dist/api.js.map +1 -1
- package/dist/detect.cjs +241 -3
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +241 -3
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +354 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +214 -0
- package/dist/index.d.ts +214 -0
- package/dist/index.js +355 -4
- package/dist/index.js.map +1 -1
- package/dist/languages/actionscript.cjs +33 -0
- package/dist/languages/actionscript.cjs.map +1 -0
- package/dist/languages/actionscript.d.cts +28 -0
- package/dist/languages/actionscript.d.ts +28 -0
- package/dist/languages/actionscript.js +31 -0
- package/dist/languages/actionscript.js.map +1 -0
- package/dist/languages/astro.cjs +1 -1
- package/dist/languages/astro.cjs.map +1 -1
- package/dist/languages/astro.js +1 -1
- package/dist/languages/astro.js.map +1 -1
- package/dist/languages/elm.cjs +34 -0
- package/dist/languages/elm.cjs.map +1 -0
- package/dist/languages/elm.d.cts +29 -0
- package/dist/languages/elm.d.ts +29 -0
- package/dist/languages/elm.js +32 -0
- package/dist/languages/elm.js.map +1 -0
- package/dist/languages/erlang.cjs +34 -0
- package/dist/languages/erlang.cjs.map +1 -0
- package/dist/languages/erlang.d.cts +29 -0
- package/dist/languages/erlang.d.ts +29 -0
- package/dist/languages/erlang.js +32 -0
- package/dist/languages/erlang.js.map +1 -0
- package/dist/languages/fortran.cjs +34 -0
- package/dist/languages/fortran.cjs.map +1 -0
- package/dist/languages/fortran.d.cts +29 -0
- package/dist/languages/fortran.d.ts +29 -0
- package/dist/languages/fortran.js +32 -0
- package/dist/languages/fortran.js.map +1 -0
- package/dist/languages/glsl.cjs +34 -0
- package/dist/languages/glsl.cjs.map +1 -0
- package/dist/languages/glsl.d.cts +29 -0
- package/dist/languages/glsl.d.ts +29 -0
- package/dist/languages/glsl.js +32 -0
- package/dist/languages/glsl.js.map +1 -0
- package/dist/languages/nix.cjs +34 -0
- package/dist/languages/nix.cjs.map +1 -0
- package/dist/languages/nix.d.cts +29 -0
- package/dist/languages/nix.d.ts +29 -0
- package/dist/languages/nix.js +32 -0
- package/dist/languages/nix.js.map +1 -0
- package/dist/languages/perl.cjs +34 -0
- package/dist/languages/perl.cjs.map +1 -0
- package/dist/languages/perl.d.cts +29 -0
- package/dist/languages/perl.d.ts +29 -0
- package/dist/languages/perl.js +32 -0
- package/dist/languages/perl.js.map +1 -0
- package/dist/languages/pug.cjs +1 -1
- package/dist/languages/pug.cjs.map +1 -1
- package/dist/languages/pug.js +1 -1
- package/dist/languages/pug.js.map +1 -1
- package/dist/languages/svelte.cjs +1 -1
- package/dist/languages/svelte.cjs.map +1 -1
- package/dist/languages/svelte.js +1 -1
- package/dist/languages/svelte.js.map +1 -1
- package/dist/languages/svn.cjs +33 -0
- package/dist/languages/svn.cjs.map +1 -0
- package/dist/languages/svn.d.cts +28 -0
- package/dist/languages/svn.d.ts +28 -0
- package/dist/languages/svn.js +31 -0
- package/dist/languages/svn.js.map +1 -0
- package/package.json +43 -2
package/dist/api.cjs
CHANGED
|
@@ -47,6 +47,43 @@ var init_abap = __esm({
|
|
|
47
47
|
}
|
|
48
48
|
});
|
|
49
49
|
|
|
50
|
+
// src/languages/actionscript.ts
|
|
51
|
+
var actionscript_exports = {};
|
|
52
|
+
__export(actionscript_exports, {
|
|
53
|
+
actionscript: () => actionscript
|
|
54
|
+
});
|
|
55
|
+
var actionscript;
|
|
56
|
+
var init_actionscript = __esm({
|
|
57
|
+
"src/languages/actionscript.ts"() {
|
|
58
|
+
actionscript = {
|
|
59
|
+
slug: "actionscript",
|
|
60
|
+
publishedDate: "1998-01-01",
|
|
61
|
+
extensions: [".as"],
|
|
62
|
+
author: "Gary Grossman / Macromedia",
|
|
63
|
+
website: "https://airsdk.dev/docs/development/actionscript-3.0",
|
|
64
|
+
paradigms: ["event-driven", "imperative", "object-oriented", "scripting"],
|
|
65
|
+
tooling: {
|
|
66
|
+
runtimes: ["Adobe Flash Player", "Adobe AIR", "Apache Royale"],
|
|
67
|
+
ecosystems: ["Flash", "AIR", "Flex", "Legacy Web"]
|
|
68
|
+
},
|
|
69
|
+
version: "3.0",
|
|
70
|
+
logo: "https://icons.iconarchive.com/icons/fatcow/farm-fresh/32/page-white-actionscript-icon.png",
|
|
71
|
+
i18n: {
|
|
72
|
+
en: {
|
|
73
|
+
name: "ActionScript",
|
|
74
|
+
description: "An ECMAScript-based language used for Flash, AIR, Flex, and interactive media applications.",
|
|
75
|
+
longDescription: "ActionScript is an ECMAScript-based scripting language created for interactive content, animation, rich internet applications, and application logic in the Flash platform. ActionScript 3.0 introduced a stronger type system, classes, packages, events, namespaces, and a virtual machine designed for larger applications.\n\nIt is mostly relevant today for maintaining legacy Flash, AIR, and Flex projects, migrating older interactive content, and understanding codebases built around Adobe runtime technologies."
|
|
76
|
+
},
|
|
77
|
+
es: {
|
|
78
|
+
name: "ActionScript",
|
|
79
|
+
description: "Un lenguaje basado en ECMAScript usado para Flash, AIR, Flex y aplicaciones multimedia interactivas.",
|
|
80
|
+
longDescription: "ActionScript es un lenguaje de scripting basado en ECMAScript creado para contenido interactivo, animacion, aplicaciones rich internet y logica de aplicaciones en la plataforma Flash. ActionScript 3.0 introdujo un sistema de tipos mas fuerte, clases, paquetes, eventos, namespaces y una maquina virtual disenada para aplicaciones mas grandes.\n\nHoy es relevante principalmente para mantener proyectos legacy de Flash, AIR y Flex, migrar contenido interactivo antiguo y entender codebases construidas alrededor de tecnologias runtime de Adobe."
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
});
|
|
86
|
+
|
|
50
87
|
// src/languages/asp.ts
|
|
51
88
|
var asp_exports = {};
|
|
52
89
|
__export(asp_exports, {
|
|
@@ -143,7 +180,7 @@ var init_astro = __esm({
|
|
|
143
180
|
packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
|
|
144
181
|
ecosystems: ["Web", "Static Sites", "Content"]
|
|
145
182
|
},
|
|
146
|
-
version: "6.3.
|
|
183
|
+
version: "6.3.3",
|
|
147
184
|
logo: "https://astro.build/assets/press/astro-icon-light.svg",
|
|
148
185
|
i18n: {
|
|
149
186
|
en: {
|
|
@@ -646,6 +683,120 @@ var init_dockerfile = __esm({
|
|
|
646
683
|
}
|
|
647
684
|
});
|
|
648
685
|
|
|
686
|
+
// src/languages/elm.ts
|
|
687
|
+
var elm_exports = {};
|
|
688
|
+
__export(elm_exports, {
|
|
689
|
+
elm: () => elm
|
|
690
|
+
});
|
|
691
|
+
var elm;
|
|
692
|
+
var init_elm = __esm({
|
|
693
|
+
"src/languages/elm.ts"() {
|
|
694
|
+
elm = {
|
|
695
|
+
slug: "elm",
|
|
696
|
+
publishedDate: "2012-03-30",
|
|
697
|
+
extensions: [".elm"],
|
|
698
|
+
author: "Evan Czaplicki",
|
|
699
|
+
website: "https://elm-lang.org",
|
|
700
|
+
paradigms: ["functional", "declarative", "reactive", "statically typed"],
|
|
701
|
+
tooling: {
|
|
702
|
+
runtimes: ["Browser", "JavaScript"],
|
|
703
|
+
packageManagers: ["elm", "npm", "pnpm", "Yarn"],
|
|
704
|
+
ecosystems: ["Web", "Frontend", "Functional Programming"]
|
|
705
|
+
},
|
|
706
|
+
version: "0.19.1",
|
|
707
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/f/f3/Elm_logo.svg",
|
|
708
|
+
i18n: {
|
|
709
|
+
en: {
|
|
710
|
+
name: "Elm",
|
|
711
|
+
description: "A functional language for reliable web applications that compiles to JavaScript.",
|
|
712
|
+
longDescription: "Elm is a functional programming language designed for building browser applications with strong static types, immutable data, pure functions, pattern matching, and a friendly compiler that emphasizes clear error messages.\n\nIt is used for frontend applications, interactive web interfaces, learning functional programming, and projects that want predictable state updates through The Elm Architecture while compiling to JavaScript."
|
|
713
|
+
},
|
|
714
|
+
es: {
|
|
715
|
+
name: "Elm",
|
|
716
|
+
description: "Un lenguaje funcional para aplicaciones web confiables que compila a JavaScript.",
|
|
717
|
+
longDescription: "Elm es un lenguaje de programacion funcional disenado para crear aplicaciones de navegador con tipado estatico fuerte, datos inmutables, funciones puras, pattern matching y un compilador amigable que prioriza mensajes de error claros.\n\nSe usa en aplicaciones frontend, interfaces web interactivas, aprendizaje de programacion funcional y proyectos que buscan actualizaciones de estado predecibles mediante The Elm Architecture mientras compilan a JavaScript."
|
|
718
|
+
}
|
|
719
|
+
}
|
|
720
|
+
};
|
|
721
|
+
}
|
|
722
|
+
});
|
|
723
|
+
|
|
724
|
+
// src/languages/erlang.ts
|
|
725
|
+
var erlang_exports = {};
|
|
726
|
+
__export(erlang_exports, {
|
|
727
|
+
erlang: () => erlang
|
|
728
|
+
});
|
|
729
|
+
var erlang;
|
|
730
|
+
var init_erlang = __esm({
|
|
731
|
+
"src/languages/erlang.ts"() {
|
|
732
|
+
erlang = {
|
|
733
|
+
slug: "erlang",
|
|
734
|
+
publishedDate: "1986-01-01",
|
|
735
|
+
extensions: [".erl", ".hrl", ".app.src", ".escript", ".xrl", ".yrl", "rebar.config"],
|
|
736
|
+
author: "Joe Armstrong, Robert Virding, Mike Williams / Ericsson",
|
|
737
|
+
website: "https://www.erlang.org",
|
|
738
|
+
paradigms: ["concurrent", "distributed", "functional", "message-passing"],
|
|
739
|
+
tooling: {
|
|
740
|
+
runtimes: ["BEAM", "Erlang/OTP"],
|
|
741
|
+
packageManagers: ["rebar3", "Hex"],
|
|
742
|
+
ecosystems: ["BEAM", "Telecom", "Distributed Systems", "Fault-tolerant Systems"]
|
|
743
|
+
},
|
|
744
|
+
version: "OTP 29.0",
|
|
745
|
+
logo: "https://cdn.simpleicons.org/erlang/A90533",
|
|
746
|
+
i18n: {
|
|
747
|
+
en: {
|
|
748
|
+
name: "Erlang",
|
|
749
|
+
description: "A concurrent functional language for fault-tolerant, distributed, and highly available systems.",
|
|
750
|
+
longDescription: "Erlang is a functional programming language and runtime system designed for concurrent, distributed, fault-tolerant applications. Erlang/OTP includes the BEAM virtual machine, lightweight processes, message passing, supervisors, applications, releases, and libraries for building resilient systems.\n\nIt is widely used in telecom platforms, messaging systems, databases, real-time services, network infrastructure, IoT, and systems where uptime, hot code upgrades, and fault isolation are central requirements."
|
|
751
|
+
},
|
|
752
|
+
es: {
|
|
753
|
+
name: "Erlang",
|
|
754
|
+
description: "Un lenguaje funcional concurrente para sistemas tolerantes a fallos, distribuidos y altamente disponibles.",
|
|
755
|
+
longDescription: "Erlang es un lenguaje de programacion funcional y sistema runtime disenado para aplicaciones concurrentes, distribuidas y tolerantes a fallos. Erlang/OTP incluye la maquina virtual BEAM, procesos ligeros, paso de mensajes, supervisores, aplicaciones, releases y librerias para construir sistemas resilientes.\n\nSe usa ampliamente en plataformas de telecomunicaciones, sistemas de mensajeria, bases de datos, servicios en tiempo real, infraestructura de red, IoT y sistemas donde uptime, hot code upgrades y aislamiento de fallos son requisitos centrales."
|
|
756
|
+
}
|
|
757
|
+
}
|
|
758
|
+
};
|
|
759
|
+
}
|
|
760
|
+
});
|
|
761
|
+
|
|
762
|
+
// src/languages/fortran.ts
|
|
763
|
+
var fortran_exports = {};
|
|
764
|
+
__export(fortran_exports, {
|
|
765
|
+
fortran: () => fortran
|
|
766
|
+
});
|
|
767
|
+
var fortran;
|
|
768
|
+
var init_fortran = __esm({
|
|
769
|
+
"src/languages/fortran.ts"() {
|
|
770
|
+
fortran = {
|
|
771
|
+
slug: "fortran",
|
|
772
|
+
publishedDate: "1957-10-15",
|
|
773
|
+
extensions: [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"],
|
|
774
|
+
author: "John Backus / IBM",
|
|
775
|
+
website: "https://fortran-lang.org",
|
|
776
|
+
paradigms: ["array", "imperative", "procedural", "structured"],
|
|
777
|
+
tooling: {
|
|
778
|
+
runtimes: ["Native", "HPC clusters"],
|
|
779
|
+
packageManagers: ["fpm", "Spack"],
|
|
780
|
+
ecosystems: ["Scientific Computing", "HPC", "Numerical Computing", "Engineering"]
|
|
781
|
+
},
|
|
782
|
+
version: "Fortran 2023",
|
|
783
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/b/b8/Fortran_logo.svg",
|
|
784
|
+
i18n: {
|
|
785
|
+
en: {
|
|
786
|
+
name: "Fortran",
|
|
787
|
+
description: "A compiled language for numerical computing, scientific software, and high-performance systems.",
|
|
788
|
+
longDescription: "Fortran is one of the earliest high-level programming languages and remains important for numerical computing, scientific simulation, engineering software, and high-performance computing. Modern Fortran includes modules, array programming, generic interfaces, derived types, coarrays, and interoperability with C.\n\nIt is widely used in climate models, physics simulations, computational chemistry, aerospace, numerical libraries, weather forecasting, and long-lived scientific codebases where performance and stable language standards matter."
|
|
789
|
+
},
|
|
790
|
+
es: {
|
|
791
|
+
name: "Fortran",
|
|
792
|
+
description: "Un lenguaje compilado para computacion numerica, software cientifico y sistemas de alto rendimiento.",
|
|
793
|
+
longDescription: "Fortran es uno de los primeros lenguajes de programacion de alto nivel y sigue siendo importante para computacion numerica, simulacion cientifica, software de ingenieria y high-performance computing. Fortran moderno incluye modulos, programacion con arrays, interfaces genericas, tipos derivados, coarrays e interoperabilidad con C.\n\nSe usa ampliamente en modelos climaticos, simulaciones fisicas, quimica computacional, aeroespacial, librerias numericas, prediccion meteorologica y codebases cientificas de larga vida donde importan el rendimiento y estandares estables del lenguaje."
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
};
|
|
797
|
+
}
|
|
798
|
+
});
|
|
799
|
+
|
|
649
800
|
// src/languages/fsharp.ts
|
|
650
801
|
var fsharp_exports = {};
|
|
651
802
|
__export(fsharp_exports, {
|
|
@@ -721,6 +872,44 @@ var init_git = __esm({
|
|
|
721
872
|
}
|
|
722
873
|
});
|
|
723
874
|
|
|
875
|
+
// src/languages/glsl.ts
|
|
876
|
+
var glsl_exports = {};
|
|
877
|
+
__export(glsl_exports, {
|
|
878
|
+
glsl: () => glsl
|
|
879
|
+
});
|
|
880
|
+
var glsl;
|
|
881
|
+
var init_glsl = __esm({
|
|
882
|
+
"src/languages/glsl.ts"() {
|
|
883
|
+
glsl = {
|
|
884
|
+
slug: "glsl",
|
|
885
|
+
publishedDate: "2004-04-30",
|
|
886
|
+
extensions: [".glsl", ".vert", ".frag", ".geom", ".tesc", ".tese", ".comp", ".vs", ".fs"],
|
|
887
|
+
author: "OpenGL ARB / Khronos Group",
|
|
888
|
+
website: "https://www.khronos.org/opengl/wiki/Core_Language_(GLSL)",
|
|
889
|
+
paradigms: ["data-parallel", "graphics", "procedural", "shader"],
|
|
890
|
+
tooling: {
|
|
891
|
+
runtimes: ["OpenGL", "OpenGL ES", "WebGL", "Vulkan via SPIR-V"],
|
|
892
|
+
packageManagers: ["npm", "vcpkg", "Conan"],
|
|
893
|
+
ecosystems: ["Graphics", "Game Development", "WebGL", "Creative Coding"]
|
|
894
|
+
},
|
|
895
|
+
version: "4.60",
|
|
896
|
+
logo: "https://cdn.simpleicons.org/opengl/5586A4",
|
|
897
|
+
i18n: {
|
|
898
|
+
en: {
|
|
899
|
+
name: "GLSL",
|
|
900
|
+
description: "The OpenGL Shading Language for writing programmable GPU shader stages.",
|
|
901
|
+
longDescription: "GLSL is the OpenGL Shading Language used to write GPU programs for vertex, fragment, geometry, tessellation, and compute shader stages. It provides C-like syntax, vector and matrix types, texture sampling, uniforms, varyings, and built-in functions for graphics pipelines.\n\nIt is used in game engines, visualization tools, WebGL applications, creative coding, rendering systems, simulations, and real-time graphics projects that need programmable GPU behavior."
|
|
902
|
+
},
|
|
903
|
+
es: {
|
|
904
|
+
name: "GLSL",
|
|
905
|
+
description: "El lenguaje de shading de OpenGL para escribir etapas programables de GPU.",
|
|
906
|
+
longDescription: "GLSL es el OpenGL Shading Language usado para escribir programas GPU en etapas vertex, fragment, geometry, tessellation y compute shader. Ofrece sintaxis similar a C, tipos vectoriales y matriciales, muestreo de texturas, uniforms, varyings y funciones integradas para pipelines graficos.\n\nSe usa en motores de juegos, herramientas de visualizacion, aplicaciones WebGL, creative coding, sistemas de rendering, simulaciones y proyectos de graficos en tiempo real que necesitan comportamiento programable en GPU."
|
|
907
|
+
}
|
|
908
|
+
}
|
|
909
|
+
};
|
|
910
|
+
}
|
|
911
|
+
});
|
|
912
|
+
|
|
724
913
|
// src/languages/go.ts
|
|
725
914
|
var go_exports = {};
|
|
726
915
|
__export(go_exports, {
|
|
@@ -1461,6 +1650,44 @@ var init_nginx = __esm({
|
|
|
1461
1650
|
}
|
|
1462
1651
|
});
|
|
1463
1652
|
|
|
1653
|
+
// src/languages/nix.ts
|
|
1654
|
+
var nix_exports = {};
|
|
1655
|
+
__export(nix_exports, {
|
|
1656
|
+
nix: () => nix
|
|
1657
|
+
});
|
|
1658
|
+
var nix;
|
|
1659
|
+
var init_nix = __esm({
|
|
1660
|
+
"src/languages/nix.ts"() {
|
|
1661
|
+
nix = {
|
|
1662
|
+
slug: "nix",
|
|
1663
|
+
publishedDate: "2003-06-14",
|
|
1664
|
+
extensions: [".nix"],
|
|
1665
|
+
author: "Eelco Dolstra",
|
|
1666
|
+
website: "https://nixos.org",
|
|
1667
|
+
paradigms: ["functional", "declarative", "lazy"],
|
|
1668
|
+
tooling: {
|
|
1669
|
+
runtimes: ["Nix", "NixOS"],
|
|
1670
|
+
packageManagers: ["nix", "nix flakes"],
|
|
1671
|
+
ecosystems: ["Linux", "macOS", "NixOS", "DevOps"]
|
|
1672
|
+
},
|
|
1673
|
+
version: "2.28",
|
|
1674
|
+
logo: "https://cdn.simpleicons.org/nixos/5277C3",
|
|
1675
|
+
i18n: {
|
|
1676
|
+
en: {
|
|
1677
|
+
name: "Nix",
|
|
1678
|
+
description: "A purely functional, lazy language for reproducible package management and system configuration.",
|
|
1679
|
+
longDescription: "Nix is a purely functional, lazily-evaluated expression language used by the Nix package manager and NixOS. It treats packages and system configurations as pure functions of their inputs, guaranteeing reproducible builds and atomic upgrades with no side effects.\n\nIt is used to define packages in Nixpkgs, configure NixOS systems declaratively, and manage development environments via nix-shell and nix flakes. Its lazy evaluation model allows infinite data structures and deferred computation, making it well-suited for large-scale configuration management."
|
|
1680
|
+
},
|
|
1681
|
+
es: {
|
|
1682
|
+
name: "Nix",
|
|
1683
|
+
description: "Un lenguaje funcional puro y perezoso para gestion de paquetes y configuracion de sistemas reproducibles.",
|
|
1684
|
+
longDescription: "Nix es un lenguaje de expresion puramente funcional y de evaluacion perezosa usado por el gestor de paquetes Nix y NixOS. Trata los paquetes y configuraciones de sistema como funciones puras de sus entradas, garantizando compilaciones reproducibles y actualizaciones atomicas sin efectos secundarios.\n\nSe usa para definir paquetes en Nixpkgs, configurar sistemas NixOS de forma declarativa y gestionar entornos de desarrollo con nix-shell y nix flakes. Su modelo de evaluacion perezosa permite estructuras de datos infinitas y computacion diferida, siendo ideal para gestion de configuracion a gran escala."
|
|
1685
|
+
}
|
|
1686
|
+
}
|
|
1687
|
+
};
|
|
1688
|
+
}
|
|
1689
|
+
});
|
|
1690
|
+
|
|
1464
1691
|
// src/languages/objective-c.ts
|
|
1465
1692
|
var objective_c_exports = {};
|
|
1466
1693
|
__export(objective_c_exports, {
|
|
@@ -1537,6 +1764,44 @@ var init_pascal = __esm({
|
|
|
1537
1764
|
}
|
|
1538
1765
|
});
|
|
1539
1766
|
|
|
1767
|
+
// src/languages/perl.ts
|
|
1768
|
+
var perl_exports = {};
|
|
1769
|
+
__export(perl_exports, {
|
|
1770
|
+
perl: () => perl
|
|
1771
|
+
});
|
|
1772
|
+
var perl;
|
|
1773
|
+
var init_perl = __esm({
|
|
1774
|
+
"src/languages/perl.ts"() {
|
|
1775
|
+
perl = {
|
|
1776
|
+
slug: "perl",
|
|
1777
|
+
publishedDate: "1987-12-18",
|
|
1778
|
+
extensions: [".pl", ".pm", ".pod", ".t", ".psgi"],
|
|
1779
|
+
author: "Larry Wall",
|
|
1780
|
+
website: "https://www.perl.org",
|
|
1781
|
+
paradigms: ["functional", "imperative", "object-oriented", "procedural", "scripting"],
|
|
1782
|
+
tooling: {
|
|
1783
|
+
runtimes: ["Perl interpreter", "mod_perl", "PSGI/Plack"],
|
|
1784
|
+
packageManagers: ["CPAN", "cpanm", "Carton"],
|
|
1785
|
+
ecosystems: ["Unix", "Web", "Text Processing", "System Administration", "Bioinformatics"]
|
|
1786
|
+
},
|
|
1787
|
+
version: "5.42.2",
|
|
1788
|
+
logo: "https://cdn.simpleicons.org/perl/39457E",
|
|
1789
|
+
i18n: {
|
|
1790
|
+
en: {
|
|
1791
|
+
name: "Perl",
|
|
1792
|
+
description: "A flexible scripting language for text processing, automation, web systems, and CPAN modules.",
|
|
1793
|
+
longDescription: "Perl is a high-level scripting language created by Larry Wall, known for practical text processing, regular expressions, system scripting, dynamic typing, CPAN, and a strong culture of reusable modules. Perl 5 remains the main production language in the Perl family.\n\nIt is used for Unix automation, log processing, legacy web applications, bioinformatics, data munging, release tooling, network services, and long-lived operational scripts where expressive text handling and mature libraries matter."
|
|
1794
|
+
},
|
|
1795
|
+
es: {
|
|
1796
|
+
name: "Perl",
|
|
1797
|
+
description: "Un lenguaje de scripting flexible para procesamiento de texto, automatizacion, web y modulos CPAN.",
|
|
1798
|
+
longDescription: "Perl es un lenguaje de scripting de alto nivel creado por Larry Wall, conocido por el procesamiento practico de texto, expresiones regulares, scripting de sistemas, tipado dinamico, CPAN y una cultura fuerte de modulos reutilizables. Perl 5 sigue siendo el lenguaje principal de produccion dentro de la familia Perl.\n\nSe usa en automatizacion Unix, procesamiento de logs, aplicaciones web legacy, bioinformatica, transformacion de datos, tooling de releases, servicios de red y scripts operacionales de larga vida donde importan el manejo expresivo de texto y librerias maduras."
|
|
1799
|
+
}
|
|
1800
|
+
}
|
|
1801
|
+
};
|
|
1802
|
+
}
|
|
1803
|
+
});
|
|
1804
|
+
|
|
1540
1805
|
// src/languages/php.ts
|
|
1541
1806
|
var php_exports = {};
|
|
1542
1807
|
__export(php_exports, {
|
|
@@ -1633,7 +1898,7 @@ var init_pug = __esm({
|
|
|
1633
1898
|
packageManagers: ["npm", "pnpm", "Yarn"],
|
|
1634
1899
|
ecosystems: ["Web", "Node.js"]
|
|
1635
1900
|
},
|
|
1636
|
-
version: "3.0.
|
|
1901
|
+
version: "3.0.4",
|
|
1637
1902
|
logo: "https://cdn.simpleicons.org/pug/A86454",
|
|
1638
1903
|
i18n: {
|
|
1639
1904
|
en: {
|
|
@@ -1932,7 +2197,7 @@ var init_svelte = __esm({
|
|
|
1932
2197
|
packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
|
|
1933
2198
|
ecosystems: ["Web", "SvelteKit", "Vite"]
|
|
1934
2199
|
},
|
|
1935
|
-
version: "5.55.
|
|
2200
|
+
version: "5.55.7",
|
|
1936
2201
|
logo: "https://upload.wikimedia.org/wikipedia/commons/1/1b/Svelte_Logo.svg",
|
|
1937
2202
|
i18n: {
|
|
1938
2203
|
en: {
|
|
@@ -1987,6 +2252,43 @@ var init_svg = __esm({
|
|
|
1987
2252
|
}
|
|
1988
2253
|
});
|
|
1989
2254
|
|
|
2255
|
+
// src/languages/svn.ts
|
|
2256
|
+
var svn_exports = {};
|
|
2257
|
+
__export(svn_exports, {
|
|
2258
|
+
svn: () => svn
|
|
2259
|
+
});
|
|
2260
|
+
var svn;
|
|
2261
|
+
var init_svn = __esm({
|
|
2262
|
+
"src/languages/svn.ts"() {
|
|
2263
|
+
svn = {
|
|
2264
|
+
slug: "svn",
|
|
2265
|
+
publishedDate: "2000-10-20",
|
|
2266
|
+
extensions: [".svn", "svnserve.conf"],
|
|
2267
|
+
author: "CollabNet / Apache Software Foundation",
|
|
2268
|
+
website: "https://subversion.apache.org",
|
|
2269
|
+
paradigms: ["configuration", "version-control", "centralized-version-control"],
|
|
2270
|
+
tooling: {
|
|
2271
|
+
runtimes: ["Apache Subversion", "svnserve", "Apache HTTP Server"],
|
|
2272
|
+
ecosystems: ["Version Control", "Source Control", "DevOps", "Enterprise"]
|
|
2273
|
+
},
|
|
2274
|
+
version: "1.14.5",
|
|
2275
|
+
logo: "https://cdn.simpleicons.org/subversion/809CC9",
|
|
2276
|
+
i18n: {
|
|
2277
|
+
en: {
|
|
2278
|
+
name: "SVN",
|
|
2279
|
+
description: "Metadata and configuration files used by Apache Subversion repositories and clients.",
|
|
2280
|
+
longDescription: "SVN, Apache Subversion, is a centralized version control system with repository metadata, working-copy directories, ignore properties, server configuration, hooks, branches, tags, and revision history managed through Subversion tooling.\n\nIt is used in legacy and enterprise codebases, centralized source-control workflows, release management, document repositories, and projects that rely on Apache Subversion servers or clients."
|
|
2281
|
+
},
|
|
2282
|
+
es: {
|
|
2283
|
+
name: "SVN",
|
|
2284
|
+
description: "Archivos de metadata y configuracion usados por repositorios y clientes Apache Subversion.",
|
|
2285
|
+
longDescription: "SVN, Apache Subversion, es un sistema de control de versiones centralizado con metadata de repositorio, directorios de working copy, propiedades de ignore, configuracion de servidor, hooks, branches, tags e historial de revisiones gestionados mediante herramientas Subversion.\n\nSe usa en codebases legacy y empresariales, flujos centralizados de control de codigo, gestion de releases, repositorios de documentos y proyectos que dependen de servidores o clientes Apache Subversion."
|
|
2286
|
+
}
|
|
2287
|
+
}
|
|
2288
|
+
};
|
|
2289
|
+
}
|
|
2290
|
+
});
|
|
2291
|
+
|
|
1990
2292
|
// src/languages/swift.ts
|
|
1991
2293
|
var swift_exports = {};
|
|
1992
2294
|
__export(swift_exports, {
|
|
@@ -2391,6 +2693,7 @@ var init_zsh = __esm({
|
|
|
2391
2693
|
|
|
2392
2694
|
// src/catalog.ts
|
|
2393
2695
|
init_abap();
|
|
2696
|
+
init_actionscript();
|
|
2394
2697
|
init_asp();
|
|
2395
2698
|
init_assembly();
|
|
2396
2699
|
init_astro();
|
|
@@ -2407,8 +2710,12 @@ init_css();
|
|
|
2407
2710
|
init_cuda();
|
|
2408
2711
|
init_dart();
|
|
2409
2712
|
init_dockerfile();
|
|
2713
|
+
init_elm();
|
|
2714
|
+
init_erlang();
|
|
2715
|
+
init_fortran();
|
|
2410
2716
|
init_fsharp();
|
|
2411
2717
|
init_git();
|
|
2718
|
+
init_glsl();
|
|
2412
2719
|
init_go();
|
|
2413
2720
|
init_gradle();
|
|
2414
2721
|
init_graphql();
|
|
@@ -2429,8 +2736,10 @@ init_matlab();
|
|
|
2429
2736
|
init_meson();
|
|
2430
2737
|
init_metal();
|
|
2431
2738
|
init_nginx();
|
|
2739
|
+
init_nix();
|
|
2432
2740
|
init_objective_c();
|
|
2433
2741
|
init_pascal();
|
|
2742
|
+
init_perl();
|
|
2434
2743
|
init_php();
|
|
2435
2744
|
init_powershell();
|
|
2436
2745
|
init_pug();
|
|
@@ -2443,6 +2752,7 @@ init_scss();
|
|
|
2443
2752
|
init_sql();
|
|
2444
2753
|
init_svelte();
|
|
2445
2754
|
init_svg();
|
|
2755
|
+
init_svn();
|
|
2446
2756
|
init_swift();
|
|
2447
2757
|
init_toml();
|
|
2448
2758
|
init_typescript();
|
|
@@ -2456,6 +2766,7 @@ init_zig();
|
|
|
2456
2766
|
init_zsh();
|
|
2457
2767
|
var languages = [
|
|
2458
2768
|
abap,
|
|
2769
|
+
actionscript,
|
|
2459
2770
|
asp,
|
|
2460
2771
|
astro,
|
|
2461
2772
|
assembly,
|
|
@@ -2472,10 +2783,14 @@ var languages = [
|
|
|
2472
2783
|
cuda,
|
|
2473
2784
|
dart,
|
|
2474
2785
|
dockerfile,
|
|
2786
|
+
elm,
|
|
2787
|
+
erlang,
|
|
2788
|
+
fortran,
|
|
2475
2789
|
fsharp,
|
|
2476
2790
|
git,
|
|
2477
2791
|
go,
|
|
2478
2792
|
gradle,
|
|
2793
|
+
glsl,
|
|
2479
2794
|
graphql,
|
|
2480
2795
|
groovy,
|
|
2481
2796
|
html,
|
|
@@ -2493,9 +2808,12 @@ var languages = [
|
|
|
2493
2808
|
markdown,
|
|
2494
2809
|
meson,
|
|
2495
2810
|
metal,
|
|
2811
|
+
svn,
|
|
2496
2812
|
nginx,
|
|
2813
|
+
nix,
|
|
2497
2814
|
objectiveC,
|
|
2498
2815
|
pascal,
|
|
2816
|
+
perl,
|
|
2499
2817
|
php,
|
|
2500
2818
|
powershell,
|
|
2501
2819
|
pug,
|
|
@@ -2576,6 +2894,7 @@ var resolveLocale = (translations, locale) => {
|
|
|
2576
2894
|
// src/language-registry.ts
|
|
2577
2895
|
var languageIndex = [
|
|
2578
2896
|
{ slug: "abap", extensions: [".abap"] },
|
|
2897
|
+
{ slug: "actionscript", extensions: [".as"] },
|
|
2579
2898
|
{ slug: "asp", extensions: [".asp", ".aspx", ".ascx", ".ashx", ".asmx", ".master"] },
|
|
2580
2899
|
{ slug: "astro", extensions: [".astro"] },
|
|
2581
2900
|
{ slug: "assembly", extensions: [".asm", ".s", ".S", ".inc"] },
|
|
@@ -2595,10 +2914,23 @@ var languageIndex = [
|
|
|
2595
2914
|
{ slug: "cuda", extensions: [".cu", ".cuh"] },
|
|
2596
2915
|
{ slug: "dart", extensions: [".dart"] },
|
|
2597
2916
|
{ slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
|
|
2917
|
+
{ slug: "elm", extensions: [".elm"] },
|
|
2918
|
+
{
|
|
2919
|
+
slug: "erlang",
|
|
2920
|
+
extensions: [".erl", ".hrl", ".app.src", ".escript", ".xrl", ".yrl", "rebar.config"]
|
|
2921
|
+
},
|
|
2922
|
+
{
|
|
2923
|
+
slug: "fortran",
|
|
2924
|
+
extensions: [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"]
|
|
2925
|
+
},
|
|
2598
2926
|
{ slug: "fsharp", extensions: [".fs", ".fsi", ".fsx", ".fsscript"] },
|
|
2599
2927
|
{ slug: "git", extensions: [".git", ".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"] },
|
|
2600
2928
|
{ slug: "go", extensions: [".go"] },
|
|
2601
2929
|
{ slug: "gradle", extensions: [".gradle", ".gradle.kts"] },
|
|
2930
|
+
{
|
|
2931
|
+
slug: "glsl",
|
|
2932
|
+
extensions: [".glsl", ".vert", ".frag", ".geom", ".tesc", ".tese", ".comp", ".vs", ".fs"]
|
|
2933
|
+
},
|
|
2602
2934
|
{ slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
|
|
2603
2935
|
{ slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
|
|
2604
2936
|
{ slug: "html", extensions: [".html", ".htm"] },
|
|
@@ -2616,9 +2948,12 @@ var languageIndex = [
|
|
|
2616
2948
|
{ slug: "markdown", extensions: [".md", ".markdown", ".mdown", ".mkd"] },
|
|
2617
2949
|
{ slug: "meson", extensions: ["meson.build", "meson_options.txt", "meson.options", ".wrap"] },
|
|
2618
2950
|
{ slug: "metal", extensions: [".metal"] },
|
|
2951
|
+
{ slug: "svn", extensions: [".svn", "svnserve.conf"] },
|
|
2619
2952
|
{ slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
|
|
2953
|
+
{ slug: "nix", extensions: [".nix"] },
|
|
2620
2954
|
{ slug: "objective-c", extensions: [".m", ".mm"] },
|
|
2621
2955
|
{ slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
|
|
2956
|
+
{ slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
|
|
2622
2957
|
{ slug: "php", extensions: [".php", ".phtml", ".php3", ".php4", ".php5", ".phps"] },
|
|
2623
2958
|
{ slug: "powershell", extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"] },
|
|
2624
2959
|
{ slug: "pug", extensions: [".pug", ".jade"] },
|
|
@@ -2651,6 +2986,7 @@ var languageIndex = [
|
|
|
2651
2986
|
];
|
|
2652
2987
|
var languageLoaders = {
|
|
2653
2988
|
abap: () => Promise.resolve().then(() => (init_abap(), abap_exports)).then((module) => module.abap),
|
|
2989
|
+
actionscript: () => Promise.resolve().then(() => (init_actionscript(), actionscript_exports)).then((module) => module.actionscript),
|
|
2654
2990
|
asp: () => Promise.resolve().then(() => (init_asp(), asp_exports)).then((module) => module.asp),
|
|
2655
2991
|
assembly: () => Promise.resolve().then(() => (init_assembly(), assembly_exports)).then((module) => module.assembly),
|
|
2656
2992
|
astro: () => Promise.resolve().then(() => (init_astro(), astro_exports)).then((module) => module.astro),
|
|
@@ -2667,10 +3003,14 @@ var languageLoaders = {
|
|
|
2667
3003
|
cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
|
|
2668
3004
|
dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
|
|
2669
3005
|
dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
|
|
3006
|
+
elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
|
|
3007
|
+
erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
|
|
3008
|
+
fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
|
|
2670
3009
|
fsharp: () => Promise.resolve().then(() => (init_fsharp(), fsharp_exports)).then((module) => module.fsharp),
|
|
2671
3010
|
git: () => Promise.resolve().then(() => (init_git(), git_exports)).then((module) => module.git),
|
|
2672
3011
|
go: () => Promise.resolve().then(() => (init_go(), go_exports)).then((module) => module.go),
|
|
2673
3012
|
gradle: () => Promise.resolve().then(() => (init_gradle(), gradle_exports)).then((module) => module.gradle),
|
|
3013
|
+
glsl: () => Promise.resolve().then(() => (init_glsl(), glsl_exports)).then((module) => module.glsl),
|
|
2674
3014
|
graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
|
|
2675
3015
|
groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
|
|
2676
3016
|
html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
|
|
@@ -2688,9 +3028,12 @@ var languageLoaders = {
|
|
|
2688
3028
|
markdown: () => Promise.resolve().then(() => (init_markdown(), markdown_exports)).then((module) => module.markdown),
|
|
2689
3029
|
meson: () => Promise.resolve().then(() => (init_meson(), meson_exports)).then((module) => module.meson),
|
|
2690
3030
|
metal: () => Promise.resolve().then(() => (init_metal(), metal_exports)).then((module) => module.metal),
|
|
3031
|
+
svn: () => Promise.resolve().then(() => (init_svn(), svn_exports)).then((module) => module.svn),
|
|
2691
3032
|
nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
|
|
3033
|
+
nix: () => Promise.resolve().then(() => (init_nix(), nix_exports)).then((module) => module.nix),
|
|
2692
3034
|
"objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
|
|
2693
3035
|
pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
|
|
3036
|
+
perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
|
|
2694
3037
|
php: () => Promise.resolve().then(() => (init_php(), php_exports)).then((module) => module.php),
|
|
2695
3038
|
powershell: () => Promise.resolve().then(() => (init_powershell(), powershell_exports)).then((module) => module.powershell),
|
|
2696
3039
|
pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
|