code-languages 1.10.0 → 1.11.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.
Files changed (54) hide show
  1. package/README.md +47 -2
  2. package/dist/api.cjs +256 -0
  3. package/dist/api.cjs.map +1 -1
  4. package/dist/api.d.cts +160 -0
  5. package/dist/api.d.ts +160 -0
  6. package/dist/api.js +256 -0
  7. package/dist/api.js.map +1 -1
  8. package/dist/detect.cjs +178 -0
  9. package/dist/detect.cjs.map +1 -1
  10. package/dist/detect.js +178 -0
  11. package/dist/detect.js.map +1 -1
  12. package/dist/index.cjs +262 -0
  13. package/dist/index.cjs.map +1 -1
  14. package/dist/index.d.cts +160 -0
  15. package/dist/index.d.ts +160 -0
  16. package/dist/index.js +263 -1
  17. package/dist/index.js.map +1 -1
  18. package/dist/languages/actionscript.cjs +33 -0
  19. package/dist/languages/actionscript.cjs.map +1 -0
  20. package/dist/languages/actionscript.d.cts +28 -0
  21. package/dist/languages/actionscript.d.ts +28 -0
  22. package/dist/languages/actionscript.js +31 -0
  23. package/dist/languages/actionscript.js.map +1 -0
  24. package/dist/languages/elm.cjs +34 -0
  25. package/dist/languages/elm.cjs.map +1 -0
  26. package/dist/languages/elm.d.cts +29 -0
  27. package/dist/languages/elm.d.ts +29 -0
  28. package/dist/languages/elm.js +32 -0
  29. package/dist/languages/elm.js.map +1 -0
  30. package/dist/languages/erlang.cjs +34 -0
  31. package/dist/languages/erlang.cjs.map +1 -0
  32. package/dist/languages/erlang.d.cts +29 -0
  33. package/dist/languages/erlang.d.ts +29 -0
  34. package/dist/languages/erlang.js +32 -0
  35. package/dist/languages/erlang.js.map +1 -0
  36. package/dist/languages/fortran.cjs +34 -0
  37. package/dist/languages/fortran.cjs.map +1 -0
  38. package/dist/languages/fortran.d.cts +29 -0
  39. package/dist/languages/fortran.d.ts +29 -0
  40. package/dist/languages/fortran.js +32 -0
  41. package/dist/languages/fortran.js.map +1 -0
  42. package/dist/languages/perl.cjs +34 -0
  43. package/dist/languages/perl.cjs.map +1 -0
  44. package/dist/languages/perl.d.cts +29 -0
  45. package/dist/languages/perl.d.ts +29 -0
  46. package/dist/languages/perl.js +32 -0
  47. package/dist/languages/perl.js.map +1 -0
  48. package/dist/languages/svn.cjs +33 -0
  49. package/dist/languages/svn.cjs.map +1 -0
  50. package/dist/languages/svn.d.cts +28 -0
  51. package/dist/languages/svn.d.ts +28 -0
  52. package/dist/languages/svn.js +31 -0
  53. package/dist/languages/svn.js.map +1 -0
  54. package/package.json +38 -2
package/README.md CHANGED
@@ -1,14 +1,15 @@
1
1
  # code-languages
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/code-languages.svg)](https://www.npmjs.com/package/code-languages)
4
- [![CI](https://github.com/ElJijuna/code-languages/actions/workflows/ci.yml/badge.svg)](https://github.com/ElJijuna/code-languages/actions/workflows/ci.yml)
4
+ [![Pull Request](https://github.com/ElJijuna/code-languages/actions/workflows/pull-request.yml/badge.svg)](https://github.com/ElJijuna/code-languages/actions/workflows/pull-request.yml)
5
+ [![Docs](https://github.com/ElJijuna/code-languages/actions/workflows/docs.yml/badge.svg)](https://github.com/ElJijuna/code-languages/actions/workflows/docs.yml)
5
6
  [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
6
7
  [![TypeScript](https://img.shields.io/badge/TypeScript-ready-3178c6.svg)](https://www.typescriptlang.org)
7
8
  [![Dependencies](https://img.shields.io/badge/dependencies-0-brightgreen.svg)](package.json)
8
9
 
9
10
  Structured metadata for programming languages, packaged as a typed, tree-shakeable TypeScript library.
10
11
 
11
- `code-languages` is useful when you need a small source of truth for language names, slugs, file extensions, release metadata, websites, paradigms, and logos in developer tools, docs sites, learning platforms, or editor-like interfaces. It currently includes metadata for 58 languages.
12
+ `code-languages` is useful when you need a small source of truth for language names, slugs, file extensions, release metadata, websites, paradigms, and logos in developer tools, docs sites, learning platforms, or editor-like interfaces.
12
13
 
13
14
  ## Features
14
15
 
@@ -45,6 +46,7 @@ Import multiple languages:
45
46
 
46
47
  ```ts
47
48
  import { abap } from "code-languages/abap";
49
+ import { actionscript } from "code-languages/actionscript";
48
50
  import { asp } from "code-languages/asp";
49
51
  import { astro } from "code-languages/astro";
50
52
  import { assembly } from "code-languages/assembly";
@@ -61,6 +63,9 @@ import { css } from "code-languages/css";
61
63
  import { cuda } from "code-languages/cuda";
62
64
  import { dart } from "code-languages/dart";
63
65
  import { dockerfile } from "code-languages/dockerfile";
66
+ import { elm } from "code-languages/elm";
67
+ import { erlang } from "code-languages/erlang";
68
+ import { fortran } from "code-languages/fortran";
64
69
  import { fsharp } from "code-languages/fsharp";
65
70
  import { git } from "code-languages/git";
66
71
  import { gradle } from "code-languages/gradle";
@@ -83,6 +88,7 @@ import { metal } from "code-languages/metal";
83
88
  import { nginx } from "code-languages/nginx";
84
89
  import { objectiveC } from "code-languages/objective-c";
85
90
  import { pascal } from "code-languages/pascal";
91
+ import { perl } from "code-languages/perl";
86
92
  import { php } from "code-languages/php";
87
93
  import { powershell } from "code-languages/powershell";
88
94
  import { pug } from "code-languages/pug";
@@ -94,6 +100,7 @@ import { scss } from "code-languages/scss";
94
100
  import { json } from "code-languages/json";
95
101
  import { sql } from "code-languages/sql";
96
102
  import { svg } from "code-languages/svg";
103
+ import { svn } from "code-languages/svn";
97
104
  import { svelte } from "code-languages/svelte";
98
105
  import { swift } from "code-languages/swift";
99
106
  import { toml } from "code-languages/toml";
@@ -107,6 +114,7 @@ import { zig } from "code-languages/zig";
107
114
  import { zsh } from "code-languages/zsh";
108
115
 
109
116
  console.log(abap.version);
117
+ console.log(actionscript.extensions);
110
118
  console.log(asp.extensions);
111
119
  console.log(astro.version);
112
120
  console.log(assembly.extensions);
@@ -121,6 +129,9 @@ console.log(crystal.version);
121
129
  console.log(css.paradigms);
122
130
  console.log(cuda.version);
123
131
  console.log(dockerfile.i18n.en.name);
132
+ console.log(elm.version);
133
+ console.log(erlang.version);
134
+ console.log(fortran.extensions);
124
135
  console.log(fsharp.version);
125
136
  console.log(git.extensions);
126
137
  console.log(gradle.extensions);
@@ -143,6 +154,7 @@ console.log(metal.version);
143
154
  console.log(nginx.version);
144
155
  console.log(objectiveC.version);
145
156
  console.log(pascal.version);
157
+ console.log(perl.version);
146
158
  console.log(php.version);
147
159
  console.log(powershell.extensions);
148
160
  console.log(pug.version);
@@ -154,6 +166,7 @@ console.log(scss.extensions);
154
166
  console.log(json.i18n.en.description);
155
167
  console.log(sql.i18n.en.name);
156
168
  console.log(svg.extensions);
169
+ console.log(svn.extensions);
157
170
  console.log(svelte.version);
158
171
  console.log(swift.version);
159
172
  console.log(toml.version);
@@ -172,6 +185,7 @@ Import from the package root when bundle size is not a concern:
172
185
  ```ts
173
186
  import {
174
187
  abap,
188
+ actionscript,
175
189
  asp,
176
190
  astro,
177
191
  assembly,
@@ -187,6 +201,9 @@ import {
187
201
  detectLanguage,
188
202
  detectLanguages,
189
203
  dockerfile,
204
+ elm,
205
+ erlang,
206
+ fortran,
190
207
  fsharp,
191
208
  go,
192
209
  graphql,
@@ -209,6 +226,7 @@ import {
209
226
  nginx,
210
227
  objectiveC,
211
228
  pascal,
229
+ perl,
212
230
  php,
213
231
  powershell,
214
232
  pug,
@@ -219,6 +237,7 @@ import {
219
237
  scss,
220
238
  sql,
221
239
  svg,
240
+ svn,
222
241
  svelte,
223
242
  swift,
224
243
  toml,
@@ -234,6 +253,7 @@ import {
234
253
  } from "code-languages";
235
254
 
236
255
  console.log(localizeLanguage(abap).description);
256
+ console.log(localizeLanguage(actionscript, "es").description);
237
257
  console.log(localizeLanguage(asp, "es").description);
238
258
  console.log(localizeLanguage(astro, "es").description);
239
259
  console.log(localizeLanguage(assembly).description);
@@ -249,6 +269,9 @@ console.log(localizeLanguage(crystal, "es").description);
249
269
  console.log(localizeLanguage(css).name);
250
270
  console.log(localizeLanguage(cuda, "es").description);
251
271
  console.log(dockerfile.website);
272
+ console.log(localizeLanguage(elm, "es").description);
273
+ console.log(localizeLanguage(erlang, "es").description);
274
+ console.log(localizeLanguage(fortran).description);
252
275
  console.log(localizeLanguage(fsharp, "es").description);
253
276
  console.log(localizeLanguage(graphql, "es").description);
254
277
  console.log(localizeLanguage(groovy).description);
@@ -268,6 +291,7 @@ console.log(localizeLanguage(metal).description);
268
291
  console.log(localizeLanguage(nginx, "es").description);
269
292
  console.log(objectiveC.extensions);
270
293
  console.log(localizeLanguage(pascal, "es").description);
294
+ console.log(localizeLanguage(perl).description);
271
295
  console.log(localizeLanguage(php, "es").description);
272
296
  console.log(localizeLanguage(powershell).name);
273
297
  console.log(localizeLanguage(pug, "es").description);
@@ -279,6 +303,7 @@ console.log(localizeLanguage(scss).name);
279
303
  console.log(json.website);
280
304
  console.log(sql.extensions);
281
305
  console.log(localizeLanguage(svg, "es").description);
306
+ console.log(localizeLanguage(svn, "es").description);
282
307
  console.log(localizeLanguage(svelte).name);
283
308
  console.log(swift.i18n.en.description);
284
309
  console.log(localizeLanguage(toml, "es").description);
@@ -381,6 +406,7 @@ console.log(detectLanguages("include/config.h").map((language) => language.slug)
381
406
  | Logo | Language | Slug | Extensions | Version | Import |
382
407
  |---|---|---|---|---|---|
383
408
  | <img src="https://upload.wikimedia.org/wikipedia/commons/5/59/SAP_2011_logo.svg" alt="ABAP logo" width="24" height="24"> | ABAP | `abap` | `.abap` | `ABAP Platform 2025 FPS01` | `code-languages/abap` |
409
+ | <img src="https://icons.iconarchive.com/icons/fatcow/farm-fresh/32/page-white-actionscript-icon.png" alt="ActionScript logo" width="24" height="24"> | ActionScript | `actionscript` | `.as` | `3.0` | `code-languages/actionscript` |
384
410
  | <img src="https://cdn.simpleicons.org/dotnet/512BD4" alt="ASP/ASPX logo" width="24" height="24"> | ASP/ASPX | `asp` | `.asp`, `.aspx`, `.ascx`, `.ashx`, `.asmx`, `.master` | `4.8.1` | `code-languages/asp` |
385
411
  | <img src="https://astro.build/assets/press/astro-icon-light.svg" alt="Astro logo" width="24" height="24"> | Astro | `astro` | `.astro` | `6.3.2` | `code-languages/astro` |
386
412
  | <img src="https://cdn.simpleicons.org/assemblyscript/007AAC" alt="Assembly logo" width="24" height="24"> | Assembly | `assembly` | `.asm`, `.s`, `.S`, `.inc` | `Architecture-specific` | `code-languages/assembly` |
@@ -397,6 +423,9 @@ console.log(detectLanguages("include/config.h").map((language) => language.slug)
397
423
  | <img src="https://cdn.simpleicons.org/nvidia/76B900" alt="CUDA logo" width="24" height="24"> | CUDA | `cuda` | `.cu`, `.cuh` | `13.2.1` | `code-languages/cuda` |
398
424
  | <img src="https://commons.wikimedia.org/wiki/Special:FilePath/Dart_programming_language_logo.svg" alt="Dart logo" width="24" height="24"> | Dart | `dart` | `.dart` | `3.11.6` | `code-languages/dart` |
399
425
  | <img src="https://www.docker.com/wp-content/uploads/2022/03/Moby-logo.png" alt="Dockerfile logo" width="24" height="24"> | Dockerfile | `dockerfile` | `Dockerfile`, `.dockerfile` | `1.10` | `code-languages/dockerfile` |
426
+ | <img src="https://upload.wikimedia.org/wikipedia/commons/f/f3/Elm_logo.svg" alt="Elm logo" width="24" height="24"> | Elm | `elm` | `.elm` | `0.19.1` | `code-languages/elm` |
427
+ | <img src="https://cdn.simpleicons.org/erlang/A90533" alt="Erlang logo" width="24" height="24"> | Erlang | `erlang` | `.erl`, `.hrl`, `.app.src`, `.escript`, `.xrl`, `.yrl`, `rebar.config` | `OTP 29.0` | `code-languages/erlang` |
428
+ | <img src="https://upload.wikimedia.org/wikipedia/commons/b/b8/Fortran_logo.svg" alt="Fortran logo" width="24" height="24"> | Fortran | `fortran` | `.f`, `.for`, `.ftn`, `.f90`, `.f95`, `.f03`, `.f08`, `.f18`, `.f23` | `Fortran 2023` | `code-languages/fortran` |
400
429
  | <img src="https://cdn.simpleicons.org/fsharp/378BBA" alt="F# logo" width="24" height="24"> | F# | `fsharp` | `.fs`, `.fsi`, `.fsx`, `.fsscript` | `10` | `code-languages/fsharp` |
401
430
  | <img src="https://cdn.simpleicons.org/git/F05032" alt="Git logo" width="24" height="24"> | Git | `git` | `.git`, `.gitignore`, `.gitattributes`, `.gitmodules`, `.gitkeep` | `2.54.0` | `code-languages/git` |
402
431
  | <img src="https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Blue.svg" alt="Go logo" width="24" height="24"> | Go | `go` | `.go` | `1.26.3` | `code-languages/go` |
@@ -421,6 +450,7 @@ console.log(detectLanguages("include/config.h").map((language) => language.slug)
421
450
  | <img src="https://upload.wikimedia.org/wikipedia/commons/c/c5/Nginx_logo.svg" alt="nginx logo" width="24" height="24"> | nginx | `nginx` | `nginx.conf`, `.nginx`, `.conf` | `1.30.0` | `code-languages/nginx` |
422
451
  | <img src="https://upload.wikimedia.org/wikipedia/commons/1/1b/Apple_logo_grey.svg" alt="Objective-C logo" width="24" height="24"> | Objective-C | `objective-c` | `.m`, `.mm` | `2.0` | `code-languages/objective-c` |
423
452
  | <img src="https://cdn.simpleicons.org/lazarus/000000" alt="Pascal logo" width="24" height="24"> | Pascal | `pascal` | `.pas`, `.pp`, `.inc`, `.lpr`, `.dpr`, `.dfm` | `3.2.2` | `code-languages/pascal` |
453
+ | <img src="https://cdn.simpleicons.org/perl/39457E" alt="Perl logo" width="24" height="24"> | Perl | `perl` | `.pl`, `.pm`, `.pod`, `.t`, `.psgi` | `5.42.2` | `code-languages/perl` |
424
454
  | <img src="https://www.php.net/images/logos/new-php-logo.svg" alt="PHP logo" width="24" height="24"> | PHP | `php` | `.php`, `.phtml`, `.php3`, `.php4`, `.php5`, `.phps` | `8.5.6` | `code-languages/php` |
425
455
  | <img src="https://upload.wikimedia.org/wikipedia/commons/2/2f/PowerShell_5.0_icon.png" alt="PowerShell logo" width="24" height="24"> | PowerShell | `powershell` | `.ps1`, `.psm1`, `.psd1`, `.ps1xml` | `7.6.1` | `code-languages/powershell` |
426
456
  | <img src="https://cdn.simpleicons.org/pug/A86454" alt="Pug logo" width="24" height="24"> | Pug | `pug` | `.pug`, `.jade` | `3.0.3` | `code-languages/pug` |
@@ -432,6 +462,7 @@ console.log(detectLanguages("include/config.h").map((language) => language.slug)
432
462
  | <img src="https://sass-lang.com/assets/img/logos/logo.svg" alt="Sass logo" width="24" height="24"> | Sass | `scss` | `.scss`, `.sass` | `1.99.0` | `code-languages/scss` |
433
463
  | <img src="https://upload.wikimedia.org/wikipedia/commons/8/87/Sql_data_base_with_logo.png" alt="SQL logo" width="24" height="24"> | SQL | `sql` | `.sql` | `SQL:2023` | `code-languages/sql` |
434
464
  | <img src="https://upload.wikimedia.org/wikipedia/commons/4/4f/SVG_Logo.svg" alt="SVG logo" width="24" height="24"> | SVG | `svg` | `.svg`, `.svgz` | `SVG 2` | `code-languages/svg` |
465
+ | <img src="https://cdn.simpleicons.org/subversion/809CC9" alt="SVN logo" width="24" height="24"> | SVN | `svn` | `.svn`, `svnserve.conf` | `1.14.5` | `code-languages/svn` |
435
466
  | <img src="https://upload.wikimedia.org/wikipedia/commons/1/1b/Svelte_Logo.svg" alt="Svelte logo" width="24" height="24"> | Svelte | `svelte` | `.svelte` | `5.55.5` | `code-languages/svelte` |
436
467
  | <img src="https://www.swift.org/assets/images/swift.svg" alt="Swift logo" width="24" height="24"> | Swift | `swift` | `.swift` | `6.2.2` | `code-languages/swift` |
437
468
  | <img src="https://cdn.simpleicons.org/toml/9C4221" alt="TOML logo" width="24" height="24"> | TOML | `toml` | `.toml` | `1.0.0` | `code-languages/toml` |
@@ -460,8 +491,22 @@ Common scripts:
460
491
  | `npm run lint` | Run Biome checks |
461
492
  | `npm run typecheck` | Run TypeScript without emitting files |
462
493
  | `npm test` | Run Vitest |
494
+ | `npm run bench` | Run manual performance benchmarks |
463
495
  | `npm run build` | Build ESM, CommonJS, and declaration files |
464
496
  | `npm run check` | Run lint, typecheck, and tests |
497
+ | `npm run website:prepare` | Build the static website data, unit test summary, and benchmark summary |
498
+ | `npm run website:serve` | Preview the static website locally |
499
+
500
+ ## Website
501
+
502
+ The static website lives in [`docs`](docs) and is generated from the package build.
503
+ It includes a live filename detector, localized language lookup, the full language
504
+ catalog, unit test summary, and benchmark summary.
505
+
506
+ ```bash
507
+ npm run website:prepare
508
+ npm run website:serve
509
+ ```
465
510
 
466
511
  ## Contributing
467
512
 
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, {
@@ -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, {
@@ -1537,6 +1688,44 @@ var init_pascal = __esm({
1537
1688
  }
1538
1689
  });
1539
1690
 
1691
+ // src/languages/perl.ts
1692
+ var perl_exports = {};
1693
+ __export(perl_exports, {
1694
+ perl: () => perl
1695
+ });
1696
+ var perl;
1697
+ var init_perl = __esm({
1698
+ "src/languages/perl.ts"() {
1699
+ perl = {
1700
+ slug: "perl",
1701
+ publishedDate: "1987-12-18",
1702
+ extensions: [".pl", ".pm", ".pod", ".t", ".psgi"],
1703
+ author: "Larry Wall",
1704
+ website: "https://www.perl.org",
1705
+ paradigms: ["functional", "imperative", "object-oriented", "procedural", "scripting"],
1706
+ tooling: {
1707
+ runtimes: ["Perl interpreter", "mod_perl", "PSGI/Plack"],
1708
+ packageManagers: ["CPAN", "cpanm", "Carton"],
1709
+ ecosystems: ["Unix", "Web", "Text Processing", "System Administration", "Bioinformatics"]
1710
+ },
1711
+ version: "5.42.2",
1712
+ logo: "https://cdn.simpleicons.org/perl/39457E",
1713
+ i18n: {
1714
+ en: {
1715
+ name: "Perl",
1716
+ description: "A flexible scripting language for text processing, automation, web systems, and CPAN modules.",
1717
+ 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."
1718
+ },
1719
+ es: {
1720
+ name: "Perl",
1721
+ description: "Un lenguaje de scripting flexible para procesamiento de texto, automatizacion, web y modulos CPAN.",
1722
+ 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."
1723
+ }
1724
+ }
1725
+ };
1726
+ }
1727
+ });
1728
+
1540
1729
  // src/languages/php.ts
1541
1730
  var php_exports = {};
1542
1731
  __export(php_exports, {
@@ -1987,6 +2176,43 @@ var init_svg = __esm({
1987
2176
  }
1988
2177
  });
1989
2178
 
2179
+ // src/languages/svn.ts
2180
+ var svn_exports = {};
2181
+ __export(svn_exports, {
2182
+ svn: () => svn
2183
+ });
2184
+ var svn;
2185
+ var init_svn = __esm({
2186
+ "src/languages/svn.ts"() {
2187
+ svn = {
2188
+ slug: "svn",
2189
+ publishedDate: "2000-10-20",
2190
+ extensions: [".svn", "svnserve.conf"],
2191
+ author: "CollabNet / Apache Software Foundation",
2192
+ website: "https://subversion.apache.org",
2193
+ paradigms: ["configuration", "version-control", "centralized-version-control"],
2194
+ tooling: {
2195
+ runtimes: ["Apache Subversion", "svnserve", "Apache HTTP Server"],
2196
+ ecosystems: ["Version Control", "Source Control", "DevOps", "Enterprise"]
2197
+ },
2198
+ version: "1.14.5",
2199
+ logo: "https://cdn.simpleicons.org/subversion/809CC9",
2200
+ i18n: {
2201
+ en: {
2202
+ name: "SVN",
2203
+ description: "Metadata and configuration files used by Apache Subversion repositories and clients.",
2204
+ 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."
2205
+ },
2206
+ es: {
2207
+ name: "SVN",
2208
+ description: "Archivos de metadata y configuracion usados por repositorios y clientes Apache Subversion.",
2209
+ 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."
2210
+ }
2211
+ }
2212
+ };
2213
+ }
2214
+ });
2215
+
1990
2216
  // src/languages/swift.ts
1991
2217
  var swift_exports = {};
1992
2218
  __export(swift_exports, {
@@ -2391,6 +2617,7 @@ var init_zsh = __esm({
2391
2617
 
2392
2618
  // src/catalog.ts
2393
2619
  init_abap();
2620
+ init_actionscript();
2394
2621
  init_asp();
2395
2622
  init_assembly();
2396
2623
  init_astro();
@@ -2407,6 +2634,9 @@ init_css();
2407
2634
  init_cuda();
2408
2635
  init_dart();
2409
2636
  init_dockerfile();
2637
+ init_elm();
2638
+ init_erlang();
2639
+ init_fortran();
2410
2640
  init_fsharp();
2411
2641
  init_git();
2412
2642
  init_go();
@@ -2431,6 +2661,7 @@ init_metal();
2431
2661
  init_nginx();
2432
2662
  init_objective_c();
2433
2663
  init_pascal();
2664
+ init_perl();
2434
2665
  init_php();
2435
2666
  init_powershell();
2436
2667
  init_pug();
@@ -2443,6 +2674,7 @@ init_scss();
2443
2674
  init_sql();
2444
2675
  init_svelte();
2445
2676
  init_svg();
2677
+ init_svn();
2446
2678
  init_swift();
2447
2679
  init_toml();
2448
2680
  init_typescript();
@@ -2456,6 +2688,7 @@ init_zig();
2456
2688
  init_zsh();
2457
2689
  var languages = [
2458
2690
  abap,
2691
+ actionscript,
2459
2692
  asp,
2460
2693
  astro,
2461
2694
  assembly,
@@ -2472,6 +2705,9 @@ var languages = [
2472
2705
  cuda,
2473
2706
  dart,
2474
2707
  dockerfile,
2708
+ elm,
2709
+ erlang,
2710
+ fortran,
2475
2711
  fsharp,
2476
2712
  git,
2477
2713
  go,
@@ -2493,9 +2729,11 @@ var languages = [
2493
2729
  markdown,
2494
2730
  meson,
2495
2731
  metal,
2732
+ svn,
2496
2733
  nginx,
2497
2734
  objectiveC,
2498
2735
  pascal,
2736
+ perl,
2499
2737
  php,
2500
2738
  powershell,
2501
2739
  pug,
@@ -2576,6 +2814,7 @@ var resolveLocale = (translations, locale) => {
2576
2814
  // src/language-registry.ts
2577
2815
  var languageIndex = [
2578
2816
  { slug: "abap", extensions: [".abap"] },
2817
+ { slug: "actionscript", extensions: [".as"] },
2579
2818
  { slug: "asp", extensions: [".asp", ".aspx", ".ascx", ".ashx", ".asmx", ".master"] },
2580
2819
  { slug: "astro", extensions: [".astro"] },
2581
2820
  { slug: "assembly", extensions: [".asm", ".s", ".S", ".inc"] },
@@ -2595,6 +2834,15 @@ var languageIndex = [
2595
2834
  { slug: "cuda", extensions: [".cu", ".cuh"] },
2596
2835
  { slug: "dart", extensions: [".dart"] },
2597
2836
  { slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
2837
+ { slug: "elm", extensions: [".elm"] },
2838
+ {
2839
+ slug: "erlang",
2840
+ extensions: [".erl", ".hrl", ".app.src", ".escript", ".xrl", ".yrl", "rebar.config"]
2841
+ },
2842
+ {
2843
+ slug: "fortran",
2844
+ extensions: [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"]
2845
+ },
2598
2846
  { slug: "fsharp", extensions: [".fs", ".fsi", ".fsx", ".fsscript"] },
2599
2847
  { slug: "git", extensions: [".git", ".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"] },
2600
2848
  { slug: "go", extensions: [".go"] },
@@ -2616,9 +2864,11 @@ var languageIndex = [
2616
2864
  { slug: "markdown", extensions: [".md", ".markdown", ".mdown", ".mkd"] },
2617
2865
  { slug: "meson", extensions: ["meson.build", "meson_options.txt", "meson.options", ".wrap"] },
2618
2866
  { slug: "metal", extensions: [".metal"] },
2867
+ { slug: "svn", extensions: [".svn", "svnserve.conf"] },
2619
2868
  { slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
2620
2869
  { slug: "objective-c", extensions: [".m", ".mm"] },
2621
2870
  { slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
2871
+ { slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
2622
2872
  { slug: "php", extensions: [".php", ".phtml", ".php3", ".php4", ".php5", ".phps"] },
2623
2873
  { slug: "powershell", extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"] },
2624
2874
  { slug: "pug", extensions: [".pug", ".jade"] },
@@ -2651,6 +2901,7 @@ var languageIndex = [
2651
2901
  ];
2652
2902
  var languageLoaders = {
2653
2903
  abap: () => Promise.resolve().then(() => (init_abap(), abap_exports)).then((module) => module.abap),
2904
+ actionscript: () => Promise.resolve().then(() => (init_actionscript(), actionscript_exports)).then((module) => module.actionscript),
2654
2905
  asp: () => Promise.resolve().then(() => (init_asp(), asp_exports)).then((module) => module.asp),
2655
2906
  assembly: () => Promise.resolve().then(() => (init_assembly(), assembly_exports)).then((module) => module.assembly),
2656
2907
  astro: () => Promise.resolve().then(() => (init_astro(), astro_exports)).then((module) => module.astro),
@@ -2667,6 +2918,9 @@ var languageLoaders = {
2667
2918
  cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
2668
2919
  dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
2669
2920
  dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
2921
+ elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
2922
+ erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
2923
+ fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
2670
2924
  fsharp: () => Promise.resolve().then(() => (init_fsharp(), fsharp_exports)).then((module) => module.fsharp),
2671
2925
  git: () => Promise.resolve().then(() => (init_git(), git_exports)).then((module) => module.git),
2672
2926
  go: () => Promise.resolve().then(() => (init_go(), go_exports)).then((module) => module.go),
@@ -2688,9 +2942,11 @@ var languageLoaders = {
2688
2942
  markdown: () => Promise.resolve().then(() => (init_markdown(), markdown_exports)).then((module) => module.markdown),
2689
2943
  meson: () => Promise.resolve().then(() => (init_meson(), meson_exports)).then((module) => module.meson),
2690
2944
  metal: () => Promise.resolve().then(() => (init_metal(), metal_exports)).then((module) => module.metal),
2945
+ svn: () => Promise.resolve().then(() => (init_svn(), svn_exports)).then((module) => module.svn),
2691
2946
  nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
2692
2947
  "objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
2693
2948
  pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
2949
+ perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
2694
2950
  php: () => Promise.resolve().then(() => (init_php(), php_exports)).then((module) => module.php),
2695
2951
  powershell: () => Promise.resolve().then(() => (init_powershell(), powershell_exports)).then((module) => module.powershell),
2696
2952
  pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),