code-languages 1.33.2 → 1.34.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 +11 -1
- package/dist/api.cjs +622 -0
- package/dist/api.d.cts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +622 -0
- package/dist/detect-slugs.cjs +10 -0
- package/dist/detect-slugs.d.cts +1 -1
- package/dist/detect-slugs.d.ts +1 -1
- package/dist/detect-slugs.js +10 -0
- package/dist/detect.cjs +502 -0
- package/dist/detect.js +502 -0
- package/dist/index.cjs +632 -0
- package/dist/index.d.cts +473 -1
- package/dist/index.d.ts +473 -1
- package/dist/index.js +633 -1
- package/dist/{language-registry-CAI9lyyx.d.cts → language-registry-CaYtxJN8.d.cts} +30 -0
- package/dist/{language-registry-CAI9lyyx.d.ts → language-registry-CaYtxJN8.d.ts} +30 -0
- package/dist/languages/aql.cjs +52 -0
- package/dist/languages/aql.d.cts +49 -0
- package/dist/languages/aql.d.ts +49 -0
- package/dist/languages/aql.js +50 -0
- package/dist/languages/fe.cjs +52 -0
- package/dist/languages/fe.d.cts +49 -0
- package/dist/languages/fe.d.ts +49 -0
- package/dist/languages/fe.js +50 -0
- package/dist/languages/ink.cjs +53 -0
- package/dist/languages/ink.d.cts +50 -0
- package/dist/languages/ink.d.ts +50 -0
- package/dist/languages/ink.js +51 -0
- package/dist/languages/ligo.cjs +53 -0
- package/dist/languages/ligo.d.cts +50 -0
- package/dist/languages/ligo.d.ts +50 -0
- package/dist/languages/ligo.js +51 -0
- package/dist/languages/marlowe.cjs +52 -0
- package/dist/languages/marlowe.d.cts +49 -0
- package/dist/languages/marlowe.d.ts +49 -0
- package/dist/languages/marlowe.js +50 -0
- package/dist/languages/simula.cjs +52 -0
- package/dist/languages/simula.d.cts +49 -0
- package/dist/languages/simula.d.ts +49 -0
- package/dist/languages/simula.js +50 -0
- package/dist/languages/snobol.cjs +52 -0
- package/dist/languages/snobol.d.cts +49 -0
- package/dist/languages/snobol.d.ts +49 -0
- package/dist/languages/snobol.js +50 -0
- package/dist/languages/spark.cjs +52 -0
- package/dist/languages/spark.d.cts +49 -0
- package/dist/languages/spark.d.ts +49 -0
- package/dist/languages/spark.js +50 -0
- package/dist/languages/vale.cjs +52 -0
- package/dist/languages/vale.d.cts +49 -0
- package/dist/languages/vale.d.ts +49 -0
- package/dist/languages/vale.js +50 -0
- package/dist/languages/verse.cjs +52 -0
- package/dist/languages/verse.d.cts +49 -0
- package/dist/languages/verse.d.ts +49 -0
- package/dist/languages/verse.js +50 -0
- package/package.json +51 -1
|
@@ -32,6 +32,9 @@ declare const languageIndex: readonly [{
|
|
|
32
32
|
}, {
|
|
33
33
|
readonly slug: "arduino";
|
|
34
34
|
readonly extensions: readonly [".ino", ".pde"];
|
|
35
|
+
}, {
|
|
36
|
+
readonly slug: "aql";
|
|
37
|
+
readonly extensions: readonly [".aql"];
|
|
35
38
|
}, {
|
|
36
39
|
readonly slug: "asciidoc";
|
|
37
40
|
readonly extensions: readonly [".adoc", ".asciidoc", ".asc"];
|
|
@@ -182,6 +185,9 @@ declare const languageIndex: readonly [{
|
|
|
182
185
|
}, {
|
|
183
186
|
readonly slug: "factor";
|
|
184
187
|
readonly extensions: readonly [".factor"];
|
|
188
|
+
}, {
|
|
189
|
+
readonly slug: "fe";
|
|
190
|
+
readonly extensions: readonly [".fe"];
|
|
185
191
|
}, {
|
|
186
192
|
readonly slug: "fennel";
|
|
187
193
|
readonly extensions: readonly [".fnl"];
|
|
@@ -272,6 +278,9 @@ declare const languageIndex: readonly [{
|
|
|
272
278
|
}, {
|
|
273
279
|
readonly slug: "ini";
|
|
274
280
|
readonly extensions: readonly [".ini"];
|
|
281
|
+
}, {
|
|
282
|
+
readonly slug: "ink";
|
|
283
|
+
readonly extensions: readonly [".ink"];
|
|
275
284
|
}, {
|
|
276
285
|
readonly slug: "io";
|
|
277
286
|
readonly extensions: readonly [".io"];
|
|
@@ -329,6 +338,9 @@ declare const languageIndex: readonly [{
|
|
|
329
338
|
}, {
|
|
330
339
|
readonly slug: "less";
|
|
331
340
|
readonly extensions: readonly [".less"];
|
|
341
|
+
}, {
|
|
342
|
+
readonly slug: "ligo";
|
|
343
|
+
readonly extensions: readonly [".ligo", ".mligo", ".religo", ".jsligo"];
|
|
332
344
|
}, {
|
|
333
345
|
readonly slug: "liquid";
|
|
334
346
|
readonly extensions: readonly [".liquid"];
|
|
@@ -359,6 +371,9 @@ declare const languageIndex: readonly [{
|
|
|
359
371
|
}, {
|
|
360
372
|
readonly slug: "markdown";
|
|
361
373
|
readonly extensions: readonly [".md", ".markdown", ".mdown", ".mkd"];
|
|
374
|
+
}, {
|
|
375
|
+
readonly slug: "marlowe";
|
|
376
|
+
readonly extensions: readonly [".marlowe"];
|
|
362
377
|
}, {
|
|
363
378
|
readonly slug: "mathematica";
|
|
364
379
|
readonly extensions: readonly [".wl", ".wls", ".nb"];
|
|
@@ -542,18 +557,27 @@ declare const languageIndex: readonly [{
|
|
|
542
557
|
}, {
|
|
543
558
|
readonly slug: "self";
|
|
544
559
|
readonly extensions: readonly [".self"];
|
|
560
|
+
}, {
|
|
561
|
+
readonly slug: "simula";
|
|
562
|
+
readonly extensions: readonly [".sim", ".simula"];
|
|
545
563
|
}, {
|
|
546
564
|
readonly slug: "smalltalk";
|
|
547
565
|
readonly extensions: readonly [".st"];
|
|
548
566
|
}, {
|
|
549
567
|
readonly slug: "smarty";
|
|
550
568
|
readonly extensions: readonly [".tpl", ".smarty"];
|
|
569
|
+
}, {
|
|
570
|
+
readonly slug: "snobol";
|
|
571
|
+
readonly extensions: readonly [".sno", ".snobol"];
|
|
551
572
|
}, {
|
|
552
573
|
readonly slug: "solidity";
|
|
553
574
|
readonly extensions: readonly [".sol"];
|
|
554
575
|
}, {
|
|
555
576
|
readonly slug: "sparql";
|
|
556
577
|
readonly extensions: readonly [".sparql", ".rq"];
|
|
578
|
+
}, {
|
|
579
|
+
readonly slug: "spark";
|
|
580
|
+
readonly extensions: readonly [".spark", ".adb", ".ads"];
|
|
557
581
|
}, {
|
|
558
582
|
readonly slug: "sql";
|
|
559
583
|
readonly extensions: readonly [".sql"];
|
|
@@ -617,9 +641,15 @@ declare const languageIndex: readonly [{
|
|
|
617
641
|
}, {
|
|
618
642
|
readonly slug: "vala";
|
|
619
643
|
readonly extensions: readonly [".vala", ".vapi"];
|
|
644
|
+
}, {
|
|
645
|
+
readonly slug: "vale";
|
|
646
|
+
readonly extensions: readonly [".vale"];
|
|
620
647
|
}, {
|
|
621
648
|
readonly slug: "verilog";
|
|
622
649
|
readonly extensions: readonly [".v", ".vh", ".sv", ".svh"];
|
|
650
|
+
}, {
|
|
651
|
+
readonly slug: "verse";
|
|
652
|
+
readonly extensions: readonly [".verse"];
|
|
623
653
|
}, {
|
|
624
654
|
readonly slug: "vhdl";
|
|
625
655
|
readonly extensions: readonly [".vhd", ".vhdl"];
|
|
@@ -32,6 +32,9 @@ declare const languageIndex: readonly [{
|
|
|
32
32
|
}, {
|
|
33
33
|
readonly slug: "arduino";
|
|
34
34
|
readonly extensions: readonly [".ino", ".pde"];
|
|
35
|
+
}, {
|
|
36
|
+
readonly slug: "aql";
|
|
37
|
+
readonly extensions: readonly [".aql"];
|
|
35
38
|
}, {
|
|
36
39
|
readonly slug: "asciidoc";
|
|
37
40
|
readonly extensions: readonly [".adoc", ".asciidoc", ".asc"];
|
|
@@ -182,6 +185,9 @@ declare const languageIndex: readonly [{
|
|
|
182
185
|
}, {
|
|
183
186
|
readonly slug: "factor";
|
|
184
187
|
readonly extensions: readonly [".factor"];
|
|
188
|
+
}, {
|
|
189
|
+
readonly slug: "fe";
|
|
190
|
+
readonly extensions: readonly [".fe"];
|
|
185
191
|
}, {
|
|
186
192
|
readonly slug: "fennel";
|
|
187
193
|
readonly extensions: readonly [".fnl"];
|
|
@@ -272,6 +278,9 @@ declare const languageIndex: readonly [{
|
|
|
272
278
|
}, {
|
|
273
279
|
readonly slug: "ini";
|
|
274
280
|
readonly extensions: readonly [".ini"];
|
|
281
|
+
}, {
|
|
282
|
+
readonly slug: "ink";
|
|
283
|
+
readonly extensions: readonly [".ink"];
|
|
275
284
|
}, {
|
|
276
285
|
readonly slug: "io";
|
|
277
286
|
readonly extensions: readonly [".io"];
|
|
@@ -329,6 +338,9 @@ declare const languageIndex: readonly [{
|
|
|
329
338
|
}, {
|
|
330
339
|
readonly slug: "less";
|
|
331
340
|
readonly extensions: readonly [".less"];
|
|
341
|
+
}, {
|
|
342
|
+
readonly slug: "ligo";
|
|
343
|
+
readonly extensions: readonly [".ligo", ".mligo", ".religo", ".jsligo"];
|
|
332
344
|
}, {
|
|
333
345
|
readonly slug: "liquid";
|
|
334
346
|
readonly extensions: readonly [".liquid"];
|
|
@@ -359,6 +371,9 @@ declare const languageIndex: readonly [{
|
|
|
359
371
|
}, {
|
|
360
372
|
readonly slug: "markdown";
|
|
361
373
|
readonly extensions: readonly [".md", ".markdown", ".mdown", ".mkd"];
|
|
374
|
+
}, {
|
|
375
|
+
readonly slug: "marlowe";
|
|
376
|
+
readonly extensions: readonly [".marlowe"];
|
|
362
377
|
}, {
|
|
363
378
|
readonly slug: "mathematica";
|
|
364
379
|
readonly extensions: readonly [".wl", ".wls", ".nb"];
|
|
@@ -542,18 +557,27 @@ declare const languageIndex: readonly [{
|
|
|
542
557
|
}, {
|
|
543
558
|
readonly slug: "self";
|
|
544
559
|
readonly extensions: readonly [".self"];
|
|
560
|
+
}, {
|
|
561
|
+
readonly slug: "simula";
|
|
562
|
+
readonly extensions: readonly [".sim", ".simula"];
|
|
545
563
|
}, {
|
|
546
564
|
readonly slug: "smalltalk";
|
|
547
565
|
readonly extensions: readonly [".st"];
|
|
548
566
|
}, {
|
|
549
567
|
readonly slug: "smarty";
|
|
550
568
|
readonly extensions: readonly [".tpl", ".smarty"];
|
|
569
|
+
}, {
|
|
570
|
+
readonly slug: "snobol";
|
|
571
|
+
readonly extensions: readonly [".sno", ".snobol"];
|
|
551
572
|
}, {
|
|
552
573
|
readonly slug: "solidity";
|
|
553
574
|
readonly extensions: readonly [".sol"];
|
|
554
575
|
}, {
|
|
555
576
|
readonly slug: "sparql";
|
|
556
577
|
readonly extensions: readonly [".sparql", ".rq"];
|
|
578
|
+
}, {
|
|
579
|
+
readonly slug: "spark";
|
|
580
|
+
readonly extensions: readonly [".spark", ".adb", ".ads"];
|
|
557
581
|
}, {
|
|
558
582
|
readonly slug: "sql";
|
|
559
583
|
readonly extensions: readonly [".sql"];
|
|
@@ -617,9 +641,15 @@ declare const languageIndex: readonly [{
|
|
|
617
641
|
}, {
|
|
618
642
|
readonly slug: "vala";
|
|
619
643
|
readonly extensions: readonly [".vala", ".vapi"];
|
|
644
|
+
}, {
|
|
645
|
+
readonly slug: "vale";
|
|
646
|
+
readonly extensions: readonly [".vale"];
|
|
620
647
|
}, {
|
|
621
648
|
readonly slug: "verilog";
|
|
622
649
|
readonly extensions: readonly [".v", ".vh", ".sv", ".svh"];
|
|
650
|
+
}, {
|
|
651
|
+
readonly slug: "verse";
|
|
652
|
+
readonly extensions: readonly [".verse"];
|
|
623
653
|
}, {
|
|
624
654
|
readonly slug: "vhdl";
|
|
625
655
|
readonly extensions: readonly [".vhd", ".vhdl"];
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/aql.ts
|
|
4
|
+
var aql = {
|
|
5
|
+
slug: "aql",
|
|
6
|
+
publishedDate: "2012-05-01",
|
|
7
|
+
extensions: [".aql"],
|
|
8
|
+
author: "ArangoDB GmbH",
|
|
9
|
+
website: "https://docs.arangodb.com/stable/aql/",
|
|
10
|
+
paradigms: ["query", "declarative"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["ArangoDB"],
|
|
13
|
+
ecosystems: ["Graph databases", "Document databases"]
|
|
14
|
+
},
|
|
15
|
+
version: "ArangoDB AQL",
|
|
16
|
+
logo: "https://dummyimage.com/32x32/16A34A/ffffff.png&text=AQ",
|
|
17
|
+
color: "#16A34A",
|
|
18
|
+
i18n: {
|
|
19
|
+
en: {
|
|
20
|
+
name: "AQL",
|
|
21
|
+
description: "ArangoDB Query Language, a declarative query language for multi-model graph and document data.",
|
|
22
|
+
longDescription: "AQL is the ArangoDB Query Language used to query documents, graphs, key-value data, and search views in ArangoDB. It has SQL-like declarative structure while supporting graph traversal, document operations, aggregation, and expression-oriented data shaping.\n\nAQL is used in applications that need one query language across multiple data models. It is closely tied to ArangoDB server versions and the database features available in each release."
|
|
23
|
+
},
|
|
24
|
+
es: {
|
|
25
|
+
name: "AQL",
|
|
26
|
+
description: "Lenguaje declarativo de consultas de ArangoDB para datos de grafos, documentos y multiples modelos.",
|
|
27
|
+
longDescription: "AQL es el lenguaje de consultas de ArangoDB para consultar documentos, grafos, datos clave-valor y vistas de busqueda. Tiene una estructura declarativa parecida a SQL, con soporte para recorridos de grafos, operaciones sobre documentos, agregaciones y transformacion de datos mediante expresiones.\n\nAQL se usa en aplicaciones que necesitan un solo lenguaje de consulta para varios modelos de datos. Esta estrechamente ligado a las versiones del servidor ArangoDB y a las capacidades disponibles en cada lanzamiento."
|
|
28
|
+
},
|
|
29
|
+
it: {
|
|
30
|
+
name: "AQL",
|
|
31
|
+
description: "Linguaggio dichiarativo di query di ArangoDB per dati a grafo, documenti e modelli multipli.",
|
|
32
|
+
longDescription: "AQL e il linguaggio di query di ArangoDB usato per interrogare documenti, grafi, dati chiave-valore e viste di ricerca. Ha una struttura dichiarativa simile a SQL, con supporto per attraversamenti di grafi, operazioni sui documenti, aggregazioni e trasformazione dei dati tramite espressioni.\n\nAQL viene usato in applicazioni che richiedono un unico linguaggio di query per piu modelli di dati. E strettamente legato alle versioni del server ArangoDB e alle funzionalita disponibili in ogni rilascio."
|
|
33
|
+
},
|
|
34
|
+
fr: {
|
|
35
|
+
name: "AQL",
|
|
36
|
+
description: "Langage de requete declaratif d ArangoDB pour graphes, documents et donnees multi-modeles.",
|
|
37
|
+
longDescription: "AQL est le langage de requete d ArangoDB utilise pour interroger des documents, des graphes, des donnees cle-valeur et des vues de recherche. Il possede une structure declarative proche de SQL et prend en charge les parcours de graphes, les operations sur documents, les agregations et la mise en forme des donnees par expressions.\n\nAQL est utilise dans les applications qui ont besoin d un seul langage de requete pour plusieurs modeles de donnees. Il est etroitement lie aux versions du serveur ArangoDB et aux fonctionnalites disponibles dans chaque version."
|
|
38
|
+
},
|
|
39
|
+
de: {
|
|
40
|
+
name: "AQL",
|
|
41
|
+
description: "Deklarative Abfragesprache von ArangoDB fur Graph-, Dokument- und Multi-Model-Daten.",
|
|
42
|
+
longDescription: "AQL ist die ArangoDB Query Language zum Abfragen von Dokumenten, Graphen, Key-Value-Daten und Suchansichten in ArangoDB. Sie hat eine SQL-ahnliche deklarative Struktur und unterstutzt Graph-Traversierungen, Dokumentoperationen, Aggregationen und ausdrucksbasierte Datenformung.\n\nAQL wird in Anwendungen eingesetzt, die eine Abfragesprache fur mehrere Datenmodelle benotigen. Die Sprache ist eng an ArangoDB-Serverversionen und die darin verfugbaren Funktionen gebunden."
|
|
43
|
+
},
|
|
44
|
+
pt: {
|
|
45
|
+
name: "AQL",
|
|
46
|
+
description: "Linguagem declarativa de consulta do ArangoDB para grafos, documentos e dados multimodelo.",
|
|
47
|
+
longDescription: "AQL e a linguagem de consulta do ArangoDB usada para consultar documentos, grafos, dados chave-valor e visoes de busca. Ela tem uma estrutura declarativa semelhante a SQL, com suporte a percursos de grafos, operacoes em documentos, agregacoes e modelagem de dados baseada em expressoes.\n\nAQL e usada em aplicacoes que precisam de uma unica linguagem de consulta para varios modelos de dados. Ela esta ligada as versoes do servidor ArangoDB e aos recursos disponiveis em cada lancamento."
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
exports.aql = aql;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const aql: {
|
|
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: "#16A34A";
|
|
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
|
+
it: {
|
|
27
|
+
name: string;
|
|
28
|
+
description: string;
|
|
29
|
+
longDescription: string;
|
|
30
|
+
};
|
|
31
|
+
fr: {
|
|
32
|
+
name: string;
|
|
33
|
+
description: string;
|
|
34
|
+
longDescription: string;
|
|
35
|
+
};
|
|
36
|
+
de: {
|
|
37
|
+
name: string;
|
|
38
|
+
description: string;
|
|
39
|
+
longDescription: string;
|
|
40
|
+
};
|
|
41
|
+
pt: {
|
|
42
|
+
name: string;
|
|
43
|
+
description: string;
|
|
44
|
+
longDescription: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
export { aql };
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const aql: {
|
|
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: "#16A34A";
|
|
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
|
+
it: {
|
|
27
|
+
name: string;
|
|
28
|
+
description: string;
|
|
29
|
+
longDescription: string;
|
|
30
|
+
};
|
|
31
|
+
fr: {
|
|
32
|
+
name: string;
|
|
33
|
+
description: string;
|
|
34
|
+
longDescription: string;
|
|
35
|
+
};
|
|
36
|
+
de: {
|
|
37
|
+
name: string;
|
|
38
|
+
description: string;
|
|
39
|
+
longDescription: string;
|
|
40
|
+
};
|
|
41
|
+
pt: {
|
|
42
|
+
name: string;
|
|
43
|
+
description: string;
|
|
44
|
+
longDescription: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
export { aql };
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
// src/languages/aql.ts
|
|
2
|
+
var aql = {
|
|
3
|
+
slug: "aql",
|
|
4
|
+
publishedDate: "2012-05-01",
|
|
5
|
+
extensions: [".aql"],
|
|
6
|
+
author: "ArangoDB GmbH",
|
|
7
|
+
website: "https://docs.arangodb.com/stable/aql/",
|
|
8
|
+
paradigms: ["query", "declarative"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["ArangoDB"],
|
|
11
|
+
ecosystems: ["Graph databases", "Document databases"]
|
|
12
|
+
},
|
|
13
|
+
version: "ArangoDB AQL",
|
|
14
|
+
logo: "https://dummyimage.com/32x32/16A34A/ffffff.png&text=AQ",
|
|
15
|
+
color: "#16A34A",
|
|
16
|
+
i18n: {
|
|
17
|
+
en: {
|
|
18
|
+
name: "AQL",
|
|
19
|
+
description: "ArangoDB Query Language, a declarative query language for multi-model graph and document data.",
|
|
20
|
+
longDescription: "AQL is the ArangoDB Query Language used to query documents, graphs, key-value data, and search views in ArangoDB. It has SQL-like declarative structure while supporting graph traversal, document operations, aggregation, and expression-oriented data shaping.\n\nAQL is used in applications that need one query language across multiple data models. It is closely tied to ArangoDB server versions and the database features available in each release."
|
|
21
|
+
},
|
|
22
|
+
es: {
|
|
23
|
+
name: "AQL",
|
|
24
|
+
description: "Lenguaje declarativo de consultas de ArangoDB para datos de grafos, documentos y multiples modelos.",
|
|
25
|
+
longDescription: "AQL es el lenguaje de consultas de ArangoDB para consultar documentos, grafos, datos clave-valor y vistas de busqueda. Tiene una estructura declarativa parecida a SQL, con soporte para recorridos de grafos, operaciones sobre documentos, agregaciones y transformacion de datos mediante expresiones.\n\nAQL se usa en aplicaciones que necesitan un solo lenguaje de consulta para varios modelos de datos. Esta estrechamente ligado a las versiones del servidor ArangoDB y a las capacidades disponibles en cada lanzamiento."
|
|
26
|
+
},
|
|
27
|
+
it: {
|
|
28
|
+
name: "AQL",
|
|
29
|
+
description: "Linguaggio dichiarativo di query di ArangoDB per dati a grafo, documenti e modelli multipli.",
|
|
30
|
+
longDescription: "AQL e il linguaggio di query di ArangoDB usato per interrogare documenti, grafi, dati chiave-valore e viste di ricerca. Ha una struttura dichiarativa simile a SQL, con supporto per attraversamenti di grafi, operazioni sui documenti, aggregazioni e trasformazione dei dati tramite espressioni.\n\nAQL viene usato in applicazioni che richiedono un unico linguaggio di query per piu modelli di dati. E strettamente legato alle versioni del server ArangoDB e alle funzionalita disponibili in ogni rilascio."
|
|
31
|
+
},
|
|
32
|
+
fr: {
|
|
33
|
+
name: "AQL",
|
|
34
|
+
description: "Langage de requete declaratif d ArangoDB pour graphes, documents et donnees multi-modeles.",
|
|
35
|
+
longDescription: "AQL est le langage de requete d ArangoDB utilise pour interroger des documents, des graphes, des donnees cle-valeur et des vues de recherche. Il possede une structure declarative proche de SQL et prend en charge les parcours de graphes, les operations sur documents, les agregations et la mise en forme des donnees par expressions.\n\nAQL est utilise dans les applications qui ont besoin d un seul langage de requete pour plusieurs modeles de donnees. Il est etroitement lie aux versions du serveur ArangoDB et aux fonctionnalites disponibles dans chaque version."
|
|
36
|
+
},
|
|
37
|
+
de: {
|
|
38
|
+
name: "AQL",
|
|
39
|
+
description: "Deklarative Abfragesprache von ArangoDB fur Graph-, Dokument- und Multi-Model-Daten.",
|
|
40
|
+
longDescription: "AQL ist die ArangoDB Query Language zum Abfragen von Dokumenten, Graphen, Key-Value-Daten und Suchansichten in ArangoDB. Sie hat eine SQL-ahnliche deklarative Struktur und unterstutzt Graph-Traversierungen, Dokumentoperationen, Aggregationen und ausdrucksbasierte Datenformung.\n\nAQL wird in Anwendungen eingesetzt, die eine Abfragesprache fur mehrere Datenmodelle benotigen. Die Sprache ist eng an ArangoDB-Serverversionen und die darin verfugbaren Funktionen gebunden."
|
|
41
|
+
},
|
|
42
|
+
pt: {
|
|
43
|
+
name: "AQL",
|
|
44
|
+
description: "Linguagem declarativa de consulta do ArangoDB para grafos, documentos e dados multimodelo.",
|
|
45
|
+
longDescription: "AQL e a linguagem de consulta do ArangoDB usada para consultar documentos, grafos, dados chave-valor e visoes de busca. Ela tem uma estrutura declarativa semelhante a SQL, com suporte a percursos de grafos, operacoes em documentos, agregacoes e modelagem de dados baseada em expressoes.\n\nAQL e usada em aplicacoes que precisam de uma unica linguagem de consulta para varios modelos de dados. Ela esta ligada as versoes do servidor ArangoDB e aos recursos disponiveis em cada lancamento."
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export { aql };
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/fe.ts
|
|
4
|
+
var fe = {
|
|
5
|
+
slug: "fe",
|
|
6
|
+
publishedDate: "2020-10-08",
|
|
7
|
+
extensions: [".fe"],
|
|
8
|
+
author: "Ethereum Foundation contributors",
|
|
9
|
+
website: "https://fe-lang.org",
|
|
10
|
+
paradigms: ["smart contract", "imperative", "object-oriented"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["Ethereum Virtual Machine"],
|
|
13
|
+
ecosystems: ["Ethereum", "EVM"]
|
|
14
|
+
},
|
|
15
|
+
version: "experimental",
|
|
16
|
+
logo: "https://dummyimage.com/32x32/4F46E5/ffffff.png&text=Fe",
|
|
17
|
+
color: "#4F46E5",
|
|
18
|
+
i18n: {
|
|
19
|
+
en: {
|
|
20
|
+
name: "Fe",
|
|
21
|
+
description: "A statically typed smart contract language for the Ethereum Virtual Machine.",
|
|
22
|
+
longDescription: "Fe is a smart contract language for Ethereum and other EVM-compatible chains. It aims to provide a Python-inspired syntax, static typing, explicitness, and safer defaults for contract development.\n\nThe language compiles to EVM bytecode and is designed for tooling-driven workflows around contracts, tests, and audits. Its ecosystem is experimental compared with Solidity, but useful for exploring alternative smart contract design."
|
|
23
|
+
},
|
|
24
|
+
es: {
|
|
25
|
+
name: "Fe",
|
|
26
|
+
description: "Lenguaje de contratos inteligentes con tipado estatico para la Maquina Virtual de Ethereum.",
|
|
27
|
+
longDescription: "Fe es un lenguaje de contratos inteligentes para Ethereum y otras cadenas compatibles con EVM. Busca ofrecer una sintaxis inspirada en Python, tipado estatico, explicitud y valores predeterminados mas seguros para desarrollar contratos.\n\nEl lenguaje compila a bytecode EVM y esta pensado para flujos de trabajo guiados por herramientas alrededor de contratos, pruebas y auditorias. Su ecosistema es experimental frente a Solidity, pero sirve para explorar disenos alternativos de contratos inteligentes."
|
|
28
|
+
},
|
|
29
|
+
it: {
|
|
30
|
+
name: "Fe",
|
|
31
|
+
description: "Linguaggio per smart contract con tipizzazione statica per Ethereum Virtual Machine.",
|
|
32
|
+
longDescription: "Fe e un linguaggio per smart contract destinato a Ethereum e ad altre chain compatibili con EVM. Punta a offrire una sintassi ispirata a Python, tipizzazione statica, esplicitezza e impostazioni predefinite piu sicure per lo sviluppo di contratti.\n\nIl linguaggio compila in bytecode EVM ed e pensato per flussi di lavoro basati su strumenti per contratti, test e audit. Il suo ecosistema e sperimentale rispetto a Solidity, ma utile per esplorare design alternativi di smart contract."
|
|
33
|
+
},
|
|
34
|
+
fr: {
|
|
35
|
+
name: "Fe",
|
|
36
|
+
description: "Langage de contrats intelligents a typage statique pour la machine virtuelle Ethereum.",
|
|
37
|
+
longDescription: "Fe est un langage de contrats intelligents pour Ethereum et les autres chaines compatibles EVM. Il vise une syntaxe inspiree de Python, un typage statique, une grande explicitation et des valeurs par defaut plus sures pour le developpement de contrats.\n\nLe langage compile vers le bytecode EVM et s integre a des flux de travail outilles pour les contrats, les tests et les audits. Son ecosysteme reste experimental face a Solidity, mais il est utile pour explorer d autres conceptions de contrats intelligents."
|
|
38
|
+
},
|
|
39
|
+
de: {
|
|
40
|
+
name: "Fe",
|
|
41
|
+
description: "Statisch typisierte Smart-Contract-Sprache fur die Ethereum Virtual Machine.",
|
|
42
|
+
longDescription: "Fe ist eine Smart-Contract-Sprache fur Ethereum und andere EVM-kompatible Chains. Sie zielt auf eine von Python inspirierte Syntax, statische Typisierung, Explizitheit und sicherere Voreinstellungen fur die Vertragsentwicklung.\n\nDie Sprache kompiliert zu EVM-Bytecode und ist fur toolgestutzte Workflows rund um Vertrage, Tests und Audits gedacht. Ihr Okosystem ist im Vergleich zu Solidity experimentell, eignet sich aber zum Erkunden alternativer Smart-Contract-Designs."
|
|
43
|
+
},
|
|
44
|
+
pt: {
|
|
45
|
+
name: "Fe",
|
|
46
|
+
description: "Linguagem de contratos inteligentes com tipagem estatica para a Maquina Virtual Ethereum.",
|
|
47
|
+
longDescription: "Fe e uma linguagem de contratos inteligentes para Ethereum e outras cadeias compativeis com EVM. Ela busca oferecer sintaxe inspirada em Python, tipagem estatica, explicitude e padroes mais seguros para o desenvolvimento de contratos.\n\nA linguagem compila para bytecode EVM e foi criada para fluxos de trabalho guiados por ferramentas em contratos, testes e auditorias. Seu ecossistema e experimental em comparacao com Solidity, mas util para explorar designs alternativos de contratos inteligentes."
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
exports.fe = fe;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const fe: {
|
|
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: "#4F46E5";
|
|
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
|
+
it: {
|
|
27
|
+
name: string;
|
|
28
|
+
description: string;
|
|
29
|
+
longDescription: string;
|
|
30
|
+
};
|
|
31
|
+
fr: {
|
|
32
|
+
name: string;
|
|
33
|
+
description: string;
|
|
34
|
+
longDescription: string;
|
|
35
|
+
};
|
|
36
|
+
de: {
|
|
37
|
+
name: string;
|
|
38
|
+
description: string;
|
|
39
|
+
longDescription: string;
|
|
40
|
+
};
|
|
41
|
+
pt: {
|
|
42
|
+
name: string;
|
|
43
|
+
description: string;
|
|
44
|
+
longDescription: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
export { fe };
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const fe: {
|
|
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: "#4F46E5";
|
|
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
|
+
it: {
|
|
27
|
+
name: string;
|
|
28
|
+
description: string;
|
|
29
|
+
longDescription: string;
|
|
30
|
+
};
|
|
31
|
+
fr: {
|
|
32
|
+
name: string;
|
|
33
|
+
description: string;
|
|
34
|
+
longDescription: string;
|
|
35
|
+
};
|
|
36
|
+
de: {
|
|
37
|
+
name: string;
|
|
38
|
+
description: string;
|
|
39
|
+
longDescription: string;
|
|
40
|
+
};
|
|
41
|
+
pt: {
|
|
42
|
+
name: string;
|
|
43
|
+
description: string;
|
|
44
|
+
longDescription: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
export { fe };
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
// src/languages/fe.ts
|
|
2
|
+
var fe = {
|
|
3
|
+
slug: "fe",
|
|
4
|
+
publishedDate: "2020-10-08",
|
|
5
|
+
extensions: [".fe"],
|
|
6
|
+
author: "Ethereum Foundation contributors",
|
|
7
|
+
website: "https://fe-lang.org",
|
|
8
|
+
paradigms: ["smart contract", "imperative", "object-oriented"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["Ethereum Virtual Machine"],
|
|
11
|
+
ecosystems: ["Ethereum", "EVM"]
|
|
12
|
+
},
|
|
13
|
+
version: "experimental",
|
|
14
|
+
logo: "https://dummyimage.com/32x32/4F46E5/ffffff.png&text=Fe",
|
|
15
|
+
color: "#4F46E5",
|
|
16
|
+
i18n: {
|
|
17
|
+
en: {
|
|
18
|
+
name: "Fe",
|
|
19
|
+
description: "A statically typed smart contract language for the Ethereum Virtual Machine.",
|
|
20
|
+
longDescription: "Fe is a smart contract language for Ethereum and other EVM-compatible chains. It aims to provide a Python-inspired syntax, static typing, explicitness, and safer defaults for contract development.\n\nThe language compiles to EVM bytecode and is designed for tooling-driven workflows around contracts, tests, and audits. Its ecosystem is experimental compared with Solidity, but useful for exploring alternative smart contract design."
|
|
21
|
+
},
|
|
22
|
+
es: {
|
|
23
|
+
name: "Fe",
|
|
24
|
+
description: "Lenguaje de contratos inteligentes con tipado estatico para la Maquina Virtual de Ethereum.",
|
|
25
|
+
longDescription: "Fe es un lenguaje de contratos inteligentes para Ethereum y otras cadenas compatibles con EVM. Busca ofrecer una sintaxis inspirada en Python, tipado estatico, explicitud y valores predeterminados mas seguros para desarrollar contratos.\n\nEl lenguaje compila a bytecode EVM y esta pensado para flujos de trabajo guiados por herramientas alrededor de contratos, pruebas y auditorias. Su ecosistema es experimental frente a Solidity, pero sirve para explorar disenos alternativos de contratos inteligentes."
|
|
26
|
+
},
|
|
27
|
+
it: {
|
|
28
|
+
name: "Fe",
|
|
29
|
+
description: "Linguaggio per smart contract con tipizzazione statica per Ethereum Virtual Machine.",
|
|
30
|
+
longDescription: "Fe e un linguaggio per smart contract destinato a Ethereum e ad altre chain compatibili con EVM. Punta a offrire una sintassi ispirata a Python, tipizzazione statica, esplicitezza e impostazioni predefinite piu sicure per lo sviluppo di contratti.\n\nIl linguaggio compila in bytecode EVM ed e pensato per flussi di lavoro basati su strumenti per contratti, test e audit. Il suo ecosistema e sperimentale rispetto a Solidity, ma utile per esplorare design alternativi di smart contract."
|
|
31
|
+
},
|
|
32
|
+
fr: {
|
|
33
|
+
name: "Fe",
|
|
34
|
+
description: "Langage de contrats intelligents a typage statique pour la machine virtuelle Ethereum.",
|
|
35
|
+
longDescription: "Fe est un langage de contrats intelligents pour Ethereum et les autres chaines compatibles EVM. Il vise une syntaxe inspiree de Python, un typage statique, une grande explicitation et des valeurs par defaut plus sures pour le developpement de contrats.\n\nLe langage compile vers le bytecode EVM et s integre a des flux de travail outilles pour les contrats, les tests et les audits. Son ecosysteme reste experimental face a Solidity, mais il est utile pour explorer d autres conceptions de contrats intelligents."
|
|
36
|
+
},
|
|
37
|
+
de: {
|
|
38
|
+
name: "Fe",
|
|
39
|
+
description: "Statisch typisierte Smart-Contract-Sprache fur die Ethereum Virtual Machine.",
|
|
40
|
+
longDescription: "Fe ist eine Smart-Contract-Sprache fur Ethereum und andere EVM-kompatible Chains. Sie zielt auf eine von Python inspirierte Syntax, statische Typisierung, Explizitheit und sicherere Voreinstellungen fur die Vertragsentwicklung.\n\nDie Sprache kompiliert zu EVM-Bytecode und ist fur toolgestutzte Workflows rund um Vertrage, Tests und Audits gedacht. Ihr Okosystem ist im Vergleich zu Solidity experimentell, eignet sich aber zum Erkunden alternativer Smart-Contract-Designs."
|
|
41
|
+
},
|
|
42
|
+
pt: {
|
|
43
|
+
name: "Fe",
|
|
44
|
+
description: "Linguagem de contratos inteligentes com tipagem estatica para a Maquina Virtual Ethereum.",
|
|
45
|
+
longDescription: "Fe e uma linguagem de contratos inteligentes para Ethereum e outras cadeias compativeis com EVM. Ela busca oferecer sintaxe inspirada em Python, tipagem estatica, explicitude e padroes mais seguros para o desenvolvimento de contratos.\n\nA linguagem compila para bytecode EVM e foi criada para fluxos de trabalho guiados por ferramentas em contratos, testes e auditorias. Seu ecossistema e experimental em comparacao com Solidity, mas util para explorar designs alternativos de contratos inteligentes."
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export { fe };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/ink.ts
|
|
4
|
+
var ink = {
|
|
5
|
+
slug: "ink",
|
|
6
|
+
publishedDate: "2018-01-01",
|
|
7
|
+
extensions: [".ink"],
|
|
8
|
+
author: "Parity Technologies",
|
|
9
|
+
website: "https://use.ink",
|
|
10
|
+
paradigms: ["smart contract", "embedded DSL", "systems"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["WebAssembly", "Substrate contracts pallet"],
|
|
13
|
+
packageManagers: ["Cargo"],
|
|
14
|
+
ecosystems: ["Polkadot", "Substrate", "Rust"]
|
|
15
|
+
},
|
|
16
|
+
version: "Ink! 6",
|
|
17
|
+
logo: "https://dummyimage.com/32x32/EC4899/ffffff.png&text=In",
|
|
18
|
+
color: "#EC4899",
|
|
19
|
+
i18n: {
|
|
20
|
+
en: {
|
|
21
|
+
name: "Ink!",
|
|
22
|
+
description: "A Rust-based embedded domain-specific language for writing WebAssembly smart contracts.",
|
|
23
|
+
longDescription: "Ink! is a smart contract language and framework built on Rust for Substrate-compatible blockchains. Contracts are written as Rust code using Ink! attributes and compile to WebAssembly for execution by compatible contract pallets.\n\nIt gives smart contract authors access to Rust tooling, types, testing, and package workflows while targeting blockchain runtimes. Ink! is common in Polkadot, Substrate, and related ecosystems."
|
|
24
|
+
},
|
|
25
|
+
es: {
|
|
26
|
+
name: "Ink!",
|
|
27
|
+
description: "DSL embebido basado en Rust para escribir contratos inteligentes WebAssembly.",
|
|
28
|
+
longDescription: "Ink! es un lenguaje y framework de contratos inteligentes construido sobre Rust para blockchains compatibles con Substrate. Los contratos se escriben como codigo Rust usando atributos de Ink! y compilan a WebAssembly para ejecutarse en pallets de contratos compatibles.\n\nDa a los autores de contratos acceso a herramientas, tipos, pruebas y flujos de paquetes de Rust mientras apunta a runtimes blockchain. Ink! es comun en Polkadot, Substrate y ecosistemas relacionados."
|
|
29
|
+
},
|
|
30
|
+
it: {
|
|
31
|
+
name: "Ink!",
|
|
32
|
+
description: "DSL incorporato basato su Rust per smart contract WebAssembly.",
|
|
33
|
+
longDescription: "Ink! e un linguaggio e framework per smart contract costruito su Rust per blockchain compatibili con Substrate. I contratti sono scritti come codice Rust usando attributi Ink! e compilano in WebAssembly per l esecuzione da parte di pallet di contratti compatibili.\n\nOffre agli autori di smart contract accesso a strumenti, tipi, test e workflow di pacchetti Rust mentre punta a runtime blockchain. Ink! e comune in Polkadot, Substrate ed ecosistemi correlati."
|
|
34
|
+
},
|
|
35
|
+
fr: {
|
|
36
|
+
name: "Ink!",
|
|
37
|
+
description: "DSL integre base sur Rust pour ecrire des contrats intelligents WebAssembly.",
|
|
38
|
+
longDescription: "Ink! est un langage et framework de contrats intelligents construit sur Rust pour les blockchains compatibles Substrate. Les contrats sont ecrits comme du code Rust avec des attributs Ink! et compiles vers WebAssembly pour etre executes par des pallets de contrats compatibles.\n\nIl donne aux auteurs de contrats l acces aux outils, types, tests et flux de paquets Rust tout en ciblant des runtimes blockchain. Ink! est courant dans Polkadot, Substrate et les ecosystemes associes."
|
|
39
|
+
},
|
|
40
|
+
de: {
|
|
41
|
+
name: "Ink!",
|
|
42
|
+
description: "Rust-basierte eingebettete DSL zum Schreiben von WebAssembly-Smart-Contracts.",
|
|
43
|
+
longDescription: "Ink! ist eine Smart-Contract-Sprache und ein Framework auf Basis von Rust fur Substrate-kompatible Blockchains. Vertrage werden als Rust-Code mit Ink!-Attributen geschrieben und zu WebAssembly kompiliert, damit kompatible Contract-Pallets sie ausfuhren konnen.\n\nAutorinnen und Autoren erhalten Zugriff auf Rust-Werkzeuge, Typen, Tests und Paket-Workflows, wahrend Blockchain-Runtimes adressiert werden. Ink! ist in Polkadot, Substrate und verwandten Okosystemen verbreitet."
|
|
44
|
+
},
|
|
45
|
+
pt: {
|
|
46
|
+
name: "Ink!",
|
|
47
|
+
description: "DSL embutida baseada em Rust para escrever contratos inteligentes WebAssembly.",
|
|
48
|
+
longDescription: "Ink! e uma linguagem e framework de contratos inteligentes criada sobre Rust para blockchains compativeis com Substrate. Os contratos sao escritos como codigo Rust usando atributos Ink! e compilam para WebAssembly para execucao por pallets de contratos compativeis.\n\nEla da a autores de contratos acesso a ferramentas, tipos, testes e fluxos de pacotes de Rust enquanto mira runtimes blockchain. Ink! e comum em Polkadot, Substrate e ecossistemas relacionados."
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
exports.ink = ink;
|