code-languages 1.32.1 → 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 (70) hide show
  1. package/README.md +17 -7
  2. package/dist/api.cjs +428 -6
  3. package/dist/api.d.cts +1 -1
  4. package/dist/api.d.ts +1 -1
  5. package/dist/api.js +428 -6
  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 +308 -6
  11. package/dist/detect.js +308 -6
  12. package/dist/index.cjs +438 -6
  13. package/dist/index.d.cts +273 -1
  14. package/dist/index.d.ts +273 -1
  15. package/dist/index.js +439 -7
  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/eiffel.cjs +1 -1
  19. package/dist/languages/eiffel.js +1 -1
  20. package/dist/languages/hocon.cjs +1 -1
  21. package/dist/languages/hocon.js +1 -1
  22. package/dist/languages/json5.cjs +1 -1
  23. package/dist/languages/json5.js +1 -1
  24. package/dist/languages/lobster.cjs +32 -0
  25. package/dist/languages/lobster.d.cts +29 -0
  26. package/dist/languages/lobster.d.ts +29 -0
  27. package/dist/languages/lobster.js +30 -0
  28. package/dist/languages/logo.cjs +32 -0
  29. package/dist/languages/logo.d.cts +29 -0
  30. package/dist/languages/logo.d.ts +29 -0
  31. package/dist/languages/logo.js +30 -0
  32. package/dist/languages/mercury.cjs +33 -0
  33. package/dist/languages/mercury.d.cts +30 -0
  34. package/dist/languages/mercury.d.ts +30 -0
  35. package/dist/languages/mercury.js +31 -0
  36. package/dist/languages/modula-2.cjs +32 -0
  37. package/dist/languages/modula-2.d.cts +29 -0
  38. package/dist/languages/modula-2.d.ts +29 -0
  39. package/dist/languages/modula-2.js +30 -0
  40. package/dist/languages/mustache.cjs +1 -1
  41. package/dist/languages/mustache.js +1 -1
  42. package/dist/languages/nunjucks.cjs +1 -1
  43. package/dist/languages/nunjucks.js +1 -1
  44. package/dist/languages/nushell.cjs +1 -1
  45. package/dist/languages/nushell.js +1 -1
  46. package/dist/languages/oberon.cjs +32 -0
  47. package/dist/languages/oberon.d.cts +29 -0
  48. package/dist/languages/oberon.d.ts +29 -0
  49. package/dist/languages/oberon.js +30 -0
  50. package/dist/languages/pl-i.cjs +32 -0
  51. package/dist/languages/pl-i.d.cts +29 -0
  52. package/dist/languages/pl-i.d.ts +29 -0
  53. package/dist/languages/pl-i.js +30 -0
  54. package/dist/languages/rebol.cjs +32 -0
  55. package/dist/languages/rebol.d.cts +29 -0
  56. package/dist/languages/rebol.d.ts +29 -0
  57. package/dist/languages/rebol.js +30 -0
  58. package/dist/languages/red.cjs +32 -0
  59. package/dist/languages/red.d.cts +29 -0
  60. package/dist/languages/red.d.ts +29 -0
  61. package/dist/languages/red.js +30 -0
  62. package/dist/languages/roc.cjs +33 -0
  63. package/dist/languages/roc.d.cts +30 -0
  64. package/dist/languages/roc.d.ts +30 -0
  65. package/dist/languages/roc.js +31 -0
  66. package/dist/languages/self.cjs +32 -0
  67. package/dist/languages/self.d.cts +29 -0
  68. package/dist/languages/self.d.ts +29 -0
  69. package/dist/languages/self.js +30 -0
  70. package/package.json +51 -1
@@ -0,0 +1,29 @@
1
+ declare const modula2: {
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: "#2563EB";
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 { modula2 };
@@ -0,0 +1,29 @@
1
+ declare const modula2: {
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: "#2563EB";
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 { modula2 };
@@ -0,0 +1,30 @@
1
+ // src/languages/modula-2.ts
2
+ var modula2 = {
3
+ slug: "modula-2",
4
+ publishedDate: "1978-01-01",
5
+ extensions: [".mod", ".def"],
6
+ author: "Niklaus Wirth",
7
+ website: "https://www.modula2.org",
8
+ paradigms: ["imperative", "procedural", "modular"],
9
+ tooling: {
10
+ runtimes: ["GNU Modula-2", "ADW Modula-2", "Classic compilers"],
11
+ ecosystems: ["Systems Programming", "Education", "Language History"]
12
+ },
13
+ version: "ISO/IEC 10514-1:1996",
14
+ logo: "https://dummyimage.com/32x32/2563EB/ffffff.png&text=M2",
15
+ color: "#2563EB",
16
+ i18n: {
17
+ en: {
18
+ name: "Modula-2",
19
+ description: "A modular systems language from Niklaus Wirth with explicit interfaces and modules.",
20
+ longDescription: "Modula-2 was designed as a successor to Pascal for systems programming and teaching. It emphasizes separate compilation, explicit definition modules, strong typing, coroutines, and structured imperative programming.\n\nThe language influenced later modular languages and remains relevant in compiler history, embedded systems, and educational settings where clear module boundaries and small language design matter."
21
+ },
22
+ es: {
23
+ name: "Modula-2",
24
+ description: "Lenguaje modular de sistemas de Niklaus Wirth con interfaces y modulos explicitos.",
25
+ longDescription: "Modula-2 fue disenado como sucesor de Pascal para sistemas y ensenanza. Enfatiza compilacion separada, modulos de definicion explicitos, tipado fuerte, corrutinas y programacion imperativa estructurada.\n\nInfluyo en lenguajes modulares posteriores y sigue siendo relevante en historia de compiladores, sistemas embebidos y contextos educativos."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { modula2 };
@@ -12,7 +12,7 @@ var mustache = {
12
12
  ecosystems: ["Web", "Node.js", "Ruby", "Python", "Java", "Go"]
13
13
  },
14
14
  version: "1.0",
15
- logo: "https://mustache.github.io/images/mustache.png",
15
+ logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Mustache-js-logo.png",
16
16
  color: "#974A01",
17
17
  i18n: {
18
18
  en: {
@@ -10,7 +10,7 @@ var mustache = {
10
10
  ecosystems: ["Web", "Node.js", "Ruby", "Python", "Java", "Go"]
11
11
  },
12
12
  version: "1.0",
13
- logo: "https://mustache.github.io/images/mustache.png",
13
+ logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Mustache-js-logo.png",
14
14
  color: "#974A01",
15
15
  i18n: {
16
16
  en: {
@@ -14,7 +14,7 @@ var nunjucks = {
14
14
  ecosystems: ["Web", "Node.js", "Static Sites"]
15
15
  },
16
16
  version: "3.2.4",
17
- logo: "https://mozilla.github.io/nunjucks/img/nunjucks-logo.png",
17
+ logo: "https://cdn.simpleicons.org/nunjucks/1C4A1C",
18
18
  color: "#1C4A1C",
19
19
  i18n: {
20
20
  en: {
@@ -12,7 +12,7 @@ var nunjucks = {
12
12
  ecosystems: ["Web", "Node.js", "Static Sites"]
13
13
  },
14
14
  version: "3.2.4",
15
- logo: "https://mozilla.github.io/nunjucks/img/nunjucks-logo.png",
15
+ logo: "https://cdn.simpleicons.org/nunjucks/1C4A1C",
16
16
  color: "#1C4A1C",
17
17
  i18n: {
18
18
  en: {
@@ -14,7 +14,7 @@ var nushell = {
14
14
  ecosystems: ["Shell", "Unix", "Windows", "macOS"]
15
15
  },
16
16
  version: "0.113.1",
17
- logo: "https://www.nushell.sh/icons/android-chrome-512x512.png",
17
+ logo: "https://cdn.simpleicons.org/nushell/3AA675",
18
18
  color: "#3AA675",
19
19
  i18n: {
20
20
  en: {
@@ -12,7 +12,7 @@ var nushell = {
12
12
  ecosystems: ["Shell", "Unix", "Windows", "macOS"]
13
13
  },
14
14
  version: "0.113.1",
15
- logo: "https://www.nushell.sh/icons/android-chrome-512x512.png",
15
+ logo: "https://cdn.simpleicons.org/nushell/3AA675",
16
16
  color: "#3AA675",
17
17
  i18n: {
18
18
  en: {
@@ -0,0 +1,32 @@
1
+ 'use strict';
2
+
3
+ // src/languages/oberon.ts
4
+ var oberon = {
5
+ slug: "oberon",
6
+ publishedDate: "1987-01-01",
7
+ extensions: [".ob", ".mod"],
8
+ author: "Niklaus Wirth",
9
+ website: "https://people.inf.ethz.ch/wirth/Oberon/",
10
+ paradigms: ["imperative", "procedural", "modular"],
11
+ tooling: {
12
+ runtimes: ["Oberon System", "Oxford Oberon-2 compiler", "Classic compilers"],
13
+ ecosystems: ["Operating Systems", "Education", "Language Design"]
14
+ },
15
+ version: "Oberon-2",
16
+ logo: "https://dummyimage.com/32x32/0F766E/ffffff.png&text=Ob",
17
+ color: "#0F766E",
18
+ i18n: {
19
+ en: {
20
+ name: "Oberon",
21
+ description: "A compact Pascal-family language with modules, type extension, and system roots.",
22
+ longDescription: "Oberon is a compact language and operating-system project created by Niklaus Wirth and Jurg Gutknecht. The language simplifies Modula-2 while adding type extension and a small, strongly typed module system.\n\nOberon is important in operating-system research, compiler construction, and teaching because it shows how a small language, compiler, and environment can form a coherent software system."
23
+ },
24
+ es: {
25
+ name: "Oberon",
26
+ description: "Lenguaje compacto de la familia Pascal con modulos, extension de tipos y raices de sistema.",
27
+ longDescription: "Oberon es un lenguaje y proyecto de sistema operativo creado por Niklaus Wirth y Jurg Gutknecht. Simplifica Modula-2 y agrega extension de tipos junto con un sistema de modulos pequeno y fuertemente tipado.\n\nEs importante en investigacion de sistemas operativos, construccion de compiladores y ensenanza porque muestra como lenguaje, compilador y entorno pueden formar un sistema coherente."
28
+ }
29
+ }
30
+ };
31
+
32
+ exports.oberon = oberon;
@@ -0,0 +1,29 @@
1
+ declare const oberon: {
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: "#0F766E";
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 { oberon };
@@ -0,0 +1,29 @@
1
+ declare const oberon: {
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: "#0F766E";
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 { oberon };
@@ -0,0 +1,30 @@
1
+ // src/languages/oberon.ts
2
+ var oberon = {
3
+ slug: "oberon",
4
+ publishedDate: "1987-01-01",
5
+ extensions: [".ob", ".mod"],
6
+ author: "Niklaus Wirth",
7
+ website: "https://people.inf.ethz.ch/wirth/Oberon/",
8
+ paradigms: ["imperative", "procedural", "modular"],
9
+ tooling: {
10
+ runtimes: ["Oberon System", "Oxford Oberon-2 compiler", "Classic compilers"],
11
+ ecosystems: ["Operating Systems", "Education", "Language Design"]
12
+ },
13
+ version: "Oberon-2",
14
+ logo: "https://dummyimage.com/32x32/0F766E/ffffff.png&text=Ob",
15
+ color: "#0F766E",
16
+ i18n: {
17
+ en: {
18
+ name: "Oberon",
19
+ description: "A compact Pascal-family language with modules, type extension, and system roots.",
20
+ longDescription: "Oberon is a compact language and operating-system project created by Niklaus Wirth and Jurg Gutknecht. The language simplifies Modula-2 while adding type extension and a small, strongly typed module system.\n\nOberon is important in operating-system research, compiler construction, and teaching because it shows how a small language, compiler, and environment can form a coherent software system."
21
+ },
22
+ es: {
23
+ name: "Oberon",
24
+ description: "Lenguaje compacto de la familia Pascal con modulos, extension de tipos y raices de sistema.",
25
+ longDescription: "Oberon es un lenguaje y proyecto de sistema operativo creado por Niklaus Wirth y Jurg Gutknecht. Simplifica Modula-2 y agrega extension de tipos junto con un sistema de modulos pequeno y fuertemente tipado.\n\nEs importante en investigacion de sistemas operativos, construccion de compiladores y ensenanza porque muestra como lenguaje, compilador y entorno pueden formar un sistema coherente."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { oberon };
@@ -0,0 +1,32 @@
1
+ 'use strict';
2
+
3
+ // src/languages/pl-i.ts
4
+ var plI = {
5
+ slug: "pl-i",
6
+ publishedDate: "1964-01-01",
7
+ extensions: [".pli", ".pl1"],
8
+ author: "IBM",
9
+ website: "https://www.ibm.com/products/pli-compiler-aix",
10
+ paradigms: ["imperative", "procedural", "structured"],
11
+ tooling: {
12
+ runtimes: ["IBM Enterprise PL/I", "Open PL/I compilers"],
13
+ ecosystems: ["Mainframe", "Enterprise", "Scientific Computing"]
14
+ },
15
+ version: "Enterprise PL/I 6.2",
16
+ logo: "https://dummyimage.com/32x32/1F2937/ffffff.png&text=PL1",
17
+ color: "#1F2937",
18
+ i18n: {
19
+ en: {
20
+ name: "PL/I",
21
+ description: "An IBM language combining business, scientific, and systems programming features.",
22
+ longDescription: "PL/I was designed by IBM to cover business data processing, scientific computing, and systems programming in one language. It combines block structure, strong data-description facilities, exceptions, concurrency features, and rich numeric support.\n\nPL/I remains associated with mainframe and enterprise systems, where long-lived applications depend on its data handling, batch processing, and compatibility with IBM tooling."
23
+ },
24
+ es: {
25
+ name: "PL/I",
26
+ description: "Lenguaje de IBM que combina rasgos de programacion empresarial, cientifica y de sistemas.",
27
+ longDescription: "PL/I fue disenado por IBM para cubrir procesamiento empresarial, computacion cientifica y programacion de sistemas en un solo lenguaje. Combina estructura de bloques, descripciones de datos, excepciones, concurrencia y soporte numerico amplio.\n\nSigue asociado a mainframes y sistemas empresariales donde aplicaciones de larga vida dependen de su manejo de datos, procesos batch y herramientas IBM."
28
+ }
29
+ }
30
+ };
31
+
32
+ exports.plI = plI;
@@ -0,0 +1,29 @@
1
+ declare const plI: {
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: "#1F2937";
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 { plI };
@@ -0,0 +1,29 @@
1
+ declare const plI: {
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: "#1F2937";
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 { plI };
@@ -0,0 +1,30 @@
1
+ // src/languages/pl-i.ts
2
+ var plI = {
3
+ slug: "pl-i",
4
+ publishedDate: "1964-01-01",
5
+ extensions: [".pli", ".pl1"],
6
+ author: "IBM",
7
+ website: "https://www.ibm.com/products/pli-compiler-aix",
8
+ paradigms: ["imperative", "procedural", "structured"],
9
+ tooling: {
10
+ runtimes: ["IBM Enterprise PL/I", "Open PL/I compilers"],
11
+ ecosystems: ["Mainframe", "Enterprise", "Scientific Computing"]
12
+ },
13
+ version: "Enterprise PL/I 6.2",
14
+ logo: "https://dummyimage.com/32x32/1F2937/ffffff.png&text=PL1",
15
+ color: "#1F2937",
16
+ i18n: {
17
+ en: {
18
+ name: "PL/I",
19
+ description: "An IBM language combining business, scientific, and systems programming features.",
20
+ longDescription: "PL/I was designed by IBM to cover business data processing, scientific computing, and systems programming in one language. It combines block structure, strong data-description facilities, exceptions, concurrency features, and rich numeric support.\n\nPL/I remains associated with mainframe and enterprise systems, where long-lived applications depend on its data handling, batch processing, and compatibility with IBM tooling."
21
+ },
22
+ es: {
23
+ name: "PL/I",
24
+ description: "Lenguaje de IBM que combina rasgos de programacion empresarial, cientifica y de sistemas.",
25
+ longDescription: "PL/I fue disenado por IBM para cubrir procesamiento empresarial, computacion cientifica y programacion de sistemas en un solo lenguaje. Combina estructura de bloques, descripciones de datos, excepciones, concurrencia y soporte numerico amplio.\n\nSigue asociado a mainframes y sistemas empresariales donde aplicaciones de larga vida dependen de su manejo de datos, procesos batch y herramientas IBM."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { plI };
@@ -0,0 +1,32 @@
1
+ 'use strict';
2
+
3
+ // src/languages/rebol.ts
4
+ var rebol = {
5
+ slug: "rebol",
6
+ publishedDate: "1997-01-01",
7
+ extensions: [".r", ".reb", ".rebol"],
8
+ author: "Carl Sassenrath",
9
+ website: "https://www.rebol.com",
10
+ paradigms: ["functional", "dataflow", "scripting"],
11
+ tooling: {
12
+ runtimes: ["REBOL 2", "Rebol 3", "Ren-C"],
13
+ ecosystems: ["Scripting", "DSLs", "Network Tools"]
14
+ },
15
+ version: "Rebol 3",
16
+ logo: "https://dummyimage.com/32x32/7C2D12/ffffff.png&text=Re",
17
+ color: "#7C2D12",
18
+ i18n: {
19
+ en: {
20
+ name: "Rebol",
21
+ description: "A compact messaging language built around code-as-data blocks and dialects.",
22
+ longDescription: "Rebol is a small language created around the idea of relative expressions, blocks as data, and domain-specific dialects. Its syntax makes structured data and executable code share one compact representation.\n\nRebol has been used for network utilities, GUIs, automation, lightweight data exchange, and DSL experiments. Its influence is visible in Red and other languages interested in homoiconic, message-oriented scripting."
23
+ },
24
+ es: {
25
+ name: "Rebol",
26
+ description: "Lenguaje compacto de mensajeria basado en bloques de codigo como datos y dialectos.",
27
+ longDescription: "Rebol es un lenguaje pequeno creado alrededor de expresiones relativas, bloques como datos y dialectos especificos de dominio. Su sintaxis hace que datos estructurados y codigo ejecutable compartan una representacion compacta.\n\nSe ha usado en utilidades de red, GUIs, automatizacion, intercambio ligero de datos y experimentos de DSL. Su influencia se ve en Red y otros lenguajes de scripting homoiconico."
28
+ }
29
+ }
30
+ };
31
+
32
+ exports.rebol = rebol;
@@ -0,0 +1,29 @@
1
+ declare const rebol: {
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: "#7C2D12";
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 { rebol };
@@ -0,0 +1,29 @@
1
+ declare const rebol: {
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: "#7C2D12";
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 { rebol };
@@ -0,0 +1,30 @@
1
+ // src/languages/rebol.ts
2
+ var rebol = {
3
+ slug: "rebol",
4
+ publishedDate: "1997-01-01",
5
+ extensions: [".r", ".reb", ".rebol"],
6
+ author: "Carl Sassenrath",
7
+ website: "https://www.rebol.com",
8
+ paradigms: ["functional", "dataflow", "scripting"],
9
+ tooling: {
10
+ runtimes: ["REBOL 2", "Rebol 3", "Ren-C"],
11
+ ecosystems: ["Scripting", "DSLs", "Network Tools"]
12
+ },
13
+ version: "Rebol 3",
14
+ logo: "https://dummyimage.com/32x32/7C2D12/ffffff.png&text=Re",
15
+ color: "#7C2D12",
16
+ i18n: {
17
+ en: {
18
+ name: "Rebol",
19
+ description: "A compact messaging language built around code-as-data blocks and dialects.",
20
+ longDescription: "Rebol is a small language created around the idea of relative expressions, blocks as data, and domain-specific dialects. Its syntax makes structured data and executable code share one compact representation.\n\nRebol has been used for network utilities, GUIs, automation, lightweight data exchange, and DSL experiments. Its influence is visible in Red and other languages interested in homoiconic, message-oriented scripting."
21
+ },
22
+ es: {
23
+ name: "Rebol",
24
+ description: "Lenguaje compacto de mensajeria basado en bloques de codigo como datos y dialectos.",
25
+ longDescription: "Rebol es un lenguaje pequeno creado alrededor de expresiones relativas, bloques como datos y dialectos especificos de dominio. Su sintaxis hace que datos estructurados y codigo ejecutable compartan una representacion compacta.\n\nSe ha usado en utilidades de red, GUIs, automatizacion, intercambio ligero de datos y experimentos de DSL. Su influencia se ve en Red y otros lenguajes de scripting homoiconico."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { rebol };
@@ -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 };