code-languages 1.29.1 → 1.30.1
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 +12 -2
- package/dist/api.cjs +428 -1
- package/dist/api.d.cts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +428 -1
- 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 +308 -1
- package/dist/detect.js +308 -1
- package/dist/index.cjs +438 -1
- package/dist/index.d.cts +278 -1
- package/dist/index.d.ts +278 -1
- package/dist/index.js +439 -2
- package/dist/{language-registry-CehUh46c.d.cts → language-registry-BQKRHyKo.d.cts} +30 -0
- package/dist/{language-registry-CehUh46c.d.ts → language-registry-BQKRHyKo.d.ts} +30 -0
- package/dist/languages/dafny.cjs +33 -0
- package/dist/languages/dafny.d.cts +30 -0
- package/dist/languages/dafny.d.ts +30 -0
- package/dist/languages/dafny.js +31 -0
- package/dist/languages/ejs.cjs +33 -0
- package/dist/languages/ejs.d.cts +30 -0
- package/dist/languages/ejs.d.ts +30 -0
- package/dist/languages/ejs.js +31 -0
- package/dist/languages/freemarker.cjs +33 -0
- package/dist/languages/freemarker.d.cts +30 -0
- package/dist/languages/freemarker.d.ts +30 -0
- package/dist/languages/freemarker.js +31 -0
- package/dist/languages/fstar.cjs +33 -0
- package/dist/languages/fstar.d.cts +30 -0
- package/dist/languages/fstar.d.ts +30 -0
- package/dist/languages/fstar.js +31 -0
- package/dist/languages/isabelle.cjs +32 -0
- package/dist/languages/isabelle.d.cts +29 -0
- package/dist/languages/isabelle.d.ts +29 -0
- package/dist/languages/isabelle.js +30 -0
- package/dist/languages/jsonc.cjs +32 -0
- package/dist/languages/jsonc.d.cts +29 -0
- package/dist/languages/jsonc.d.ts +29 -0
- package/dist/languages/jsonc.js +30 -0
- package/dist/languages/just.cjs +33 -0
- package/dist/languages/just.d.cts +30 -0
- package/dist/languages/just.d.ts +30 -0
- package/dist/languages/just.js +31 -0
- package/dist/languages/kdl.cjs +32 -0
- package/dist/languages/kdl.d.cts +29 -0
- package/dist/languages/kdl.d.ts +29 -0
- package/dist/languages/kdl.js +30 -0
- package/dist/languages/kotlin.cjs +1 -1
- package/dist/languages/kotlin.js +1 -1
- package/dist/languages/openapi.cjs +33 -0
- package/dist/languages/openapi.d.cts +30 -0
- package/dist/languages/openapi.d.ts +30 -0
- package/dist/languages/openapi.js +31 -0
- package/dist/languages/puppet.cjs +33 -0
- package/dist/languages/puppet.d.cts +30 -0
- package/dist/languages/puppet.d.ts +30 -0
- package/dist/languages/puppet.js +31 -0
- package/package.json +55 -5
|
@@ -122,6 +122,9 @@ declare const languageIndex: readonly [{
|
|
|
122
122
|
}, {
|
|
123
123
|
readonly slug: "d";
|
|
124
124
|
readonly extensions: readonly [".d", ".di"];
|
|
125
|
+
}, {
|
|
126
|
+
readonly slug: "dafny";
|
|
127
|
+
readonly extensions: readonly [".dfy"];
|
|
125
128
|
}, {
|
|
126
129
|
readonly slug: "dart";
|
|
127
130
|
readonly extensions: readonly [".dart"];
|
|
@@ -134,6 +137,9 @@ declare const languageIndex: readonly [{
|
|
|
134
137
|
}, {
|
|
135
138
|
readonly slug: "dockerfile";
|
|
136
139
|
readonly extensions: readonly ["Dockerfile", ".dockerfile"];
|
|
140
|
+
}, {
|
|
141
|
+
readonly slug: "ejs";
|
|
142
|
+
readonly extensions: readonly [".ejs"];
|
|
137
143
|
}, {
|
|
138
144
|
readonly slug: "eiffel";
|
|
139
145
|
readonly extensions: readonly [".e"];
|
|
@@ -161,6 +167,9 @@ declare const languageIndex: readonly [{
|
|
|
161
167
|
}, {
|
|
162
168
|
readonly slug: "flux";
|
|
163
169
|
readonly extensions: readonly [".flux"];
|
|
170
|
+
}, {
|
|
171
|
+
readonly slug: "freemarker";
|
|
172
|
+
readonly extensions: readonly [".ftl", ".ftlh", ".ftlx"];
|
|
164
173
|
}, {
|
|
165
174
|
readonly slug: "fortran";
|
|
166
175
|
readonly extensions: readonly [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"];
|
|
@@ -170,6 +179,9 @@ declare const languageIndex: readonly [{
|
|
|
170
179
|
}, {
|
|
171
180
|
readonly slug: "fsharp";
|
|
172
181
|
readonly extensions: readonly [".fs", ".fsi", ".fsx", ".fsscript"];
|
|
182
|
+
}, {
|
|
183
|
+
readonly slug: "fstar";
|
|
184
|
+
readonly extensions: readonly [".fst", ".fsti"];
|
|
173
185
|
}, {
|
|
174
186
|
readonly slug: "gdscript";
|
|
175
187
|
readonly extensions: readonly [".gd"];
|
|
@@ -236,6 +248,9 @@ declare const languageIndex: readonly [{
|
|
|
236
248
|
}, {
|
|
237
249
|
readonly slug: "ini";
|
|
238
250
|
readonly extensions: readonly [".ini"];
|
|
251
|
+
}, {
|
|
252
|
+
readonly slug: "isabelle";
|
|
253
|
+
readonly extensions: readonly [".thy"];
|
|
239
254
|
}, {
|
|
240
255
|
readonly slug: "java";
|
|
241
256
|
readonly extensions: readonly [".java"];
|
|
@@ -254,6 +269,9 @@ declare const languageIndex: readonly [{
|
|
|
254
269
|
}, {
|
|
255
270
|
readonly slug: "json5";
|
|
256
271
|
readonly extensions: readonly [".json5"];
|
|
272
|
+
}, {
|
|
273
|
+
readonly slug: "jsonc";
|
|
274
|
+
readonly extensions: readonly [".jsonc", ".code-workspace"];
|
|
257
275
|
}, {
|
|
258
276
|
readonly slug: "jsonnet";
|
|
259
277
|
readonly extensions: readonly [".jsonnet", ".libsonnet"];
|
|
@@ -263,9 +281,15 @@ declare const languageIndex: readonly [{
|
|
|
263
281
|
}, {
|
|
264
282
|
readonly slug: "julia";
|
|
265
283
|
readonly extensions: readonly [".jl"];
|
|
284
|
+
}, {
|
|
285
|
+
readonly slug: "just";
|
|
286
|
+
readonly extensions: readonly ["justfile", "Justfile", ".just"];
|
|
266
287
|
}, {
|
|
267
288
|
readonly slug: "kcl";
|
|
268
289
|
readonly extensions: readonly [".k", ".kcl"];
|
|
290
|
+
}, {
|
|
291
|
+
readonly slug: "kdl";
|
|
292
|
+
readonly extensions: readonly [".kdl"];
|
|
269
293
|
}, {
|
|
270
294
|
readonly slug: "kotlin";
|
|
271
295
|
readonly extensions: readonly [".kt", ".kts"];
|
|
@@ -362,6 +386,9 @@ declare const languageIndex: readonly [{
|
|
|
362
386
|
}, {
|
|
363
387
|
readonly slug: "opencl";
|
|
364
388
|
readonly extensions: readonly [".cl", ".clh"];
|
|
389
|
+
}, {
|
|
390
|
+
readonly slug: "openapi";
|
|
391
|
+
readonly extensions: readonly [".openapi.json", ".openapi.yaml", ".openapi.yml"];
|
|
365
392
|
}, {
|
|
366
393
|
readonly slug: "pascal";
|
|
367
394
|
readonly extensions: readonly [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"];
|
|
@@ -401,6 +428,9 @@ declare const languageIndex: readonly [{
|
|
|
401
428
|
}, {
|
|
402
429
|
readonly slug: "pug";
|
|
403
430
|
readonly extensions: readonly [".pug", ".jade"];
|
|
431
|
+
}, {
|
|
432
|
+
readonly slug: "puppet";
|
|
433
|
+
readonly extensions: readonly [".pp", ".epp"];
|
|
404
434
|
}, {
|
|
405
435
|
readonly slug: "purescript";
|
|
406
436
|
readonly extensions: readonly [".purs"];
|
|
@@ -122,6 +122,9 @@ declare const languageIndex: readonly [{
|
|
|
122
122
|
}, {
|
|
123
123
|
readonly slug: "d";
|
|
124
124
|
readonly extensions: readonly [".d", ".di"];
|
|
125
|
+
}, {
|
|
126
|
+
readonly slug: "dafny";
|
|
127
|
+
readonly extensions: readonly [".dfy"];
|
|
125
128
|
}, {
|
|
126
129
|
readonly slug: "dart";
|
|
127
130
|
readonly extensions: readonly [".dart"];
|
|
@@ -134,6 +137,9 @@ declare const languageIndex: readonly [{
|
|
|
134
137
|
}, {
|
|
135
138
|
readonly slug: "dockerfile";
|
|
136
139
|
readonly extensions: readonly ["Dockerfile", ".dockerfile"];
|
|
140
|
+
}, {
|
|
141
|
+
readonly slug: "ejs";
|
|
142
|
+
readonly extensions: readonly [".ejs"];
|
|
137
143
|
}, {
|
|
138
144
|
readonly slug: "eiffel";
|
|
139
145
|
readonly extensions: readonly [".e"];
|
|
@@ -161,6 +167,9 @@ declare const languageIndex: readonly [{
|
|
|
161
167
|
}, {
|
|
162
168
|
readonly slug: "flux";
|
|
163
169
|
readonly extensions: readonly [".flux"];
|
|
170
|
+
}, {
|
|
171
|
+
readonly slug: "freemarker";
|
|
172
|
+
readonly extensions: readonly [".ftl", ".ftlh", ".ftlx"];
|
|
164
173
|
}, {
|
|
165
174
|
readonly slug: "fortran";
|
|
166
175
|
readonly extensions: readonly [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"];
|
|
@@ -170,6 +179,9 @@ declare const languageIndex: readonly [{
|
|
|
170
179
|
}, {
|
|
171
180
|
readonly slug: "fsharp";
|
|
172
181
|
readonly extensions: readonly [".fs", ".fsi", ".fsx", ".fsscript"];
|
|
182
|
+
}, {
|
|
183
|
+
readonly slug: "fstar";
|
|
184
|
+
readonly extensions: readonly [".fst", ".fsti"];
|
|
173
185
|
}, {
|
|
174
186
|
readonly slug: "gdscript";
|
|
175
187
|
readonly extensions: readonly [".gd"];
|
|
@@ -236,6 +248,9 @@ declare const languageIndex: readonly [{
|
|
|
236
248
|
}, {
|
|
237
249
|
readonly slug: "ini";
|
|
238
250
|
readonly extensions: readonly [".ini"];
|
|
251
|
+
}, {
|
|
252
|
+
readonly slug: "isabelle";
|
|
253
|
+
readonly extensions: readonly [".thy"];
|
|
239
254
|
}, {
|
|
240
255
|
readonly slug: "java";
|
|
241
256
|
readonly extensions: readonly [".java"];
|
|
@@ -254,6 +269,9 @@ declare const languageIndex: readonly [{
|
|
|
254
269
|
}, {
|
|
255
270
|
readonly slug: "json5";
|
|
256
271
|
readonly extensions: readonly [".json5"];
|
|
272
|
+
}, {
|
|
273
|
+
readonly slug: "jsonc";
|
|
274
|
+
readonly extensions: readonly [".jsonc", ".code-workspace"];
|
|
257
275
|
}, {
|
|
258
276
|
readonly slug: "jsonnet";
|
|
259
277
|
readonly extensions: readonly [".jsonnet", ".libsonnet"];
|
|
@@ -263,9 +281,15 @@ declare const languageIndex: readonly [{
|
|
|
263
281
|
}, {
|
|
264
282
|
readonly slug: "julia";
|
|
265
283
|
readonly extensions: readonly [".jl"];
|
|
284
|
+
}, {
|
|
285
|
+
readonly slug: "just";
|
|
286
|
+
readonly extensions: readonly ["justfile", "Justfile", ".just"];
|
|
266
287
|
}, {
|
|
267
288
|
readonly slug: "kcl";
|
|
268
289
|
readonly extensions: readonly [".k", ".kcl"];
|
|
290
|
+
}, {
|
|
291
|
+
readonly slug: "kdl";
|
|
292
|
+
readonly extensions: readonly [".kdl"];
|
|
269
293
|
}, {
|
|
270
294
|
readonly slug: "kotlin";
|
|
271
295
|
readonly extensions: readonly [".kt", ".kts"];
|
|
@@ -362,6 +386,9 @@ declare const languageIndex: readonly [{
|
|
|
362
386
|
}, {
|
|
363
387
|
readonly slug: "opencl";
|
|
364
388
|
readonly extensions: readonly [".cl", ".clh"];
|
|
389
|
+
}, {
|
|
390
|
+
readonly slug: "openapi";
|
|
391
|
+
readonly extensions: readonly [".openapi.json", ".openapi.yaml", ".openapi.yml"];
|
|
365
392
|
}, {
|
|
366
393
|
readonly slug: "pascal";
|
|
367
394
|
readonly extensions: readonly [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"];
|
|
@@ -401,6 +428,9 @@ declare const languageIndex: readonly [{
|
|
|
401
428
|
}, {
|
|
402
429
|
readonly slug: "pug";
|
|
403
430
|
readonly extensions: readonly [".pug", ".jade"];
|
|
431
|
+
}, {
|
|
432
|
+
readonly slug: "puppet";
|
|
433
|
+
readonly extensions: readonly [".pp", ".epp"];
|
|
404
434
|
}, {
|
|
405
435
|
readonly slug: "purescript";
|
|
406
436
|
readonly extensions: readonly [".purs"];
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/dafny.ts
|
|
4
|
+
var dafny = {
|
|
5
|
+
slug: "dafny",
|
|
6
|
+
publishedDate: "2009-01-01",
|
|
7
|
+
extensions: [".dfy"],
|
|
8
|
+
author: "K. Rustan M. Leino / Microsoft Research",
|
|
9
|
+
website: "https://dafny.org",
|
|
10
|
+
paradigms: ["imperative", "functional", "object-oriented", "formal verification"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: [".NET", "Java", "JavaScript", "Go", "Python"],
|
|
13
|
+
packageManagers: ["NuGet", "Homebrew"],
|
|
14
|
+
ecosystems: ["Formal Methods", ".NET", "Verification"]
|
|
15
|
+
},
|
|
16
|
+
version: "4.11.0",
|
|
17
|
+
logo: "https://dummyimage.com/32x32/0B6D91/ffffff.png&text=D",
|
|
18
|
+
color: "#0B6D91",
|
|
19
|
+
i18n: {
|
|
20
|
+
en: {
|
|
21
|
+
name: "Dafny",
|
|
22
|
+
description: "A verification-aware programming language with specifications, proofs, and compilation to several mainstream targets.",
|
|
23
|
+
longDescription: "Dafny is a programming language and verifier designed for writing correct-by-construction software. Programs can include preconditions, postconditions, invariants, termination metrics, and assertions that are checked by an automated verifier.\n\nIt combines imperative, functional, and object-oriented features with formal specification syntax. Dafny code can be compiled to targets such as C#, Java, JavaScript, Go, and Python, making it useful for teaching, research, and high-assurance software components."
|
|
24
|
+
},
|
|
25
|
+
es: {
|
|
26
|
+
name: "Dafny",
|
|
27
|
+
description: "Lenguaje de programacion orientado a verificacion, con especificaciones, pruebas y compilacion a varios destinos comunes.",
|
|
28
|
+
longDescription: "Dafny es un lenguaje de programacion y verificador pensado para escribir software correcto por construccion. Los programas pueden incluir precondiciones, postcondiciones, invariantes, metricas de terminacion y aserciones que revisa un verificador automatico.\n\nCombina rasgos imperativos, funcionales y orientados a objetos con sintaxis de especificacion formal. El codigo Dafny puede compilarse a destinos como C#, Java, JavaScript, Go y Python."
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports.dafny = dafny;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const dafny: {
|
|
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: "#0B6D91";
|
|
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 { dafny };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const dafny: {
|
|
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: "#0B6D91";
|
|
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 { dafny };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// src/languages/dafny.ts
|
|
2
|
+
var dafny = {
|
|
3
|
+
slug: "dafny",
|
|
4
|
+
publishedDate: "2009-01-01",
|
|
5
|
+
extensions: [".dfy"],
|
|
6
|
+
author: "K. Rustan M. Leino / Microsoft Research",
|
|
7
|
+
website: "https://dafny.org",
|
|
8
|
+
paradigms: ["imperative", "functional", "object-oriented", "formal verification"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: [".NET", "Java", "JavaScript", "Go", "Python"],
|
|
11
|
+
packageManagers: ["NuGet", "Homebrew"],
|
|
12
|
+
ecosystems: ["Formal Methods", ".NET", "Verification"]
|
|
13
|
+
},
|
|
14
|
+
version: "4.11.0",
|
|
15
|
+
logo: "https://dummyimage.com/32x32/0B6D91/ffffff.png&text=D",
|
|
16
|
+
color: "#0B6D91",
|
|
17
|
+
i18n: {
|
|
18
|
+
en: {
|
|
19
|
+
name: "Dafny",
|
|
20
|
+
description: "A verification-aware programming language with specifications, proofs, and compilation to several mainstream targets.",
|
|
21
|
+
longDescription: "Dafny is a programming language and verifier designed for writing correct-by-construction software. Programs can include preconditions, postconditions, invariants, termination metrics, and assertions that are checked by an automated verifier.\n\nIt combines imperative, functional, and object-oriented features with formal specification syntax. Dafny code can be compiled to targets such as C#, Java, JavaScript, Go, and Python, making it useful for teaching, research, and high-assurance software components."
|
|
22
|
+
},
|
|
23
|
+
es: {
|
|
24
|
+
name: "Dafny",
|
|
25
|
+
description: "Lenguaje de programacion orientado a verificacion, con especificaciones, pruebas y compilacion a varios destinos comunes.",
|
|
26
|
+
longDescription: "Dafny es un lenguaje de programacion y verificador pensado para escribir software correcto por construccion. Los programas pueden incluir precondiciones, postcondiciones, invariantes, metricas de terminacion y aserciones que revisa un verificador automatico.\n\nCombina rasgos imperativos, funcionales y orientados a objetos con sintaxis de especificacion formal. El codigo Dafny puede compilarse a destinos como C#, Java, JavaScript, Go y Python."
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export { dafny };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/ejs.ts
|
|
4
|
+
var ejs = {
|
|
5
|
+
slug: "ejs",
|
|
6
|
+
publishedDate: "2011-02-01",
|
|
7
|
+
extensions: [".ejs"],
|
|
8
|
+
author: "Matthew Eernisse",
|
|
9
|
+
website: "https://ejs.co",
|
|
10
|
+
paradigms: ["template", "embedded", "imperative"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["Node.js", "Browser"],
|
|
13
|
+
packageManagers: ["npm", "pnpm", "Yarn"],
|
|
14
|
+
ecosystems: ["JavaScript", "Web", "Express"]
|
|
15
|
+
},
|
|
16
|
+
version: "3.1.10",
|
|
17
|
+
logo: "https://cdn.simpleicons.org/ejs/B4CA65",
|
|
18
|
+
color: "#B4CA65",
|
|
19
|
+
i18n: {
|
|
20
|
+
en: {
|
|
21
|
+
name: "EJS",
|
|
22
|
+
description: "An embedded JavaScript templating language for generating HTML and text from familiar JavaScript expressions.",
|
|
23
|
+
longDescription: "EJS, short for Embedded JavaScript, is a templating language that lets developers generate markup with ordinary JavaScript control flow and interpolation. Templates are commonly used to render server-side HTML in Node.js applications.\n\nIt is intentionally small and direct: template files mix literal output with tags for evaluation, escaped output, and unescaped output. EJS is popular in Express applications, documentation generators, and simple build workflows."
|
|
24
|
+
},
|
|
25
|
+
es: {
|
|
26
|
+
name: "EJS",
|
|
27
|
+
description: "Lenguaje de plantillas con JavaScript embebido para generar HTML y texto usando expresiones familiares.",
|
|
28
|
+
longDescription: "EJS, abreviatura de Embedded JavaScript, es un lenguaje de plantillas que permite generar marcado con interpolacion y control de flujo de JavaScript. Se usa con frecuencia para renderizar HTML del lado del servidor en aplicaciones Node.js.\n\nEs pequeno y directo: los archivos mezclan salida literal con etiquetas para evaluacion, salida escapada y salida sin escapar. EJS es comun en aplicaciones Express, generadores de documentacion y flujos de build simples."
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports.ejs = ejs;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const ejs: {
|
|
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: "#B4CA65";
|
|
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 { ejs };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const ejs: {
|
|
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: "#B4CA65";
|
|
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 { ejs };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// src/languages/ejs.ts
|
|
2
|
+
var ejs = {
|
|
3
|
+
slug: "ejs",
|
|
4
|
+
publishedDate: "2011-02-01",
|
|
5
|
+
extensions: [".ejs"],
|
|
6
|
+
author: "Matthew Eernisse",
|
|
7
|
+
website: "https://ejs.co",
|
|
8
|
+
paradigms: ["template", "embedded", "imperative"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["Node.js", "Browser"],
|
|
11
|
+
packageManagers: ["npm", "pnpm", "Yarn"],
|
|
12
|
+
ecosystems: ["JavaScript", "Web", "Express"]
|
|
13
|
+
},
|
|
14
|
+
version: "3.1.10",
|
|
15
|
+
logo: "https://cdn.simpleicons.org/ejs/B4CA65",
|
|
16
|
+
color: "#B4CA65",
|
|
17
|
+
i18n: {
|
|
18
|
+
en: {
|
|
19
|
+
name: "EJS",
|
|
20
|
+
description: "An embedded JavaScript templating language for generating HTML and text from familiar JavaScript expressions.",
|
|
21
|
+
longDescription: "EJS, short for Embedded JavaScript, is a templating language that lets developers generate markup with ordinary JavaScript control flow and interpolation. Templates are commonly used to render server-side HTML in Node.js applications.\n\nIt is intentionally small and direct: template files mix literal output with tags for evaluation, escaped output, and unescaped output. EJS is popular in Express applications, documentation generators, and simple build workflows."
|
|
22
|
+
},
|
|
23
|
+
es: {
|
|
24
|
+
name: "EJS",
|
|
25
|
+
description: "Lenguaje de plantillas con JavaScript embebido para generar HTML y texto usando expresiones familiares.",
|
|
26
|
+
longDescription: "EJS, abreviatura de Embedded JavaScript, es un lenguaje de plantillas que permite generar marcado con interpolacion y control de flujo de JavaScript. Se usa con frecuencia para renderizar HTML del lado del servidor en aplicaciones Node.js.\n\nEs pequeno y directo: los archivos mezclan salida literal con etiquetas para evaluacion, salida escapada y salida sin escapar. EJS es comun en aplicaciones Express, generadores de documentacion y flujos de build simples."
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export { ejs };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/freemarker.ts
|
|
4
|
+
var freemarker = {
|
|
5
|
+
slug: "freemarker",
|
|
6
|
+
publishedDate: "1999-01-01",
|
|
7
|
+
extensions: [".ftl", ".ftlh", ".ftlx"],
|
|
8
|
+
author: "Apache Software Foundation",
|
|
9
|
+
website: "https://freemarker.apache.org",
|
|
10
|
+
paradigms: ["template", "declarative"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["JVM"],
|
|
13
|
+
packageManagers: ["Maven", "Gradle"],
|
|
14
|
+
ecosystems: ["Java", "Web", "Apache"]
|
|
15
|
+
},
|
|
16
|
+
version: "2.3.34",
|
|
17
|
+
logo: "https://dummyimage.com/32x32/326CE5/ffffff.png&text=FM",
|
|
18
|
+
color: "#326CE5",
|
|
19
|
+
i18n: {
|
|
20
|
+
en: {
|
|
21
|
+
name: "FreeMarker",
|
|
22
|
+
description: "A JVM template language used to generate HTML, emails, configuration files, and other text output.",
|
|
23
|
+
longDescription: "Apache FreeMarker is a template engine and template language for Java applications. It separates presentation text from application code and can generate HTML pages, emails, source files, configuration files, and other structured text.\n\nFreeMarker templates use expressions, directives, macros, includes, and data-model access rather than embedding Java code directly. It is common in server-side Java web applications and code generation workflows."
|
|
24
|
+
},
|
|
25
|
+
es: {
|
|
26
|
+
name: "FreeMarker",
|
|
27
|
+
description: "Lenguaje de plantillas para la JVM usado para generar HTML, correos, configuracion y otras salidas de texto.",
|
|
28
|
+
longDescription: "Apache FreeMarker es un motor y lenguaje de plantillas para aplicaciones Java. Separa el texto de presentacion del codigo de aplicacion y puede generar paginas HTML, correos, codigo fuente, archivos de configuracion y otros textos estructurados.\n\nLas plantillas FreeMarker usan expresiones, directivas, macros, inclusiones y acceso a modelos de datos en lugar de embeber codigo Java directamente."
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports.freemarker = freemarker;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const freemarker: {
|
|
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: "#326CE5";
|
|
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 { freemarker };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const freemarker: {
|
|
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: "#326CE5";
|
|
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 { freemarker };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// src/languages/freemarker.ts
|
|
2
|
+
var freemarker = {
|
|
3
|
+
slug: "freemarker",
|
|
4
|
+
publishedDate: "1999-01-01",
|
|
5
|
+
extensions: [".ftl", ".ftlh", ".ftlx"],
|
|
6
|
+
author: "Apache Software Foundation",
|
|
7
|
+
website: "https://freemarker.apache.org",
|
|
8
|
+
paradigms: ["template", "declarative"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["JVM"],
|
|
11
|
+
packageManagers: ["Maven", "Gradle"],
|
|
12
|
+
ecosystems: ["Java", "Web", "Apache"]
|
|
13
|
+
},
|
|
14
|
+
version: "2.3.34",
|
|
15
|
+
logo: "https://dummyimage.com/32x32/326CE5/ffffff.png&text=FM",
|
|
16
|
+
color: "#326CE5",
|
|
17
|
+
i18n: {
|
|
18
|
+
en: {
|
|
19
|
+
name: "FreeMarker",
|
|
20
|
+
description: "A JVM template language used to generate HTML, emails, configuration files, and other text output.",
|
|
21
|
+
longDescription: "Apache FreeMarker is a template engine and template language for Java applications. It separates presentation text from application code and can generate HTML pages, emails, source files, configuration files, and other structured text.\n\nFreeMarker templates use expressions, directives, macros, includes, and data-model access rather than embedding Java code directly. It is common in server-side Java web applications and code generation workflows."
|
|
22
|
+
},
|
|
23
|
+
es: {
|
|
24
|
+
name: "FreeMarker",
|
|
25
|
+
description: "Lenguaje de plantillas para la JVM usado para generar HTML, correos, configuracion y otras salidas de texto.",
|
|
26
|
+
longDescription: "Apache FreeMarker es un motor y lenguaje de plantillas para aplicaciones Java. Separa el texto de presentacion del codigo de aplicacion y puede generar paginas HTML, correos, codigo fuente, archivos de configuracion y otros textos estructurados.\n\nLas plantillas FreeMarker usan expresiones, directivas, macros, inclusiones y acceso a modelos de datos en lugar de embeber codigo Java directamente."
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export { freemarker };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/fstar.ts
|
|
4
|
+
var fstar = {
|
|
5
|
+
slug: "fstar",
|
|
6
|
+
publishedDate: "2011-01-01",
|
|
7
|
+
extensions: [".fst", ".fsti"],
|
|
8
|
+
author: "Microsoft Research / INRIA",
|
|
9
|
+
website: "https://www.fstar-lang.org",
|
|
10
|
+
paradigms: ["functional", "dependent types", "formal verification"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["F* toolchain", "OCaml", "F#", "C"],
|
|
13
|
+
packageManagers: ["opam", "NuGet"],
|
|
14
|
+
ecosystems: ["Formal Methods", "ML", "Low-level Verification"]
|
|
15
|
+
},
|
|
16
|
+
version: "2026.04.17",
|
|
17
|
+
logo: "https://dummyimage.com/32x32/572E91/ffffff.png&text=F%2A",
|
|
18
|
+
color: "#572E91",
|
|
19
|
+
i18n: {
|
|
20
|
+
en: {
|
|
21
|
+
name: "F*",
|
|
22
|
+
description: "A dependently typed functional language for program verification, proofs, and extraction to executable code.",
|
|
23
|
+
longDescription: "F* is a verification-oriented functional language with dependent types, refinement types, effects, and proof automation. It is used to specify and verify functional correctness, security properties, and low-level systems code.\n\nPrograms and proofs can be checked by the F* toolchain and extracted to targets such as OCaml, F#, and C through related tooling. The language is used in research and high-assurance projects where executable code and machine-checked proofs need to stay close together."
|
|
24
|
+
},
|
|
25
|
+
es: {
|
|
26
|
+
name: "F*",
|
|
27
|
+
description: "Lenguaje funcional con tipos dependientes para verificacion de programas, pruebas y extraccion a codigo ejecutable.",
|
|
28
|
+
longDescription: "F* es un lenguaje funcional orientado a verificacion con tipos dependientes, tipos refinados, efectos y automatizacion de pruebas. Se usa para especificar y verificar correccion funcional, propiedades de seguridad y codigo de sistemas de bajo nivel.\n\nLos programas y pruebas se revisan con la cadena de herramientas de F* y pueden extraerse a destinos como OCaml, F# y C mediante herramientas relacionadas."
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports.fstar = fstar;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const fstar: {
|
|
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: "#572E91";
|
|
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 { fstar };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const fstar: {
|
|
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: "#572E91";
|
|
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 { fstar };
|