code-languages 1.29.1 → 1.30.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 +427 -0
- package/dist/api.d.cts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +427 -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 +307 -0
- package/dist/detect.js +307 -0
- package/dist/index.cjs +437 -0
- package/dist/index.d.cts +278 -1
- package/dist/index.d.ts +278 -1
- package/dist/index.js +438 -1
- 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/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
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// src/languages/fstar.ts
|
|
2
|
+
var fstar = {
|
|
3
|
+
slug: "fstar",
|
|
4
|
+
publishedDate: "2011-01-01",
|
|
5
|
+
extensions: [".fst", ".fsti"],
|
|
6
|
+
author: "Microsoft Research / INRIA",
|
|
7
|
+
website: "https://www.fstar-lang.org",
|
|
8
|
+
paradigms: ["functional", "dependent types", "formal verification"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["F* toolchain", "OCaml", "F#", "C"],
|
|
11
|
+
packageManagers: ["opam", "NuGet"],
|
|
12
|
+
ecosystems: ["Formal Methods", "ML", "Low-level Verification"]
|
|
13
|
+
},
|
|
14
|
+
version: "2026.04.17",
|
|
15
|
+
logo: "https://dummyimage.com/32x32/572E91/ffffff.png&text=F%2A",
|
|
16
|
+
color: "#572E91",
|
|
17
|
+
i18n: {
|
|
18
|
+
en: {
|
|
19
|
+
name: "F*",
|
|
20
|
+
description: "A dependently typed functional language for program verification, proofs, and extraction to executable code.",
|
|
21
|
+
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."
|
|
22
|
+
},
|
|
23
|
+
es: {
|
|
24
|
+
name: "F*",
|
|
25
|
+
description: "Lenguaje funcional con tipos dependientes para verificacion de programas, pruebas y extraccion a codigo ejecutable.",
|
|
26
|
+
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."
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export { fstar };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/isabelle.ts
|
|
4
|
+
var isabelle = {
|
|
5
|
+
slug: "isabelle",
|
|
6
|
+
publishedDate: "1986-01-01",
|
|
7
|
+
extensions: [".thy"],
|
|
8
|
+
author: "Lawrence Paulson / University of Cambridge and TU Munich",
|
|
9
|
+
website: "https://isabelle.in.tum.de",
|
|
10
|
+
paradigms: ["theorem proving", "declarative", "functional"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["Isabelle/jEdit", "Poly/ML", "Scala"],
|
|
13
|
+
ecosystems: ["Formal Methods", "Proof Assistants", "Higher-order Logic"]
|
|
14
|
+
},
|
|
15
|
+
version: "Isabelle2025-2",
|
|
16
|
+
logo: "https://dummyimage.com/32x32/6A5ACD/ffffff.png&text=Is",
|
|
17
|
+
color: "#6A5ACD",
|
|
18
|
+
i18n: {
|
|
19
|
+
en: {
|
|
20
|
+
name: "Isabelle",
|
|
21
|
+
description: "A proof assistant and theory language for machine-checked mathematics, logic, and formal verification.",
|
|
22
|
+
longDescription: "Isabelle is a generic proof assistant with a rich theory language used to develop machine-checked mathematics and formal verification projects. Its most common object logic is Isabelle/HOL, a higher-order logic used in many academic and industrial verification efforts.\n\nIsabelle theory files combine definitions, lemmas, structured Isar proofs, automation, and document-oriented markup. The system includes an IDE, libraries, code generation support, and integrations with external automated provers."
|
|
23
|
+
},
|
|
24
|
+
es: {
|
|
25
|
+
name: "Isabelle",
|
|
26
|
+
description: "Asistente de pruebas y lenguaje de teorias para matematica, logica y verificacion formal comprobadas por maquina.",
|
|
27
|
+
longDescription: "Isabelle es un asistente de pruebas generico con un lenguaje de teorias usado para desarrollar matematica comprobada por maquina y proyectos de verificacion formal. Su logica objeto mas comun es Isabelle/HOL, una logica de orden superior usada en muchos trabajos academicos e industriales.\n\nLos archivos de teoria combinan definiciones, lemas, pruebas estructuradas Isar, automatizacion y marcado orientado a documentos."
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
exports.isabelle = isabelle;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const isabelle: {
|
|
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: "#6A5ACD";
|
|
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 { isabelle };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const isabelle: {
|
|
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: "#6A5ACD";
|
|
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 { isabelle };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// src/languages/isabelle.ts
|
|
2
|
+
var isabelle = {
|
|
3
|
+
slug: "isabelle",
|
|
4
|
+
publishedDate: "1986-01-01",
|
|
5
|
+
extensions: [".thy"],
|
|
6
|
+
author: "Lawrence Paulson / University of Cambridge and TU Munich",
|
|
7
|
+
website: "https://isabelle.in.tum.de",
|
|
8
|
+
paradigms: ["theorem proving", "declarative", "functional"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["Isabelle/jEdit", "Poly/ML", "Scala"],
|
|
11
|
+
ecosystems: ["Formal Methods", "Proof Assistants", "Higher-order Logic"]
|
|
12
|
+
},
|
|
13
|
+
version: "Isabelle2025-2",
|
|
14
|
+
logo: "https://dummyimage.com/32x32/6A5ACD/ffffff.png&text=Is",
|
|
15
|
+
color: "#6A5ACD",
|
|
16
|
+
i18n: {
|
|
17
|
+
en: {
|
|
18
|
+
name: "Isabelle",
|
|
19
|
+
description: "A proof assistant and theory language for machine-checked mathematics, logic, and formal verification.",
|
|
20
|
+
longDescription: "Isabelle is a generic proof assistant with a rich theory language used to develop machine-checked mathematics and formal verification projects. Its most common object logic is Isabelle/HOL, a higher-order logic used in many academic and industrial verification efforts.\n\nIsabelle theory files combine definitions, lemmas, structured Isar proofs, automation, and document-oriented markup. The system includes an IDE, libraries, code generation support, and integrations with external automated provers."
|
|
21
|
+
},
|
|
22
|
+
es: {
|
|
23
|
+
name: "Isabelle",
|
|
24
|
+
description: "Asistente de pruebas y lenguaje de teorias para matematica, logica y verificacion formal comprobadas por maquina.",
|
|
25
|
+
longDescription: "Isabelle es un asistente de pruebas generico con un lenguaje de teorias usado para desarrollar matematica comprobada por maquina y proyectos de verificacion formal. Su logica objeto mas comun es Isabelle/HOL, una logica de orden superior usada en muchos trabajos academicos e industriales.\n\nLos archivos de teoria combinan definiciones, lemas, pruebas estructuradas Isar, automatizacion y marcado orientado a documentos."
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { isabelle };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/jsonc.ts
|
|
4
|
+
var jsonc = {
|
|
5
|
+
slug: "jsonc",
|
|
6
|
+
publishedDate: "2015-04-29",
|
|
7
|
+
extensions: [".jsonc", ".code-workspace"],
|
|
8
|
+
author: "Microsoft",
|
|
9
|
+
website: "https://jsonc.org",
|
|
10
|
+
paradigms: ["data serialization", "configuration"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["Editors", "Build tools"],
|
|
13
|
+
ecosystems: ["JavaScript", "TypeScript", "Configuration"]
|
|
14
|
+
},
|
|
15
|
+
version: "JSON with Comments",
|
|
16
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_json.svg",
|
|
17
|
+
color: "#F5DE19",
|
|
18
|
+
i18n: {
|
|
19
|
+
en: {
|
|
20
|
+
name: "JSONC",
|
|
21
|
+
description: "A JSON-compatible configuration format that permits JavaScript-style comments and optional editor-friendly extensions.",
|
|
22
|
+
longDescription: "JSONC, or JSON with Comments, is a JSON-derived configuration format that allows comments while preserving the familiar JSON data model. It is widely recognized because Visual Studio Code uses it for settings, launch configurations, and workspace files.\n\nThe format is intended for human-maintained configuration rather than data interchange between services. Tooling usually parses JSONC into ordinary JSON-like values after stripping comments and handling the accepted extensions."
|
|
23
|
+
},
|
|
24
|
+
es: {
|
|
25
|
+
name: "JSONC",
|
|
26
|
+
description: "Formato de configuracion compatible con JSON que permite comentarios estilo JavaScript y extensiones amigables para editores.",
|
|
27
|
+
longDescription: "JSONC, o JSON con comentarios, es un formato de configuracion derivado de JSON que permite comentarios sin abandonar el modelo de datos familiar. Es muy conocido porque Visual Studio Code lo usa en ajustes, configuraciones de ejecucion y archivos de workspace.\n\nEsta pensado para configuracion mantenida por humanos, no para intercambio de datos entre servicios. Las herramientas suelen convertir JSONC a valores similares a JSON tras quitar comentarios."
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
exports.jsonc = jsonc;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const jsonc: {
|
|
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: "#F5DE19";
|
|
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 { jsonc };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const jsonc: {
|
|
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: "#F5DE19";
|
|
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 { jsonc };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// src/languages/jsonc.ts
|
|
2
|
+
var jsonc = {
|
|
3
|
+
slug: "jsonc",
|
|
4
|
+
publishedDate: "2015-04-29",
|
|
5
|
+
extensions: [".jsonc", ".code-workspace"],
|
|
6
|
+
author: "Microsoft",
|
|
7
|
+
website: "https://jsonc.org",
|
|
8
|
+
paradigms: ["data serialization", "configuration"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["Editors", "Build tools"],
|
|
11
|
+
ecosystems: ["JavaScript", "TypeScript", "Configuration"]
|
|
12
|
+
},
|
|
13
|
+
version: "JSON with Comments",
|
|
14
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_json.svg",
|
|
15
|
+
color: "#F5DE19",
|
|
16
|
+
i18n: {
|
|
17
|
+
en: {
|
|
18
|
+
name: "JSONC",
|
|
19
|
+
description: "A JSON-compatible configuration format that permits JavaScript-style comments and optional editor-friendly extensions.",
|
|
20
|
+
longDescription: "JSONC, or JSON with Comments, is a JSON-derived configuration format that allows comments while preserving the familiar JSON data model. It is widely recognized because Visual Studio Code uses it for settings, launch configurations, and workspace files.\n\nThe format is intended for human-maintained configuration rather than data interchange between services. Tooling usually parses JSONC into ordinary JSON-like values after stripping comments and handling the accepted extensions."
|
|
21
|
+
},
|
|
22
|
+
es: {
|
|
23
|
+
name: "JSONC",
|
|
24
|
+
description: "Formato de configuracion compatible con JSON que permite comentarios estilo JavaScript y extensiones amigables para editores.",
|
|
25
|
+
longDescription: "JSONC, o JSON con comentarios, es un formato de configuracion derivado de JSON que permite comentarios sin abandonar el modelo de datos familiar. Es muy conocido porque Visual Studio Code lo usa en ajustes, configuraciones de ejecucion y archivos de workspace.\n\nEsta pensado para configuracion mantenida por humanos, no para intercambio de datos entre servicios. Las herramientas suelen convertir JSONC a valores similares a JSON tras quitar comentarios."
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { jsonc };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/just.ts
|
|
4
|
+
var just = {
|
|
5
|
+
slug: "just",
|
|
6
|
+
publishedDate: "2016-03-13",
|
|
7
|
+
extensions: ["justfile", "Justfile", ".just"],
|
|
8
|
+
author: "Casey Rodarmor",
|
|
9
|
+
website: "https://just.systems",
|
|
10
|
+
paradigms: ["task automation", "command runner"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["just"],
|
|
13
|
+
packageManagers: ["Cargo", "Homebrew", "Scoop"],
|
|
14
|
+
ecosystems: ["CLI", "Build Automation", "DevOps"]
|
|
15
|
+
},
|
|
16
|
+
version: "1.44.0",
|
|
17
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_just.svg",
|
|
18
|
+
color: "#384D54",
|
|
19
|
+
i18n: {
|
|
20
|
+
en: {
|
|
21
|
+
name: "Just",
|
|
22
|
+
description: "A command-runner language for project recipes, task automation, and repeatable developer workflows.",
|
|
23
|
+
longDescription: "Just is a command runner whose justfile syntax defines named recipes for common project tasks. It is often used as a friendlier alternative to ad hoc shell scripts or make targets when dependency graph semantics are not needed.\n\nRecipes can accept parameters, set variables, choose shells, load dotenv files, and compose other recipes. The format is popular for local development workflows, CI helpers, release commands, and cross-platform project automation."
|
|
24
|
+
},
|
|
25
|
+
es: {
|
|
26
|
+
name: "Just",
|
|
27
|
+
description: "Lenguaje de recetas para ejecutar comandos de proyecto, automatizar tareas y repetir flujos de desarrollo.",
|
|
28
|
+
longDescription: "Just es un ejecutor de comandos cuya sintaxis justfile define recetas con nombre para tareas comunes del proyecto. Se usa como alternativa mas amable a scripts shell dispersos o targets de make cuando no se necesita un grafo de dependencias.\n\nLas recetas pueden aceptar parametros, definir variables, elegir shells, cargar archivos dotenv y componer otras recetas. Es comun en desarrollo local, ayudas de CI, comandos de release y automatizacion multiplataforma."
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports.just = just;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const just: {
|
|
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: "#384D54";
|
|
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 { just };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const just: {
|
|
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: "#384D54";
|
|
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 { just };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// src/languages/just.ts
|
|
2
|
+
var just = {
|
|
3
|
+
slug: "just",
|
|
4
|
+
publishedDate: "2016-03-13",
|
|
5
|
+
extensions: ["justfile", "Justfile", ".just"],
|
|
6
|
+
author: "Casey Rodarmor",
|
|
7
|
+
website: "https://just.systems",
|
|
8
|
+
paradigms: ["task automation", "command runner"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["just"],
|
|
11
|
+
packageManagers: ["Cargo", "Homebrew", "Scoop"],
|
|
12
|
+
ecosystems: ["CLI", "Build Automation", "DevOps"]
|
|
13
|
+
},
|
|
14
|
+
version: "1.44.0",
|
|
15
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_just.svg",
|
|
16
|
+
color: "#384D54",
|
|
17
|
+
i18n: {
|
|
18
|
+
en: {
|
|
19
|
+
name: "Just",
|
|
20
|
+
description: "A command-runner language for project recipes, task automation, and repeatable developer workflows.",
|
|
21
|
+
longDescription: "Just is a command runner whose justfile syntax defines named recipes for common project tasks. It is often used as a friendlier alternative to ad hoc shell scripts or make targets when dependency graph semantics are not needed.\n\nRecipes can accept parameters, set variables, choose shells, load dotenv files, and compose other recipes. The format is popular for local development workflows, CI helpers, release commands, and cross-platform project automation."
|
|
22
|
+
},
|
|
23
|
+
es: {
|
|
24
|
+
name: "Just",
|
|
25
|
+
description: "Lenguaje de recetas para ejecutar comandos de proyecto, automatizar tareas y repetir flujos de desarrollo.",
|
|
26
|
+
longDescription: "Just es un ejecutor de comandos cuya sintaxis justfile define recetas con nombre para tareas comunes del proyecto. Se usa como alternativa mas amable a scripts shell dispersos o targets de make cuando no se necesita un grafo de dependencias.\n\nLas recetas pueden aceptar parametros, definir variables, elegir shells, cargar archivos dotenv y componer otras recetas. Es comun en desarrollo local, ayudas de CI, comandos de release y automatizacion multiplataforma."
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export { just };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/kdl.ts
|
|
4
|
+
var kdl = {
|
|
5
|
+
slug: "kdl",
|
|
6
|
+
publishedDate: "2021-08-29",
|
|
7
|
+
extensions: [".kdl"],
|
|
8
|
+
author: "Kat Marchan and contributors",
|
|
9
|
+
website: "https://kdl.dev",
|
|
10
|
+
paradigms: ["configuration", "document language", "data serialization"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["Parsers", "CLI tools"],
|
|
13
|
+
ecosystems: ["Configuration", "Rust", "Structured Documents"]
|
|
14
|
+
},
|
|
15
|
+
version: "2.0.0",
|
|
16
|
+
logo: "https://dummyimage.com/32x32/6B4E9B/ffffff.png&text=KDL",
|
|
17
|
+
color: "#6B4E9B",
|
|
18
|
+
i18n: {
|
|
19
|
+
en: {
|
|
20
|
+
name: "KDL",
|
|
21
|
+
description: "A node-based document language for readable configuration, structured data, and tree-shaped documents.",
|
|
22
|
+
longDescription: "KDL is a document language built around named nodes with arguments, properties, and nested children. Its syntax is designed to be easier to read and edit by hand than many dense data formats while still mapping cleanly to structured data.\n\nIt is used for configuration files, domain-specific documents, and tools that need comments, ordering, and tree-shaped data. The KDL ecosystem includes parsers for multiple languages and a versioned specification."
|
|
23
|
+
},
|
|
24
|
+
es: {
|
|
25
|
+
name: "KDL",
|
|
26
|
+
description: "Lenguaje documental basado en nodos para configuracion legible, datos estructurados y documentos en forma de arbol.",
|
|
27
|
+
longDescription: "KDL es un lenguaje documental basado en nodos con argumentos, propiedades e hijos anidados. Su sintaxis busca ser mas facil de leer y editar a mano que muchos formatos densos, sin perder una correspondencia clara con datos estructurados.\n\nSe usa para archivos de configuracion, documentos especificos de dominio y herramientas que necesitan comentarios, orden y datos en forma de arbol."
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
exports.kdl = kdl;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const kdl: {
|
|
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: "#6B4E9B";
|
|
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 { kdl };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const kdl: {
|
|
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: "#6B4E9B";
|
|
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 { kdl };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// src/languages/kdl.ts
|
|
2
|
+
var kdl = {
|
|
3
|
+
slug: "kdl",
|
|
4
|
+
publishedDate: "2021-08-29",
|
|
5
|
+
extensions: [".kdl"],
|
|
6
|
+
author: "Kat Marchan and contributors",
|
|
7
|
+
website: "https://kdl.dev",
|
|
8
|
+
paradigms: ["configuration", "document language", "data serialization"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["Parsers", "CLI tools"],
|
|
11
|
+
ecosystems: ["Configuration", "Rust", "Structured Documents"]
|
|
12
|
+
},
|
|
13
|
+
version: "2.0.0",
|
|
14
|
+
logo: "https://dummyimage.com/32x32/6B4E9B/ffffff.png&text=KDL",
|
|
15
|
+
color: "#6B4E9B",
|
|
16
|
+
i18n: {
|
|
17
|
+
en: {
|
|
18
|
+
name: "KDL",
|
|
19
|
+
description: "A node-based document language for readable configuration, structured data, and tree-shaped documents.",
|
|
20
|
+
longDescription: "KDL is a document language built around named nodes with arguments, properties, and nested children. Its syntax is designed to be easier to read and edit by hand than many dense data formats while still mapping cleanly to structured data.\n\nIt is used for configuration files, domain-specific documents, and tools that need comments, ordering, and tree-shaped data. The KDL ecosystem includes parsers for multiple languages and a versioned specification."
|
|
21
|
+
},
|
|
22
|
+
es: {
|
|
23
|
+
name: "KDL",
|
|
24
|
+
description: "Lenguaje documental basado en nodos para configuracion legible, datos estructurados y documentos en forma de arbol.",
|
|
25
|
+
longDescription: "KDL es un lenguaje documental basado en nodos con argumentos, propiedades e hijos anidados. Su sintaxis busca ser mas facil de leer y editar a mano que muchos formatos densos, sin perder una correspondencia clara con datos estructurados.\n\nSe usa para archivos de configuracion, documentos especificos de dominio y herramientas que necesitan comentarios, orden y datos en forma de arbol."
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export { kdl };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/openapi.ts
|
|
4
|
+
var openapi = {
|
|
5
|
+
slug: "openapi",
|
|
6
|
+
publishedDate: "2011-08-10",
|
|
7
|
+
extensions: [".openapi.json", ".openapi.yaml", ".openapi.yml"],
|
|
8
|
+
author: "OpenAPI Initiative",
|
|
9
|
+
website: "https://www.openapis.org",
|
|
10
|
+
paradigms: ["api description", "schema", "declarative"],
|
|
11
|
+
tooling: {
|
|
12
|
+
runtimes: ["OpenAPI tooling"],
|
|
13
|
+
packageManagers: ["npm", "Maven", "Docker"],
|
|
14
|
+
ecosystems: ["HTTP APIs", "REST", "Documentation"]
|
|
15
|
+
},
|
|
16
|
+
version: "3.2.0",
|
|
17
|
+
logo: "https://cdn.simpleicons.org/openapiinitiative/6BA539",
|
|
18
|
+
color: "#6BA539",
|
|
19
|
+
i18n: {
|
|
20
|
+
en: {
|
|
21
|
+
name: "OpenAPI",
|
|
22
|
+
description: "A language-neutral specification format for describing HTTP APIs, schemas, operations, and documentation.",
|
|
23
|
+
longDescription: "OpenAPI is a specification format for describing HTTP APIs in a machine-readable and human-readable way. OpenAPI documents define paths, operations, parameters, request bodies, responses, authentication, reusable components, and schema information.\n\nThe format is commonly written in YAML or JSON and powers API documentation, client and server generation, contract testing, governance, and design workflows. It originated as Swagger and is now maintained by the OpenAPI Initiative."
|
|
24
|
+
},
|
|
25
|
+
es: {
|
|
26
|
+
name: "OpenAPI",
|
|
27
|
+
description: "Formato de especificacion neutral al lenguaje para describir APIs HTTP, esquemas, operaciones y documentacion.",
|
|
28
|
+
longDescription: "OpenAPI es un formato de especificacion para describir APIs HTTP de manera legible para maquinas y personas. Los documentos OpenAPI definen rutas, operaciones, parametros, cuerpos de solicitud, respuestas, autenticacion, componentes reutilizables e informacion de esquemas.\n\nSuele escribirse en YAML o JSON y alimenta documentacion de APIs, generacion de clientes y servidores, pruebas de contrato, gobierno y flujos de diseno."
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports.openapi = openapi;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const openapi: {
|
|
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: "#6BA539";
|
|
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 { openapi };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const openapi: {
|
|
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: "#6BA539";
|
|
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 { openapi };
|