code-languages 1.32.0 → 1.33.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 (90) hide show
  1. package/README.md +27 -17
  2. package/dist/api.cjs +438 -16
  3. package/dist/api.d.cts +1 -1
  4. package/dist/api.d.ts +1 -1
  5. package/dist/api.js +438 -16
  6. package/dist/detect-slugs.cjs +10 -0
  7. package/dist/detect-slugs.d.cts +1 -1
  8. package/dist/detect-slugs.d.ts +1 -1
  9. package/dist/detect-slugs.js +10 -0
  10. package/dist/detect.cjs +318 -16
  11. package/dist/detect.js +318 -16
  12. package/dist/index.cjs +448 -16
  13. package/dist/index.d.cts +273 -1
  14. package/dist/index.d.ts +273 -1
  15. package/dist/index.js +449 -17
  16. package/dist/{language-registry-BWMgasX6.d.cts → language-registry-CAI9lyyx.d.cts} +30 -0
  17. package/dist/{language-registry-BWMgasX6.d.ts → language-registry-CAI9lyyx.d.ts} +30 -0
  18. package/dist/languages/astro.cjs +1 -1
  19. package/dist/languages/astro.js +1 -1
  20. package/dist/languages/dart.cjs +1 -1
  21. package/dist/languages/dart.js +1 -1
  22. package/dist/languages/eiffel.cjs +1 -1
  23. package/dist/languages/eiffel.js +1 -1
  24. package/dist/languages/elixir.cjs +1 -1
  25. package/dist/languages/elixir.js +1 -1
  26. package/dist/languages/hocon.cjs +1 -1
  27. package/dist/languages/hocon.js +1 -1
  28. package/dist/languages/json5.cjs +1 -1
  29. package/dist/languages/json5.js +1 -1
  30. package/dist/languages/lobster.cjs +32 -0
  31. package/dist/languages/lobster.d.cts +29 -0
  32. package/dist/languages/lobster.d.ts +29 -0
  33. package/dist/languages/lobster.js +30 -0
  34. package/dist/languages/logo.cjs +32 -0
  35. package/dist/languages/logo.d.cts +29 -0
  36. package/dist/languages/logo.d.ts +29 -0
  37. package/dist/languages/logo.js +30 -0
  38. package/dist/languages/luau.cjs +1 -1
  39. package/dist/languages/luau.js +1 -1
  40. package/dist/languages/mercury.cjs +33 -0
  41. package/dist/languages/mercury.d.cts +30 -0
  42. package/dist/languages/mercury.d.ts +30 -0
  43. package/dist/languages/mercury.js +31 -0
  44. package/dist/languages/modula-2.cjs +32 -0
  45. package/dist/languages/modula-2.d.cts +29 -0
  46. package/dist/languages/modula-2.d.ts +29 -0
  47. package/dist/languages/modula-2.js +30 -0
  48. package/dist/languages/mustache.cjs +1 -1
  49. package/dist/languages/mustache.js +1 -1
  50. package/dist/languages/nickel.cjs +1 -1
  51. package/dist/languages/nickel.js +1 -1
  52. package/dist/languages/nunjucks.cjs +1 -1
  53. package/dist/languages/nunjucks.js +1 -1
  54. package/dist/languages/nushell.cjs +1 -1
  55. package/dist/languages/nushell.js +1 -1
  56. package/dist/languages/oberon.cjs +32 -0
  57. package/dist/languages/oberon.d.cts +29 -0
  58. package/dist/languages/oberon.d.ts +29 -0
  59. package/dist/languages/oberon.js +30 -0
  60. package/dist/languages/pl-i.cjs +32 -0
  61. package/dist/languages/pl-i.d.cts +29 -0
  62. package/dist/languages/pl-i.d.ts +29 -0
  63. package/dist/languages/pl-i.js +30 -0
  64. package/dist/languages/plantuml.cjs +1 -1
  65. package/dist/languages/plantuml.js +1 -1
  66. package/dist/languages/razor.cjs +1 -1
  67. package/dist/languages/razor.js +1 -1
  68. package/dist/languages/rebol.cjs +32 -0
  69. package/dist/languages/rebol.d.cts +29 -0
  70. package/dist/languages/rebol.d.ts +29 -0
  71. package/dist/languages/rebol.js +30 -0
  72. package/dist/languages/red.cjs +32 -0
  73. package/dist/languages/red.d.cts +29 -0
  74. package/dist/languages/red.d.ts +29 -0
  75. package/dist/languages/red.js +30 -0
  76. package/dist/languages/rego.cjs +1 -1
  77. package/dist/languages/rego.js +1 -1
  78. package/dist/languages/roc.cjs +33 -0
  79. package/dist/languages/roc.d.cts +30 -0
  80. package/dist/languages/roc.d.ts +30 -0
  81. package/dist/languages/roc.js +31 -0
  82. package/dist/languages/scala.cjs +1 -1
  83. package/dist/languages/scala.js +1 -1
  84. package/dist/languages/self.cjs +32 -0
  85. package/dist/languages/self.d.cts +29 -0
  86. package/dist/languages/self.d.ts +29 -0
  87. package/dist/languages/self.js +30 -0
  88. package/dist/languages/svelte.cjs +1 -1
  89. package/dist/languages/svelte.js +1 -1
  90. package/package.json +51 -1
@@ -0,0 +1,32 @@
1
+ 'use strict';
2
+
3
+ // src/languages/red.ts
4
+ var red = {
5
+ slug: "red",
6
+ publishedDate: "2011-02-26",
7
+ extensions: [".red", ".reds"],
8
+ author: "Nenad Rakocevic",
9
+ website: "https://www.red-lang.org",
10
+ paradigms: ["imperative", "functional", "symbolic"],
11
+ tooling: {
12
+ runtimes: ["Red toolchain", "Red/System"],
13
+ ecosystems: ["Scripting", "GUI Applications", "Systems Experiments"]
14
+ },
15
+ version: "0.6.6",
16
+ logo: "https://static.red-lang.org/red-logo.svg",
17
+ color: "#F00000",
18
+ i18n: {
19
+ en: {
20
+ name: "Red",
21
+ description: "A Rebol-inspired language spanning high-level scripting and low-level Red/System code.",
22
+ longDescription: "Red is a language inspired by Rebol that aims to cover a broad range from symbolic high-level scripting to lower-level systems programming through Red/System. It emphasizes compact syntax, DSL-friendly data notation, and GUI-oriented workflows.\n\nThe project is used for scripts, small desktop tools, experiments, and applications that benefit from homoiconic data, concise notation, and a single distribution with compiler and runtime pieces."
23
+ },
24
+ es: {
25
+ name: "Red",
26
+ description: "Lenguaje inspirado en Rebol que cubre scripting de alto nivel y codigo Red/System.",
27
+ longDescription: "Red es un lenguaje inspirado en Rebol que busca cubrir desde scripting simbolico de alto nivel hasta programacion de sistemas con Red/System. Enfatiza sintaxis compacta, notacion de datos apta para DSLs y flujos orientados a GUI.\n\nSe usa en scripts, herramientas pequenas de escritorio, experimentos y apps que aprovechan datos homoiconicos, notacion concisa y una distribucion con compilador y runtime."
28
+ }
29
+ }
30
+ };
31
+
32
+ exports.red = red;
@@ -0,0 +1,29 @@
1
+ declare const red: {
2
+ slug: string;
3
+ publishedDate: string;
4
+ extensions: string[];
5
+ author: string;
6
+ website: string;
7
+ paradigms: string[];
8
+ tooling: {
9
+ runtimes: string[];
10
+ ecosystems: string[];
11
+ };
12
+ version: string;
13
+ logo: string;
14
+ color: "#F00000";
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 { red };
@@ -0,0 +1,29 @@
1
+ declare const red: {
2
+ slug: string;
3
+ publishedDate: string;
4
+ extensions: string[];
5
+ author: string;
6
+ website: string;
7
+ paradigms: string[];
8
+ tooling: {
9
+ runtimes: string[];
10
+ ecosystems: string[];
11
+ };
12
+ version: string;
13
+ logo: string;
14
+ color: "#F00000";
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 { red };
@@ -0,0 +1,30 @@
1
+ // src/languages/red.ts
2
+ var red = {
3
+ slug: "red",
4
+ publishedDate: "2011-02-26",
5
+ extensions: [".red", ".reds"],
6
+ author: "Nenad Rakocevic",
7
+ website: "https://www.red-lang.org",
8
+ paradigms: ["imperative", "functional", "symbolic"],
9
+ tooling: {
10
+ runtimes: ["Red toolchain", "Red/System"],
11
+ ecosystems: ["Scripting", "GUI Applications", "Systems Experiments"]
12
+ },
13
+ version: "0.6.6",
14
+ logo: "https://static.red-lang.org/red-logo.svg",
15
+ color: "#F00000",
16
+ i18n: {
17
+ en: {
18
+ name: "Red",
19
+ description: "A Rebol-inspired language spanning high-level scripting and low-level Red/System code.",
20
+ longDescription: "Red is a language inspired by Rebol that aims to cover a broad range from symbolic high-level scripting to lower-level systems programming through Red/System. It emphasizes compact syntax, DSL-friendly data notation, and GUI-oriented workflows.\n\nThe project is used for scripts, small desktop tools, experiments, and applications that benefit from homoiconic data, concise notation, and a single distribution with compiler and runtime pieces."
21
+ },
22
+ es: {
23
+ name: "Red",
24
+ description: "Lenguaje inspirado en Rebol que cubre scripting de alto nivel y codigo Red/System.",
25
+ longDescription: "Red es un lenguaje inspirado en Rebol que busca cubrir desde scripting simbolico de alto nivel hasta programacion de sistemas con Red/System. Enfatiza sintaxis compacta, notacion de datos apta para DSLs y flujos orientados a GUI.\n\nSe usa en scripts, herramientas pequenas de escritorio, experimentos y apps que aprovechan datos homoiconicos, notacion concisa y una distribucion con compilador y runtime."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { red };
@@ -13,7 +13,7 @@ var rego = {
13
13
  packageManagers: ["OPA bundles"],
14
14
  ecosystems: ["Policy as Code", "Kubernetes", "Cloud Native", "Authorization"]
15
15
  },
16
- version: "OPA 1.17.0",
16
+ version: "OPA 1.17.1",
17
17
  logo: "https://raw.githubusercontent.com/open-policy-agent/opa/main/logo/logo.svg",
18
18
  color: "#5C4EE5",
19
19
  i18n: {
@@ -11,7 +11,7 @@ var rego = {
11
11
  packageManagers: ["OPA bundles"],
12
12
  ecosystems: ["Policy as Code", "Kubernetes", "Cloud Native", "Authorization"]
13
13
  },
14
- version: "OPA 1.17.0",
14
+ version: "OPA 1.17.1",
15
15
  logo: "https://raw.githubusercontent.com/open-policy-agent/opa/main/logo/logo.svg",
16
16
  color: "#5C4EE5",
17
17
  i18n: {
@@ -0,0 +1,33 @@
1
+ 'use strict';
2
+
3
+ // src/languages/roc.ts
4
+ var roc = {
5
+ slug: "roc",
6
+ publishedDate: "2021-01-01",
7
+ extensions: [".roc"],
8
+ author: "Richard Feldman and contributors",
9
+ website: "https://www.roc-lang.org",
10
+ paradigms: ["functional", "pure", "static"],
11
+ tooling: {
12
+ runtimes: ["Roc compiler"],
13
+ packageManagers: ["Roc packages"],
14
+ ecosystems: ["CLI Tools", "WebAssembly", "Functional Programming"]
15
+ },
16
+ version: "development snapshot",
17
+ logo: "https://avatars.githubusercontent.com/u/96867701?v=4",
18
+ color: "#7C3AED",
19
+ i18n: {
20
+ en: {
21
+ name: "Roc",
22
+ description: "A fast, pure functional language focused on friendly syntax and platform-based apps.",
23
+ longDescription: "Roc is a pure functional programming language focused on fast execution, approachable syntax, static typing, and a platform model where hosts provide capabilities to applications. It aims to make functional programming practical for command-line tools, services, and WebAssembly.\n\nThe language is still evolving, but its design explores abilities, automatic memory management without tracing GC pauses, and packaging workflows that separate application code from platform code."
24
+ },
25
+ es: {
26
+ name: "Roc",
27
+ description: "Lenguaje funcional puro y rapido con sintaxis amigable y apps basadas en plataformas.",
28
+ longDescription: "Roc es un lenguaje funcional puro enfocado en ejecucion rapida, sintaxis accesible, tipado estatico y un modelo de plataformas donde el host provee capacidades a las aplicaciones. Busca hacer practica la programacion funcional para CLIs, servicios y WebAssembly.\n\nEl lenguaje sigue evolucionando, pero explora abilities, manejo automatico de memoria sin pausas de GC por trazado y paquetes que separan codigo de app y plataforma."
29
+ }
30
+ }
31
+ };
32
+
33
+ exports.roc = roc;
@@ -0,0 +1,30 @@
1
+ declare const roc: {
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
+ color: "#7C3AED";
16
+ i18n: {
17
+ en: {
18
+ name: string;
19
+ description: string;
20
+ longDescription: string;
21
+ };
22
+ es: {
23
+ name: string;
24
+ description: string;
25
+ longDescription: string;
26
+ };
27
+ };
28
+ };
29
+
30
+ export { roc };
@@ -0,0 +1,30 @@
1
+ declare const roc: {
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
+ color: "#7C3AED";
16
+ i18n: {
17
+ en: {
18
+ name: string;
19
+ description: string;
20
+ longDescription: string;
21
+ };
22
+ es: {
23
+ name: string;
24
+ description: string;
25
+ longDescription: string;
26
+ };
27
+ };
28
+ };
29
+
30
+ export { roc };
@@ -0,0 +1,31 @@
1
+ // src/languages/roc.ts
2
+ var roc = {
3
+ slug: "roc",
4
+ publishedDate: "2021-01-01",
5
+ extensions: [".roc"],
6
+ author: "Richard Feldman and contributors",
7
+ website: "https://www.roc-lang.org",
8
+ paradigms: ["functional", "pure", "static"],
9
+ tooling: {
10
+ runtimes: ["Roc compiler"],
11
+ packageManagers: ["Roc packages"],
12
+ ecosystems: ["CLI Tools", "WebAssembly", "Functional Programming"]
13
+ },
14
+ version: "development snapshot",
15
+ logo: "https://avatars.githubusercontent.com/u/96867701?v=4",
16
+ color: "#7C3AED",
17
+ i18n: {
18
+ en: {
19
+ name: "Roc",
20
+ description: "A fast, pure functional language focused on friendly syntax and platform-based apps.",
21
+ longDescription: "Roc is a pure functional programming language focused on fast execution, approachable syntax, static typing, and a platform model where hosts provide capabilities to applications. It aims to make functional programming practical for command-line tools, services, and WebAssembly.\n\nThe language is still evolving, but its design explores abilities, automatic memory management without tracing GC pauses, and packaging workflows that separate application code from platform code."
22
+ },
23
+ es: {
24
+ name: "Roc",
25
+ description: "Lenguaje funcional puro y rapido con sintaxis amigable y apps basadas en plataformas.",
26
+ longDescription: "Roc es un lenguaje funcional puro enfocado en ejecucion rapida, sintaxis accesible, tipado estatico y un modelo de plataformas donde el host provee capacidades a las aplicaciones. Busca hacer practica la programacion funcional para CLIs, servicios y WebAssembly.\n\nEl lenguaje sigue evolucionando, pero explora abilities, manejo automatico de memoria sin pausas de GC por trazado y paquetes que separan codigo de app y plataforma."
27
+ }
28
+ }
29
+ };
30
+
31
+ export { roc };
@@ -13,7 +13,7 @@ var scala = {
13
13
  packageManagers: ["sbt", "Maven", "Gradle", "Scala CLI"],
14
14
  ecosystems: ["JVM", "Web", "Data Engineering", "Distributed Systems"]
15
15
  },
16
- version: "3.8.3",
16
+ version: "3.8.4",
17
17
  logo: "https://cdn.simpleicons.org/scala/DC322F",
18
18
  color: "#DC322F",
19
19
  i18n: {
@@ -11,7 +11,7 @@ var scala = {
11
11
  packageManagers: ["sbt", "Maven", "Gradle", "Scala CLI"],
12
12
  ecosystems: ["JVM", "Web", "Data Engineering", "Distributed Systems"]
13
13
  },
14
- version: "3.8.3",
14
+ version: "3.8.4",
15
15
  logo: "https://cdn.simpleicons.org/scala/DC322F",
16
16
  color: "#DC322F",
17
17
  i18n: {
@@ -0,0 +1,32 @@
1
+ 'use strict';
2
+
3
+ // src/languages/self.ts
4
+ var self = {
5
+ slug: "self",
6
+ publishedDate: "1987-01-01",
7
+ extensions: [".self"],
8
+ author: "David Ungar and Randall Smith",
9
+ website: "https://selflanguage.org",
10
+ paradigms: ["prototype-based", "object-oriented", "dynamic"],
11
+ tooling: {
12
+ runtimes: ["Self VM"],
13
+ ecosystems: ["Language Research", "Interactive Environments", "Prototype OO"]
14
+ },
15
+ version: "2024.1",
16
+ logo: "https://dummyimage.com/32x32/EA580C/ffffff.png&text=Se",
17
+ color: "#EA580C",
18
+ i18n: {
19
+ en: {
20
+ name: "Self",
21
+ description: "A prototype-based object language that influenced JavaScript, VM design, and live IDEs.",
22
+ longDescription: "Self is a dynamic object-oriented language based on prototypes and message passing rather than classes. It was created as a research language for exploring object systems, live programming environments, and high-performance dynamic dispatch.\n\nSelf influenced JavaScript, Smalltalk VM work, adaptive optimization, and interactive development systems where objects can be inspected, changed, and extended while the program is running."
23
+ },
24
+ es: {
25
+ name: "Self",
26
+ description: "Lenguaje de objetos basado en prototipos que influyo en JavaScript, VMs e IDEs vivos.",
27
+ longDescription: "Self es un lenguaje orientado a objetos dinamico basado en prototipos y envio de mensajes, no en clases. Fue creado como lenguaje de investigacion para explorar sistemas de objetos, entornos vivos y dispatch dinamico de alto rendimiento.\n\nInfluyo en JavaScript, trabajo de VMs de Smalltalk, optimizacion adaptativa y entornos interactivos donde los objetos pueden inspeccionarse y cambiarse mientras el programa corre."
28
+ }
29
+ }
30
+ };
31
+
32
+ exports.self = self;
@@ -0,0 +1,29 @@
1
+ declare const self: {
2
+ slug: string;
3
+ publishedDate: string;
4
+ extensions: string[];
5
+ author: string;
6
+ website: string;
7
+ paradigms: string[];
8
+ tooling: {
9
+ runtimes: string[];
10
+ ecosystems: string[];
11
+ };
12
+ version: string;
13
+ logo: string;
14
+ color: "#EA580C";
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 { self };
@@ -0,0 +1,29 @@
1
+ declare const self: {
2
+ slug: string;
3
+ publishedDate: string;
4
+ extensions: string[];
5
+ author: string;
6
+ website: string;
7
+ paradigms: string[];
8
+ tooling: {
9
+ runtimes: string[];
10
+ ecosystems: string[];
11
+ };
12
+ version: string;
13
+ logo: string;
14
+ color: "#EA580C";
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 { self };
@@ -0,0 +1,30 @@
1
+ // src/languages/self.ts
2
+ var self = {
3
+ slug: "self",
4
+ publishedDate: "1987-01-01",
5
+ extensions: [".self"],
6
+ author: "David Ungar and Randall Smith",
7
+ website: "https://selflanguage.org",
8
+ paradigms: ["prototype-based", "object-oriented", "dynamic"],
9
+ tooling: {
10
+ runtimes: ["Self VM"],
11
+ ecosystems: ["Language Research", "Interactive Environments", "Prototype OO"]
12
+ },
13
+ version: "2024.1",
14
+ logo: "https://dummyimage.com/32x32/EA580C/ffffff.png&text=Se",
15
+ color: "#EA580C",
16
+ i18n: {
17
+ en: {
18
+ name: "Self",
19
+ description: "A prototype-based object language that influenced JavaScript, VM design, and live IDEs.",
20
+ longDescription: "Self is a dynamic object-oriented language based on prototypes and message passing rather than classes. It was created as a research language for exploring object systems, live programming environments, and high-performance dynamic dispatch.\n\nSelf influenced JavaScript, Smalltalk VM work, adaptive optimization, and interactive development systems where objects can be inspected, changed, and extended while the program is running."
21
+ },
22
+ es: {
23
+ name: "Self",
24
+ description: "Lenguaje de objetos basado en prototipos que influyo en JavaScript, VMs e IDEs vivos.",
25
+ longDescription: "Self es un lenguaje orientado a objetos dinamico basado en prototipos y envio de mensajes, no en clases. Fue creado como lenguaje de investigacion para explorar sistemas de objetos, entornos vivos y dispatch dinamico de alto rendimiento.\n\nInfluyo en JavaScript, trabajo de VMs de Smalltalk, optimizacion adaptativa y entornos interactivos donde los objetos pueden inspeccionarse y cambiarse mientras el programa corre."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { self };
@@ -13,7 +13,7 @@ var svelte = {
13
13
  packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
14
14
  ecosystems: ["Web", "SvelteKit", "Vite"]
15
15
  },
16
- version: "5.56.2",
16
+ version: "5.56.3",
17
17
  logo: "https://upload.wikimedia.org/wikipedia/commons/1/1b/Svelte_Logo.svg",
18
18
  color: "#FF3E00",
19
19
  i18n: {
@@ -11,7 +11,7 @@ var svelte = {
11
11
  packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
12
12
  ecosystems: ["Web", "SvelteKit", "Vite"]
13
13
  },
14
- version: "5.56.2",
14
+ version: "5.56.3",
15
15
  logo: "https://upload.wikimedia.org/wikipedia/commons/1/1b/Svelte_Logo.svg",
16
16
  color: "#FF3E00",
17
17
  i18n: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-languages",
3
- "version": "1.32.0",
3
+ "version": "1.33.0",
4
4
  "description": "Structured metadata for programming languages.",
5
5
  "homepage": "https://github.com/ElJijuna/code-languages#readme",
6
6
  "bugs": {
@@ -621,6 +621,16 @@
621
621
  "import": "./dist/languages/llvm-ir.js",
622
622
  "require": "./dist/languages/llvm-ir.cjs"
623
623
  },
624
+ "./lobster": {
625
+ "types": "./dist/languages/lobster.d.ts",
626
+ "import": "./dist/languages/lobster.js",
627
+ "require": "./dist/languages/lobster.cjs"
628
+ },
629
+ "./logo": {
630
+ "types": "./dist/languages/logo.d.ts",
631
+ "import": "./dist/languages/logo.js",
632
+ "require": "./dist/languages/logo.cjs"
633
+ },
624
634
  "./lua": {
625
635
  "types": "./dist/languages/lua.d.ts",
626
636
  "import": "./dist/languages/lua.js",
@@ -671,6 +681,11 @@
671
681
  "import": "./dist/languages/meson.js",
672
682
  "require": "./dist/languages/meson.cjs"
673
683
  },
684
+ "./mercury": {
685
+ "types": "./dist/languages/mercury.d.ts",
686
+ "import": "./dist/languages/mercury.js",
687
+ "require": "./dist/languages/mercury.cjs"
688
+ },
674
689
  "./metal": {
675
690
  "types": "./dist/languages/metal.d.ts",
676
691
  "import": "./dist/languages/metal.js",
@@ -681,6 +696,11 @@
681
696
  "import": "./dist/languages/mojo.js",
682
697
  "require": "./dist/languages/mojo.cjs"
683
698
  },
699
+ "./modula-2": {
700
+ "types": "./dist/languages/modula-2.d.ts",
701
+ "import": "./dist/languages/modula-2.js",
702
+ "require": "./dist/languages/modula-2.cjs"
703
+ },
684
704
  "./moonbit": {
685
705
  "types": "./dist/languages/moonbit.d.ts",
686
706
  "import": "./dist/languages/moonbit.js",
@@ -736,6 +756,11 @@
736
756
  "import": "./dist/languages/ocaml.js",
737
757
  "require": "./dist/languages/ocaml.cjs"
738
758
  },
759
+ "./oberon": {
760
+ "types": "./dist/languages/oberon.d.ts",
761
+ "import": "./dist/languages/oberon.js",
762
+ "require": "./dist/languages/oberon.cjs"
763
+ },
739
764
  "./odin": {
740
765
  "types": "./dist/languages/odin.d.ts",
741
766
  "import": "./dist/languages/odin.js",
@@ -771,6 +796,11 @@
771
796
  "import": "./dist/languages/pine-script.js",
772
797
  "require": "./dist/languages/pine-script.cjs"
773
798
  },
799
+ "./pl-i": {
800
+ "types": "./dist/languages/pl-i.d.ts",
801
+ "import": "./dist/languages/pl-i.js",
802
+ "require": "./dist/languages/pl-i.cjs"
803
+ },
774
804
  "./pkl": {
775
805
  "types": "./dist/languages/pkl.d.ts",
776
806
  "import": "./dist/languages/pkl.js",
@@ -861,6 +891,16 @@
861
891
  "import": "./dist/languages/razor.js",
862
892
  "require": "./dist/languages/razor.cjs"
863
893
  },
894
+ "./rebol": {
895
+ "types": "./dist/languages/rebol.d.ts",
896
+ "import": "./dist/languages/rebol.js",
897
+ "require": "./dist/languages/rebol.cjs"
898
+ },
899
+ "./red": {
900
+ "types": "./dist/languages/red.d.ts",
901
+ "import": "./dist/languages/red.js",
902
+ "require": "./dist/languages/red.cjs"
903
+ },
864
904
  "./reasonml": {
865
905
  "types": "./dist/languages/reasonml.d.ts",
866
906
  "import": "./dist/languages/reasonml.js",
@@ -881,6 +921,11 @@
881
921
  "import": "./dist/languages/restructuredtext.js",
882
922
  "require": "./dist/languages/restructuredtext.cjs"
883
923
  },
924
+ "./roc": {
925
+ "types": "./dist/languages/roc.d.ts",
926
+ "import": "./dist/languages/roc.js",
927
+ "require": "./dist/languages/roc.cjs"
928
+ },
884
929
  "./ruby": {
885
930
  "types": "./dist/languages/ruby.d.ts",
886
931
  "import": "./dist/languages/ruby.js",
@@ -911,6 +956,11 @@
911
956
  "import": "./dist/languages/scss.js",
912
957
  "require": "./dist/languages/scss.cjs"
913
958
  },
959
+ "./self": {
960
+ "types": "./dist/languages/self.d.ts",
961
+ "import": "./dist/languages/self.js",
962
+ "require": "./dist/languages/self.cjs"
963
+ },
914
964
  "./smalltalk": {
915
965
  "types": "./dist/languages/smalltalk.d.ts",
916
966
  "import": "./dist/languages/smalltalk.js",