code-languages 1.8.0 → 1.9.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.
@@ -0,0 +1,33 @@
1
+ 'use strict';
2
+
3
+ // src/languages/batch.ts
4
+ var batch = {
5
+ slug: "batch",
6
+ publishedDate: "1981-08-12",
7
+ extensions: [".bat", ".cmd"],
8
+ author: "Microsoft / IBM",
9
+ website: "https://learn.microsoft.com/windows-server/administration/windows-commands/windows-commands",
10
+ paradigms: ["command", "imperative", "scripting", "shell"],
11
+ tooling: {
12
+ runtimes: ["Command Prompt", "cmd.exe", "MS-DOS"],
13
+ ecosystems: ["Windows", "DOS", "Automation"]
14
+ },
15
+ version: "Windows Command Processor",
16
+ logo: "https://icons.iconarchive.com/icons/simpleicons-team/simple/128/windowsterminal-icon.png",
17
+ i18n: {
18
+ en: {
19
+ name: "Batch",
20
+ description: "A Windows command scripting format used to automate command-line tasks with cmd.exe.",
21
+ longDescription: "Batch files contain commands interpreted by the Windows Command Processor, including command invocation, variables, labels, conditionals, loops, argument handling, and process control.\n\nThey are used for Windows setup scripts, developer shortcuts, administrative automation, legacy DOS workflows, and simple command-line task orchestration on Windows systems."
22
+ },
23
+ es: {
24
+ name: "Batch",
25
+ description: "Un formato de scripting de comandos de Windows usado para automatizar tareas con cmd.exe.",
26
+ longDescription: "Los archivos Batch contienen comandos interpretados por Windows Command Processor, incluyendo invocacion de comandos, variables, etiquetas, condicionales, bucles, manejo de argumentos y control de procesos.\n\nSe usan para scripts de configuracion en Windows, accesos rapidos de desarrollo, automatizacion administrativa, flujos legacy de DOS y orquestacion simple de tareas de linea de comandos en sistemas Windows."
27
+ }
28
+ }
29
+ };
30
+
31
+ exports.batch = batch;
32
+ //# sourceMappingURL=batch.cjs.map
33
+ //# sourceMappingURL=batch.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/languages/batch.ts"],"names":[],"mappings":";;;AAEO,IAAM,KAAA,GAAQ;AAAA,EACnB,IAAA,EAAM,OAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,EAC3B,MAAA,EAAQ,iBAAA;AAAA,EACR,OAAA,EACE,6FAAA;AAAA,EACF,SAAA,EAAW,CAAC,SAAA,EAAW,YAAA,EAAc,aAAa,OAAO,CAAA;AAAA,EACzD,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,gBAAA,EAAkB,SAAA,EAAW,QAAQ,CAAA;AAAA,IAChD,UAAA,EAAY,CAAC,SAAA,EAAW,KAAA,EAAO,YAAY;AAAA,GAC7C;AAAA,EACA,OAAA,EAAS,2BAAA;AAAA,EACT,IAAA,EAAM,0FAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,OAAA;AAAA,MACN,WAAA,EACE,sFAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,OAAA;AAAA,MACN,WAAA,EACE,2FAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"batch.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const batch = {\n slug: \"batch\",\n publishedDate: \"1981-08-12\",\n extensions: [\".bat\", \".cmd\"],\n author: \"Microsoft / IBM\",\n website:\n \"https://learn.microsoft.com/windows-server/administration/windows-commands/windows-commands\",\n paradigms: [\"command\", \"imperative\", \"scripting\", \"shell\"],\n tooling: {\n runtimes: [\"Command Prompt\", \"cmd.exe\", \"MS-DOS\"],\n ecosystems: [\"Windows\", \"DOS\", \"Automation\"],\n },\n version: \"Windows Command Processor\",\n logo: \"https://icons.iconarchive.com/icons/simpleicons-team/simple/128/windowsterminal-icon.png\",\n i18n: {\n en: {\n name: \"Batch\",\n description:\n \"A Windows command scripting format used to automate command-line tasks with cmd.exe.\",\n longDescription:\n \"Batch files contain commands interpreted by the Windows Command Processor, including command invocation, variables, labels, conditionals, loops, argument handling, and process control.\\n\\nThey are used for Windows setup scripts, developer shortcuts, administrative automation, legacy DOS workflows, and simple command-line task orchestration on Windows systems.\",\n },\n es: {\n name: \"Batch\",\n description:\n \"Un formato de scripting de comandos de Windows usado para automatizar tareas con cmd.exe.\",\n longDescription:\n \"Los archivos Batch contienen comandos interpretados por Windows Command Processor, incluyendo invocacion de comandos, variables, etiquetas, condicionales, bucles, manejo de argumentos y control de procesos.\\n\\nSe usan para scripts de configuracion en Windows, accesos rapidos de desarrollo, automatizacion administrativa, flujos legacy de DOS y orquestacion simple de tareas de linea de comandos en sistemas Windows.\",\n },\n },\n} satisfies Language;\n"]}
@@ -0,0 +1,28 @@
1
+ declare const batch: {
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
+ i18n: {
15
+ en: {
16
+ name: string;
17
+ description: string;
18
+ longDescription: string;
19
+ };
20
+ es: {
21
+ name: string;
22
+ description: string;
23
+ longDescription: string;
24
+ };
25
+ };
26
+ };
27
+
28
+ export { batch };
@@ -0,0 +1,28 @@
1
+ declare const batch: {
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
+ i18n: {
15
+ en: {
16
+ name: string;
17
+ description: string;
18
+ longDescription: string;
19
+ };
20
+ es: {
21
+ name: string;
22
+ description: string;
23
+ longDescription: string;
24
+ };
25
+ };
26
+ };
27
+
28
+ export { batch };
@@ -0,0 +1,31 @@
1
+ // src/languages/batch.ts
2
+ var batch = {
3
+ slug: "batch",
4
+ publishedDate: "1981-08-12",
5
+ extensions: [".bat", ".cmd"],
6
+ author: "Microsoft / IBM",
7
+ website: "https://learn.microsoft.com/windows-server/administration/windows-commands/windows-commands",
8
+ paradigms: ["command", "imperative", "scripting", "shell"],
9
+ tooling: {
10
+ runtimes: ["Command Prompt", "cmd.exe", "MS-DOS"],
11
+ ecosystems: ["Windows", "DOS", "Automation"]
12
+ },
13
+ version: "Windows Command Processor",
14
+ logo: "https://icons.iconarchive.com/icons/simpleicons-team/simple/128/windowsterminal-icon.png",
15
+ i18n: {
16
+ en: {
17
+ name: "Batch",
18
+ description: "A Windows command scripting format used to automate command-line tasks with cmd.exe.",
19
+ longDescription: "Batch files contain commands interpreted by the Windows Command Processor, including command invocation, variables, labels, conditionals, loops, argument handling, and process control.\n\nThey are used for Windows setup scripts, developer shortcuts, administrative automation, legacy DOS workflows, and simple command-line task orchestration on Windows systems."
20
+ },
21
+ es: {
22
+ name: "Batch",
23
+ description: "Un formato de scripting de comandos de Windows usado para automatizar tareas con cmd.exe.",
24
+ longDescription: "Los archivos Batch contienen comandos interpretados por Windows Command Processor, incluyendo invocacion de comandos, variables, etiquetas, condicionales, bucles, manejo de argumentos y control de procesos.\n\nSe usan para scripts de configuracion en Windows, accesos rapidos de desarrollo, automatizacion administrativa, flujos legacy de DOS y orquestacion simple de tareas de linea de comandos en sistemas Windows."
25
+ }
26
+ }
27
+ };
28
+
29
+ export { batch };
30
+ //# sourceMappingURL=batch.js.map
31
+ //# sourceMappingURL=batch.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/languages/batch.ts"],"names":[],"mappings":";AAEO,IAAM,KAAA,GAAQ;AAAA,EACnB,IAAA,EAAM,OAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,EAC3B,MAAA,EAAQ,iBAAA;AAAA,EACR,OAAA,EACE,6FAAA;AAAA,EACF,SAAA,EAAW,CAAC,SAAA,EAAW,YAAA,EAAc,aAAa,OAAO,CAAA;AAAA,EACzD,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,gBAAA,EAAkB,SAAA,EAAW,QAAQ,CAAA;AAAA,IAChD,UAAA,EAAY,CAAC,SAAA,EAAW,KAAA,EAAO,YAAY;AAAA,GAC7C;AAAA,EACA,OAAA,EAAS,2BAAA;AAAA,EACT,IAAA,EAAM,0FAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,OAAA;AAAA,MACN,WAAA,EACE,sFAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,OAAA;AAAA,MACN,WAAA,EACE,2FAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"batch.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const batch = {\n slug: \"batch\",\n publishedDate: \"1981-08-12\",\n extensions: [\".bat\", \".cmd\"],\n author: \"Microsoft / IBM\",\n website:\n \"https://learn.microsoft.com/windows-server/administration/windows-commands/windows-commands\",\n paradigms: [\"command\", \"imperative\", \"scripting\", \"shell\"],\n tooling: {\n runtimes: [\"Command Prompt\", \"cmd.exe\", \"MS-DOS\"],\n ecosystems: [\"Windows\", \"DOS\", \"Automation\"],\n },\n version: \"Windows Command Processor\",\n logo: \"https://icons.iconarchive.com/icons/simpleicons-team/simple/128/windowsterminal-icon.png\",\n i18n: {\n en: {\n name: \"Batch\",\n description:\n \"A Windows command scripting format used to automate command-line tasks with cmd.exe.\",\n longDescription:\n \"Batch files contain commands interpreted by the Windows Command Processor, including command invocation, variables, labels, conditionals, loops, argument handling, and process control.\\n\\nThey are used for Windows setup scripts, developer shortcuts, administrative automation, legacy DOS workflows, and simple command-line task orchestration on Windows systems.\",\n },\n es: {\n name: \"Batch\",\n description:\n \"Un formato de scripting de comandos de Windows usado para automatizar tareas con cmd.exe.\",\n longDescription:\n \"Los archivos Batch contienen comandos interpretados por Windows Command Processor, incluyendo invocacion de comandos, variables, etiquetas, condicionales, bucles, manejo de argumentos y control de procesos.\\n\\nSe usan para scripts de configuracion en Windows, accesos rapidos de desarrollo, automatizacion administrativa, flujos legacy de DOS y orquestacion simple de tareas de linea de comandos en sistemas Windows.\",\n },\n },\n} satisfies Language;\n"]}
@@ -0,0 +1,33 @@
1
+ 'use strict';
2
+
3
+ // src/languages/git.ts
4
+ var git = {
5
+ slug: "git",
6
+ publishedDate: "2005-04-07",
7
+ extensions: [".git", ".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"],
8
+ author: "Linus Torvalds / Junio C Hamano",
9
+ website: "https://git-scm.com",
10
+ paradigms: ["configuration", "version-control", "ignore-patterns"],
11
+ tooling: {
12
+ runtimes: ["Git"],
13
+ ecosystems: ["Version Control", "DevOps", "Source Control"]
14
+ },
15
+ version: "2.54.0",
16
+ logo: "https://cdn.simpleicons.org/git/F05032",
17
+ i18n: {
18
+ en: {
19
+ name: "Git",
20
+ description: "Metadata and configuration files used by Git repositories and version-control workflows.",
21
+ longDescription: "Git-related files define repository ignore rules, attributes, submodules, local configuration, placeholders, and repository metadata used by Git tooling.\n\nThey are used in software projects to control which files are tracked, how paths are treated, how submodules are linked, and how repository-specific automation or conventions behave."
22
+ },
23
+ es: {
24
+ name: "Git",
25
+ description: "Archivos de metadata y configuracion usados por repositorios Git y flujos de control de versiones.",
26
+ longDescription: "Los archivos relacionados con Git definen reglas de ignorado, atributos, submodulos, configuracion local, placeholders y metadata de repositorio usada por herramientas Git.\n\nSe usan en proyectos de software para controlar que archivos se versionan, como se tratan las rutas, como se enlazan submodulos y como se comportan automatizaciones o convenciones especificas del repositorio."
27
+ }
28
+ }
29
+ };
30
+
31
+ exports.git = git;
32
+ //# sourceMappingURL=git.cjs.map
33
+ //# sourceMappingURL=git.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/languages/git.ts"],"names":[],"mappings":";;;AAEO,IAAM,GAAA,GAAM;AAAA,EACjB,IAAA,EAAM,KAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,YAAY,CAAC,MAAA,EAAQ,YAAA,EAAc,gBAAA,EAAkB,eAAe,UAAU,CAAA;AAAA,EAC9E,MAAA,EAAQ,iCAAA;AAAA,EACR,OAAA,EAAS,qBAAA;AAAA,EACT,SAAA,EAAW,CAAC,eAAA,EAAiB,iBAAA,EAAmB,iBAAiB,CAAA;AAAA,EACjE,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,KAAK,CAAA;AAAA,IAChB,UAAA,EAAY,CAAC,iBAAA,EAAmB,QAAA,EAAU,gBAAgB;AAAA,GAC5D;AAAA,EACA,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM,wCAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,KAAA;AAAA,MACN,WAAA,EACE,0FAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,KAAA;AAAA,MACN,WAAA,EACE,oGAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"git.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const git = {\n slug: \"git\",\n publishedDate: \"2005-04-07\",\n extensions: [\".git\", \".gitignore\", \".gitattributes\", \".gitmodules\", \".gitkeep\"],\n author: \"Linus Torvalds / Junio C Hamano\",\n website: \"https://git-scm.com\",\n paradigms: [\"configuration\", \"version-control\", \"ignore-patterns\"],\n tooling: {\n runtimes: [\"Git\"],\n ecosystems: [\"Version Control\", \"DevOps\", \"Source Control\"],\n },\n version: \"2.54.0\",\n logo: \"https://cdn.simpleicons.org/git/F05032\",\n i18n: {\n en: {\n name: \"Git\",\n description:\n \"Metadata and configuration files used by Git repositories and version-control workflows.\",\n longDescription:\n \"Git-related files define repository ignore rules, attributes, submodules, local configuration, placeholders, and repository metadata used by Git tooling.\\n\\nThey are used in software projects to control which files are tracked, how paths are treated, how submodules are linked, and how repository-specific automation or conventions behave.\",\n },\n es: {\n name: \"Git\",\n description:\n \"Archivos de metadata y configuracion usados por repositorios Git y flujos de control de versiones.\",\n longDescription:\n \"Los archivos relacionados con Git definen reglas de ignorado, atributos, submodulos, configuracion local, placeholders y metadata de repositorio usada por herramientas Git.\\n\\nSe usan en proyectos de software para controlar que archivos se versionan, como se tratan las rutas, como se enlazan submodulos y como se comportan automatizaciones o convenciones especificas del repositorio.\",\n },\n },\n} satisfies Language;\n"]}
@@ -0,0 +1,28 @@
1
+ declare const git: {
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
+ i18n: {
15
+ en: {
16
+ name: string;
17
+ description: string;
18
+ longDescription: string;
19
+ };
20
+ es: {
21
+ name: string;
22
+ description: string;
23
+ longDescription: string;
24
+ };
25
+ };
26
+ };
27
+
28
+ export { git };
@@ -0,0 +1,28 @@
1
+ declare const git: {
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
+ i18n: {
15
+ en: {
16
+ name: string;
17
+ description: string;
18
+ longDescription: string;
19
+ };
20
+ es: {
21
+ name: string;
22
+ description: string;
23
+ longDescription: string;
24
+ };
25
+ };
26
+ };
27
+
28
+ export { git };
@@ -0,0 +1,31 @@
1
+ // src/languages/git.ts
2
+ var git = {
3
+ slug: "git",
4
+ publishedDate: "2005-04-07",
5
+ extensions: [".git", ".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"],
6
+ author: "Linus Torvalds / Junio C Hamano",
7
+ website: "https://git-scm.com",
8
+ paradigms: ["configuration", "version-control", "ignore-patterns"],
9
+ tooling: {
10
+ runtimes: ["Git"],
11
+ ecosystems: ["Version Control", "DevOps", "Source Control"]
12
+ },
13
+ version: "2.54.0",
14
+ logo: "https://cdn.simpleicons.org/git/F05032",
15
+ i18n: {
16
+ en: {
17
+ name: "Git",
18
+ description: "Metadata and configuration files used by Git repositories and version-control workflows.",
19
+ longDescription: "Git-related files define repository ignore rules, attributes, submodules, local configuration, placeholders, and repository metadata used by Git tooling.\n\nThey are used in software projects to control which files are tracked, how paths are treated, how submodules are linked, and how repository-specific automation or conventions behave."
20
+ },
21
+ es: {
22
+ name: "Git",
23
+ description: "Archivos de metadata y configuracion usados por repositorios Git y flujos de control de versiones.",
24
+ longDescription: "Los archivos relacionados con Git definen reglas de ignorado, atributos, submodulos, configuracion local, placeholders y metadata de repositorio usada por herramientas Git.\n\nSe usan en proyectos de software para controlar que archivos se versionan, como se tratan las rutas, como se enlazan submodulos y como se comportan automatizaciones o convenciones especificas del repositorio."
25
+ }
26
+ }
27
+ };
28
+
29
+ export { git };
30
+ //# sourceMappingURL=git.js.map
31
+ //# sourceMappingURL=git.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/languages/git.ts"],"names":[],"mappings":";AAEO,IAAM,GAAA,GAAM;AAAA,EACjB,IAAA,EAAM,KAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,YAAY,CAAC,MAAA,EAAQ,YAAA,EAAc,gBAAA,EAAkB,eAAe,UAAU,CAAA;AAAA,EAC9E,MAAA,EAAQ,iCAAA;AAAA,EACR,OAAA,EAAS,qBAAA;AAAA,EACT,SAAA,EAAW,CAAC,eAAA,EAAiB,iBAAA,EAAmB,iBAAiB,CAAA;AAAA,EACjE,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,KAAK,CAAA;AAAA,IAChB,UAAA,EAAY,CAAC,iBAAA,EAAmB,QAAA,EAAU,gBAAgB;AAAA,GAC5D;AAAA,EACA,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM,wCAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,KAAA;AAAA,MACN,WAAA,EACE,0FAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,KAAA;AAAA,MACN,WAAA,EACE,oGAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"git.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const git = {\n slug: \"git\",\n publishedDate: \"2005-04-07\",\n extensions: [\".git\", \".gitignore\", \".gitattributes\", \".gitmodules\", \".gitkeep\"],\n author: \"Linus Torvalds / Junio C Hamano\",\n website: \"https://git-scm.com\",\n paradigms: [\"configuration\", \"version-control\", \"ignore-patterns\"],\n tooling: {\n runtimes: [\"Git\"],\n ecosystems: [\"Version Control\", \"DevOps\", \"Source Control\"],\n },\n version: \"2.54.0\",\n logo: \"https://cdn.simpleicons.org/git/F05032\",\n i18n: {\n en: {\n name: \"Git\",\n description:\n \"Metadata and configuration files used by Git repositories and version-control workflows.\",\n longDescription:\n \"Git-related files define repository ignore rules, attributes, submodules, local configuration, placeholders, and repository metadata used by Git tooling.\\n\\nThey are used in software projects to control which files are tracked, how paths are treated, how submodules are linked, and how repository-specific automation or conventions behave.\",\n },\n es: {\n name: \"Git\",\n description:\n \"Archivos de metadata y configuracion usados por repositorios Git y flujos de control de versiones.\",\n longDescription:\n \"Los archivos relacionados con Git definen reglas de ignorado, atributos, submodulos, configuracion local, placeholders y metadata de repositorio usada por herramientas Git.\\n\\nSe usan en proyectos de software para controlar que archivos se versionan, como se tratan las rutas, como se enlazan submodulos y como se comportan automatizaciones o convenciones especificas del repositorio.\",\n },\n },\n} satisfies Language;\n"]}
@@ -0,0 +1,34 @@
1
+ 'use strict';
2
+
3
+ // src/languages/gradle.ts
4
+ var gradle = {
5
+ slug: "gradle",
6
+ publishedDate: "2007-07-01",
7
+ extensions: [".gradle", ".gradle.kts"],
8
+ author: "Hans Dockter / Gradle Inc.",
9
+ website: "https://gradle.org",
10
+ paradigms: ["build-automation", "declarative", "imperative", "configuration"],
11
+ tooling: {
12
+ runtimes: ["JVM", "Gradle"],
13
+ packageManagers: ["Gradle"],
14
+ ecosystems: ["JVM", "Android", "Java", "Kotlin", "Groovy"]
15
+ },
16
+ version: "9.5.0",
17
+ logo: "https://cdn.simpleicons.org/gradle/02303A",
18
+ i18n: {
19
+ en: {
20
+ name: "Gradle",
21
+ description: "A build automation DSL and tool used to define, configure, and run software builds.",
22
+ longDescription: "Gradle build scripts define projects, plugins, dependencies, repositories, tasks, test suites, publishing rules, and multi-project build logic using Groovy DSL or Kotlin DSL files.\n\nIt is widely used in Java, Kotlin, Android, JVM, and polyglot projects that need reproducible builds, dependency management, custom automation, and integration with CI/CD pipelines."
23
+ },
24
+ es: {
25
+ name: "Gradle",
26
+ description: "Un DSL y herramienta de automatizacion de builds usado para definir, configurar y ejecutar builds.",
27
+ longDescription: "Los scripts de build de Gradle definen proyectos, plugins, dependencias, repositorios, tareas, suites de prueba, reglas de publicacion y logica de builds multiproyecto usando archivos Groovy DSL o Kotlin DSL.\n\nSe usa ampliamente en proyectos Java, Kotlin, Android, JVM y poliglotas que necesitan builds reproducibles, gestion de dependencias, automatizacion personalizada e integracion con pipelines CI/CD."
28
+ }
29
+ }
30
+ };
31
+
32
+ exports.gradle = gradle;
33
+ //# sourceMappingURL=gradle.cjs.map
34
+ //# sourceMappingURL=gradle.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/languages/gradle.ts"],"names":[],"mappings":";;;AAEO,IAAM,MAAA,GAAS;AAAA,EACpB,IAAA,EAAM,QAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,SAAA,EAAW,aAAa,CAAA;AAAA,EACrC,MAAA,EAAQ,4BAAA;AAAA,EACR,OAAA,EAAS,oBAAA;AAAA,EACT,SAAA,EAAW,CAAC,kBAAA,EAAoB,aAAA,EAAe,cAAc,eAAe,CAAA;AAAA,EAC5E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,KAAA,EAAO,QAAQ,CAAA;AAAA,IAC1B,eAAA,EAAiB,CAAC,QAAQ,CAAA;AAAA,IAC1B,YAAY,CAAC,KAAA,EAAO,SAAA,EAAW,MAAA,EAAQ,UAAU,QAAQ;AAAA,GAC3D;AAAA,EACA,OAAA,EAAS,OAAA;AAAA,EACT,IAAA,EAAM,2CAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,QAAA;AAAA,MACN,WAAA,EACE,qFAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,QAAA;AAAA,MACN,WAAA,EACE,oGAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"gradle.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const gradle = {\n slug: \"gradle\",\n publishedDate: \"2007-07-01\",\n extensions: [\".gradle\", \".gradle.kts\"],\n author: \"Hans Dockter / Gradle Inc.\",\n website: \"https://gradle.org\",\n paradigms: [\"build-automation\", \"declarative\", \"imperative\", \"configuration\"],\n tooling: {\n runtimes: [\"JVM\", \"Gradle\"],\n packageManagers: [\"Gradle\"],\n ecosystems: [\"JVM\", \"Android\", \"Java\", \"Kotlin\", \"Groovy\"],\n },\n version: \"9.5.0\",\n logo: \"https://cdn.simpleicons.org/gradle/02303A\",\n i18n: {\n en: {\n name: \"Gradle\",\n description:\n \"A build automation DSL and tool used to define, configure, and run software builds.\",\n longDescription:\n \"Gradle build scripts define projects, plugins, dependencies, repositories, tasks, test suites, publishing rules, and multi-project build logic using Groovy DSL or Kotlin DSL files.\\n\\nIt is widely used in Java, Kotlin, Android, JVM, and polyglot projects that need reproducible builds, dependency management, custom automation, and integration with CI/CD pipelines.\",\n },\n es: {\n name: \"Gradle\",\n description:\n \"Un DSL y herramienta de automatizacion de builds usado para definir, configurar y ejecutar builds.\",\n longDescription:\n \"Los scripts de build de Gradle definen proyectos, plugins, dependencias, repositorios, tareas, suites de prueba, reglas de publicacion y logica de builds multiproyecto usando archivos Groovy DSL o Kotlin DSL.\\n\\nSe usa ampliamente en proyectos Java, Kotlin, Android, JVM y poliglotas que necesitan builds reproducibles, gestion de dependencias, automatizacion personalizada e integracion con pipelines CI/CD.\",\n },\n },\n} satisfies Language;\n"]}
@@ -0,0 +1,29 @@
1
+ declare const gradle: {
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
+ 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 { gradle };
@@ -0,0 +1,29 @@
1
+ declare const gradle: {
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
+ 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 { gradle };
@@ -0,0 +1,32 @@
1
+ // src/languages/gradle.ts
2
+ var gradle = {
3
+ slug: "gradle",
4
+ publishedDate: "2007-07-01",
5
+ extensions: [".gradle", ".gradle.kts"],
6
+ author: "Hans Dockter / Gradle Inc.",
7
+ website: "https://gradle.org",
8
+ paradigms: ["build-automation", "declarative", "imperative", "configuration"],
9
+ tooling: {
10
+ runtimes: ["JVM", "Gradle"],
11
+ packageManagers: ["Gradle"],
12
+ ecosystems: ["JVM", "Android", "Java", "Kotlin", "Groovy"]
13
+ },
14
+ version: "9.5.0",
15
+ logo: "https://cdn.simpleicons.org/gradle/02303A",
16
+ i18n: {
17
+ en: {
18
+ name: "Gradle",
19
+ description: "A build automation DSL and tool used to define, configure, and run software builds.",
20
+ longDescription: "Gradle build scripts define projects, plugins, dependencies, repositories, tasks, test suites, publishing rules, and multi-project build logic using Groovy DSL or Kotlin DSL files.\n\nIt is widely used in Java, Kotlin, Android, JVM, and polyglot projects that need reproducible builds, dependency management, custom automation, and integration with CI/CD pipelines."
21
+ },
22
+ es: {
23
+ name: "Gradle",
24
+ description: "Un DSL y herramienta de automatizacion de builds usado para definir, configurar y ejecutar builds.",
25
+ longDescription: "Los scripts de build de Gradle definen proyectos, plugins, dependencias, repositorios, tareas, suites de prueba, reglas de publicacion y logica de builds multiproyecto usando archivos Groovy DSL o Kotlin DSL.\n\nSe usa ampliamente en proyectos Java, Kotlin, Android, JVM y poliglotas que necesitan builds reproducibles, gestion de dependencias, automatizacion personalizada e integracion con pipelines CI/CD."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { gradle };
31
+ //# sourceMappingURL=gradle.js.map
32
+ //# sourceMappingURL=gradle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/languages/gradle.ts"],"names":[],"mappings":";AAEO,IAAM,MAAA,GAAS;AAAA,EACpB,IAAA,EAAM,QAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,SAAA,EAAW,aAAa,CAAA;AAAA,EACrC,MAAA,EAAQ,4BAAA;AAAA,EACR,OAAA,EAAS,oBAAA;AAAA,EACT,SAAA,EAAW,CAAC,kBAAA,EAAoB,aAAA,EAAe,cAAc,eAAe,CAAA;AAAA,EAC5E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,KAAA,EAAO,QAAQ,CAAA;AAAA,IAC1B,eAAA,EAAiB,CAAC,QAAQ,CAAA;AAAA,IAC1B,YAAY,CAAC,KAAA,EAAO,SAAA,EAAW,MAAA,EAAQ,UAAU,QAAQ;AAAA,GAC3D;AAAA,EACA,OAAA,EAAS,OAAA;AAAA,EACT,IAAA,EAAM,2CAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,QAAA;AAAA,MACN,WAAA,EACE,qFAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,QAAA;AAAA,MACN,WAAA,EACE,oGAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"gradle.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const gradle = {\n slug: \"gradle\",\n publishedDate: \"2007-07-01\",\n extensions: [\".gradle\", \".gradle.kts\"],\n author: \"Hans Dockter / Gradle Inc.\",\n website: \"https://gradle.org\",\n paradigms: [\"build-automation\", \"declarative\", \"imperative\", \"configuration\"],\n tooling: {\n runtimes: [\"JVM\", \"Gradle\"],\n packageManagers: [\"Gradle\"],\n ecosystems: [\"JVM\", \"Android\", \"Java\", \"Kotlin\", \"Groovy\"],\n },\n version: \"9.5.0\",\n logo: \"https://cdn.simpleicons.org/gradle/02303A\",\n i18n: {\n en: {\n name: \"Gradle\",\n description:\n \"A build automation DSL and tool used to define, configure, and run software builds.\",\n longDescription:\n \"Gradle build scripts define projects, plugins, dependencies, repositories, tasks, test suites, publishing rules, and multi-project build logic using Groovy DSL or Kotlin DSL files.\\n\\nIt is widely used in Java, Kotlin, Android, JVM, and polyglot projects that need reproducible builds, dependency management, custom automation, and integration with CI/CD pipelines.\",\n },\n es: {\n name: \"Gradle\",\n description:\n \"Un DSL y herramienta de automatizacion de builds usado para definir, configurar y ejecutar builds.\",\n longDescription:\n \"Los scripts de build de Gradle definen proyectos, plugins, dependencias, repositorios, tareas, suites de prueba, reglas de publicacion y logica de builds multiproyecto usando archivos Groovy DSL o Kotlin DSL.\\n\\nSe usa ampliamente en proyectos Java, Kotlin, Android, JVM y poliglotas que necesitan builds reproducibles, gestion de dependencias, automatizacion personalizada e integracion con pipelines CI/CD.\",\n },\n },\n} satisfies Language;\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-languages",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "Structured metadata for programming languages.",
5
5
  "homepage": "https://github.com/ElJijuna/code-languages#readme",
6
6
  "bugs": {
@@ -76,6 +76,11 @@
76
76
  "import": "./dist/languages/bash.js",
77
77
  "require": "./dist/languages/bash.cjs"
78
78
  },
79
+ "./batch": {
80
+ "types": "./dist/languages/batch.d.ts",
81
+ "import": "./dist/languages/batch.js",
82
+ "require": "./dist/languages/batch.cjs"
83
+ },
79
84
  "./c": {
80
85
  "types": "./dist/languages/c.d.ts",
81
86
  "import": "./dist/languages/c.js",
@@ -256,11 +261,21 @@
256
261
  "import": "./dist/languages/webassembly.js",
257
262
  "require": "./dist/languages/webassembly.cjs"
258
263
  },
264
+ "./git": {
265
+ "types": "./dist/languages/git.d.ts",
266
+ "import": "./dist/languages/git.js",
267
+ "require": "./dist/languages/git.cjs"
268
+ },
259
269
  "./go": {
260
270
  "types": "./dist/languages/go.d.ts",
261
271
  "import": "./dist/languages/go.js",
262
272
  "require": "./dist/languages/go.cjs"
263
273
  },
274
+ "./gradle": {
275
+ "types": "./dist/languages/gradle.d.ts",
276
+ "import": "./dist/languages/gradle.js",
277
+ "require": "./dist/languages/gradle.cjs"
278
+ },
264
279
  "./graphql": {
265
280
  "types": "./dist/languages/graphql.d.ts",
266
281
  "import": "./dist/languages/graphql.js",