code-languages 1.3.0 → 1.4.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 +77 -28
- package/dist/detect.cjs +335 -9
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +335 -9
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +346 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +293 -0
- package/dist/index.d.ts +293 -0
- package/dist/index.js +336 -10
- package/dist/index.js.map +1 -1
- package/dist/languages/cobol.cjs +33 -0
- package/dist/languages/cobol.cjs.map +1 -0
- package/dist/languages/cobol.d.cts +28 -0
- package/dist/languages/cobol.d.ts +28 -0
- package/dist/languages/cobol.js +31 -0
- package/dist/languages/cobol.js.map +1 -0
- package/dist/languages/csharp.cjs +34 -0
- package/dist/languages/csharp.cjs.map +1 -0
- package/dist/languages/csharp.d.cts +29 -0
- package/dist/languages/csharp.d.ts +29 -0
- package/dist/languages/csharp.js +32 -0
- package/dist/languages/csharp.js.map +1 -0
- package/dist/languages/css.cjs +1 -1
- package/dist/languages/css.cjs.map +1 -1
- package/dist/languages/css.js +1 -1
- package/dist/languages/css.js.map +1 -1
- package/dist/languages/dart.cjs +34 -0
- package/dist/languages/dart.cjs.map +1 -0
- package/dist/languages/dart.d.cts +29 -0
- package/dist/languages/dart.d.ts +29 -0
- package/dist/languages/dart.js +32 -0
- package/dist/languages/dart.js.map +1 -0
- package/dist/languages/graphql.cjs +34 -0
- package/dist/languages/graphql.cjs.map +1 -0
- package/dist/languages/graphql.d.cts +29 -0
- package/dist/languages/graphql.d.ts +29 -0
- package/dist/languages/graphql.js +32 -0
- package/dist/languages/graphql.js.map +1 -0
- package/dist/languages/groovy.cjs +2 -2
- package/dist/languages/groovy.cjs.map +1 -1
- package/dist/languages/groovy.js +2 -2
- package/dist/languages/groovy.js.map +1 -1
- package/dist/languages/kotlin.cjs +1 -1
- package/dist/languages/kotlin.cjs.map +1 -1
- package/dist/languages/kotlin.js +1 -1
- package/dist/languages/kotlin.js.map +1 -1
- package/dist/languages/less.cjs +34 -0
- package/dist/languages/less.cjs.map +1 -0
- package/dist/languages/less.d.cts +29 -0
- package/dist/languages/less.d.ts +29 -0
- package/dist/languages/less.js +32 -0
- package/dist/languages/less.js.map +1 -0
- package/dist/languages/makefile.cjs +33 -0
- package/dist/languages/makefile.cjs.map +1 -0
- package/dist/languages/makefile.d.cts +28 -0
- package/dist/languages/makefile.d.ts +28 -0
- package/dist/languages/makefile.js +31 -0
- package/dist/languages/makefile.js.map +1 -0
- package/dist/languages/markdown.cjs +1 -1
- package/dist/languages/markdown.cjs.map +1 -1
- package/dist/languages/markdown.js +1 -1
- package/dist/languages/markdown.js.map +1 -1
- package/dist/languages/nginx.cjs +33 -0
- package/dist/languages/nginx.cjs.map +1 -0
- package/dist/languages/nginx.d.cts +28 -0
- package/dist/languages/nginx.d.ts +28 -0
- package/dist/languages/nginx.js +31 -0
- package/dist/languages/nginx.js.map +1 -0
- package/dist/languages/objective-c.cjs +34 -0
- package/dist/languages/objective-c.cjs.map +1 -0
- package/dist/languages/objective-c.d.cts +29 -0
- package/dist/languages/objective-c.d.ts +29 -0
- package/dist/languages/objective-c.js +32 -0
- package/dist/languages/objective-c.js.map +1 -0
- package/dist/languages/python.cjs +1 -1
- package/dist/languages/python.cjs.map +1 -1
- package/dist/languages/python.js +1 -1
- package/dist/languages/python.js.map +1 -1
- package/dist/languages/svg.cjs +33 -0
- package/dist/languages/svg.cjs.map +1 -0
- package/dist/languages/svg.d.cts +28 -0
- package/dist/languages/svg.d.ts +28 -0
- package/dist/languages/svg.js +31 -0
- package/dist/languages/svg.js.map +1 -0
- package/dist/languages/swift.cjs +1 -1
- package/dist/languages/swift.cjs.map +1 -1
- package/dist/languages/swift.js +1 -1
- package/dist/languages/swift.js.map +1 -1
- package/dist/languages/visual-basic.cjs +34 -0
- package/dist/languages/visual-basic.cjs.map +1 -0
- package/dist/languages/visual-basic.d.cts +29 -0
- package/dist/languages/visual-basic.d.ts +29 -0
- package/dist/languages/visual-basic.js +32 -0
- package/dist/languages/visual-basic.js.map +1 -0
- package/dist/languages/yaml.cjs +1 -1
- package/dist/languages/yaml.cjs.map +1 -1
- package/dist/languages/yaml.js +1 -1
- package/dist/languages/yaml.js.map +1 -1
- package/dist/languages/zsh.cjs +34 -0
- package/dist/languages/zsh.cjs.map +1 -0
- package/dist/languages/zsh.d.cts +29 -0
- package/dist/languages/zsh.d.ts +29 -0
- package/dist/languages/zsh.js +32 -0
- package/dist/languages/zsh.js.map +1 -0
- package/package.json +56 -1
package/dist/index.cjs
CHANGED
|
@@ -87,6 +87,34 @@ var c = {
|
|
|
87
87
|
}
|
|
88
88
|
};
|
|
89
89
|
|
|
90
|
+
// src/languages/cobol.ts
|
|
91
|
+
var cobol = {
|
|
92
|
+
slug: "cobol",
|
|
93
|
+
publishedDate: "1959-12-18",
|
|
94
|
+
extensions: [".cob", ".cbl", ".cobol", ".cpy"],
|
|
95
|
+
author: "CODASYL",
|
|
96
|
+
website: "https://www.iso.org/standard/74527.html",
|
|
97
|
+
paradigms: ["imperative", "object-oriented", "procedural", "structured"],
|
|
98
|
+
tooling: {
|
|
99
|
+
runtimes: ["IBM Enterprise COBOL", "GnuCOBOL", "Micro Focus COBOL"],
|
|
100
|
+
ecosystems: ["Mainframe", "Business applications", "Transaction processing"]
|
|
101
|
+
},
|
|
102
|
+
version: "ISO/IEC 1989:2023",
|
|
103
|
+
logo: "https://logo.svgcdn.com/devicon/cobol-original.png",
|
|
104
|
+
i18n: {
|
|
105
|
+
en: {
|
|
106
|
+
name: "COBOL",
|
|
107
|
+
description: "A business-oriented language for long-lived, data-heavy enterprise systems.",
|
|
108
|
+
longDescription: "COBOL is a business-oriented programming language created by CODASYL for readable, portable data processing across commercial computing systems. Its syntax emphasizes English-like statements, structured records, decimal arithmetic, batch processing, and report-oriented workflows.\n\nIt is used in banking, insurance, government, payroll, transaction processing, mainframe systems, and modernization projects where large, durable business codebases continue to run critical operations."
|
|
109
|
+
},
|
|
110
|
+
es: {
|
|
111
|
+
name: "COBOL",
|
|
112
|
+
description: "Un lenguaje orientado al negocio para sistemas empresariales duraderos y centrados en datos.",
|
|
113
|
+
longDescription: "COBOL es un lenguaje de programacion orientado al negocio creado por CODASYL para procesamiento de datos legible y portable en sistemas comerciales. Su sintaxis prioriza sentencias similares al ingles, registros estructurados, aritmetica decimal, procesamiento por lotes y flujos orientados a reportes.\n\nSe usa en banca, seguros, gobierno, nominas, procesamiento transaccional, sistemas mainframe y proyectos de modernizacion donde grandes bases de codigo empresarial siguen ejecutando operaciones criticas."
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
};
|
|
117
|
+
|
|
90
118
|
// src/languages/cpp.ts
|
|
91
119
|
var cpp = {
|
|
92
120
|
slug: "cpp",
|
|
@@ -116,6 +144,35 @@ var cpp = {
|
|
|
116
144
|
}
|
|
117
145
|
};
|
|
118
146
|
|
|
147
|
+
// src/languages/csharp.ts
|
|
148
|
+
var csharp = {
|
|
149
|
+
slug: "csharp",
|
|
150
|
+
publishedDate: "2000-06-26",
|
|
151
|
+
extensions: [".cs", ".csx"],
|
|
152
|
+
author: "Anders Hejlsberg / Microsoft",
|
|
153
|
+
website: "https://dotnet.microsoft.com/languages/csharp",
|
|
154
|
+
paradigms: ["class-based", "component-oriented", "functional", "generic", "object-oriented"],
|
|
155
|
+
tooling: {
|
|
156
|
+
runtimes: [".NET", "Mono", "Unity"],
|
|
157
|
+
packageManagers: ["NuGet"],
|
|
158
|
+
ecosystems: [".NET", "ASP.NET", "Unity", "Microsoft"]
|
|
159
|
+
},
|
|
160
|
+
version: "14",
|
|
161
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/b/bd/Logo_C_sharp.svg",
|
|
162
|
+
i18n: {
|
|
163
|
+
en: {
|
|
164
|
+
name: "C#",
|
|
165
|
+
description: "A modern, object-oriented language for .NET applications, services, games, and tools.",
|
|
166
|
+
longDescription: "C# is a statically typed language created by Microsoft for the .NET platform, combining object-oriented programming, generics, async workflows, pattern matching, and strong tooling support.\n\nIt is widely used for web services, desktop applications, cloud systems, game development with Unity, enterprise software, mobile apps, and cross-platform tools built on .NET."
|
|
167
|
+
},
|
|
168
|
+
es: {
|
|
169
|
+
name: "C#",
|
|
170
|
+
description: "Un lenguaje moderno y orientado a objetos para aplicaciones, servicios, juegos y herramientas .NET.",
|
|
171
|
+
longDescription: "C# es un lenguaje de tipado estatico creado por Microsoft para la plataforma .NET, que combina programacion orientada a objetos, genericos, flujos async, pattern matching y soporte solido de herramientas.\n\nSe usa ampliamente en servicios web, aplicaciones de escritorio, sistemas cloud, desarrollo de juegos con Unity, software empresarial, apps moviles y herramientas multiplataforma construidas sobre .NET."
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
};
|
|
175
|
+
|
|
119
176
|
// src/languages/css.ts
|
|
120
177
|
var css = {
|
|
121
178
|
slug: "css",
|
|
@@ -125,7 +182,7 @@ var css = {
|
|
|
125
182
|
website: "https://www.w3.org/Style/CSS/",
|
|
126
183
|
paradigms: ["declarative", "stylesheet"],
|
|
127
184
|
version: "Living Standard",
|
|
128
|
-
logo: "https://
|
|
185
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/a/ab/Official_CSS_Logo.svg",
|
|
129
186
|
i18n: {
|
|
130
187
|
en: {
|
|
131
188
|
name: "CSS",
|
|
@@ -140,6 +197,35 @@ var css = {
|
|
|
140
197
|
}
|
|
141
198
|
};
|
|
142
199
|
|
|
200
|
+
// src/languages/dart.ts
|
|
201
|
+
var dart = {
|
|
202
|
+
slug: "dart",
|
|
203
|
+
publishedDate: "2011-10-10",
|
|
204
|
+
extensions: [".dart"],
|
|
205
|
+
author: "Google",
|
|
206
|
+
website: "https://dart.dev",
|
|
207
|
+
paradigms: ["class-based", "functional", "object-oriented", "structured"],
|
|
208
|
+
tooling: {
|
|
209
|
+
runtimes: ["Dart VM", "Dart Native", "JavaScript"],
|
|
210
|
+
packageManagers: ["pub"],
|
|
211
|
+
ecosystems: ["Flutter", "Web", "Server-side"]
|
|
212
|
+
},
|
|
213
|
+
version: "3.11.6",
|
|
214
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Dart_programming_language_logo.svg",
|
|
215
|
+
i18n: {
|
|
216
|
+
en: {
|
|
217
|
+
name: "Dart",
|
|
218
|
+
description: "A client-optimized language for fast apps across mobile, web, desktop, and server.",
|
|
219
|
+
longDescription: "Dart is a programming language from Google designed for productive, client-oriented application development. It combines sound null safety, classes, generics, async programming, isolates, ahead-of-time compilation, just-in-time development workflows, and compilation to JavaScript.\n\nIt is widely used with Flutter for mobile, web, and desktop apps, and also supports command-line tools, backend services, build systems, and teams that want a typed language with fast iteration and native compilation paths."
|
|
220
|
+
},
|
|
221
|
+
es: {
|
|
222
|
+
name: "Dart",
|
|
223
|
+
description: "Un lenguaje optimizado para crear apps rapidas en movil, web, escritorio y servidor.",
|
|
224
|
+
longDescription: "Dart es un lenguaje de programacion de Google disenado para el desarrollo productivo de aplicaciones orientadas al cliente. Combina null safety solido, clases, genericos, programacion asincrona, isolates, compilacion anticipada, flujos de desarrollo just-in-time y compilacion a JavaScript.\n\nSe usa ampliamente con Flutter para aplicaciones moviles, web y de escritorio, y tambien soporta herramientas de linea de comandos, servicios backend, sistemas de build y equipos que quieren un lenguaje tipado con iteracion rapida y rutas de compilacion nativa."
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
};
|
|
228
|
+
|
|
143
229
|
// src/languages/dockerfile.ts
|
|
144
230
|
var dockerfile = {
|
|
145
231
|
slug: "dockerfile",
|
|
@@ -197,6 +283,35 @@ var go = {
|
|
|
197
283
|
}
|
|
198
284
|
};
|
|
199
285
|
|
|
286
|
+
// src/languages/graphql.ts
|
|
287
|
+
var graphql = {
|
|
288
|
+
slug: "graphql",
|
|
289
|
+
publishedDate: "2015-07-02",
|
|
290
|
+
extensions: [".graphql", ".gql", ".graphqls"],
|
|
291
|
+
author: "Facebook / GraphQL Foundation",
|
|
292
|
+
website: "https://graphql.org",
|
|
293
|
+
paradigms: ["declarative", "query", "schema", "typed"],
|
|
294
|
+
tooling: {
|
|
295
|
+
runtimes: ["GraphQL.js", "Apollo Server", "GraphQL Yoga", "Mercurius"],
|
|
296
|
+
packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
|
|
297
|
+
ecosystems: ["APIs", "Web", "Mobile", "Data Graphs"]
|
|
298
|
+
},
|
|
299
|
+
version: "September 2025",
|
|
300
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/1/17/GraphQL_Logo.svg",
|
|
301
|
+
i18n: {
|
|
302
|
+
en: {
|
|
303
|
+
name: "GraphQL",
|
|
304
|
+
description: "A typed query and schema language for APIs that lets clients request exact data shapes.",
|
|
305
|
+
longDescription: "GraphQL is a typed query language, schema language, and execution model for APIs that lets clients describe the exact data they need and servers expose capabilities through a strongly typed graph.\n\nIt is widely used in web and mobile applications, API gateways, federated service graphs, developer platforms, content systems, and tooling workflows that need introspection, validation, code generation, and predictable client-server contracts."
|
|
306
|
+
},
|
|
307
|
+
es: {
|
|
308
|
+
name: "GraphQL",
|
|
309
|
+
description: "Un lenguaje tipado de consultas y esquemas para APIs que permite pedir datos exactos.",
|
|
310
|
+
longDescription: "GraphQL es un lenguaje tipado de consultas, lenguaje de esquemas y modelo de ejecucion para APIs que permite a los clientes describir exactamente los datos que necesitan y a los servidores exponer capacidades mediante un grafo fuertemente tipado.\n\nSe usa ampliamente en aplicaciones web y moviles, API gateways, grafos de servicios federados, plataformas para desarrolladores, sistemas de contenido y flujos de tooling que necesitan introspeccion, validacion, generacion de codigo y contratos cliente-servidor predecibles."
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
};
|
|
314
|
+
|
|
200
315
|
// src/languages/groovy.ts
|
|
201
316
|
var groovy = {
|
|
202
317
|
slug: "groovy",
|
|
@@ -210,8 +325,8 @@ var groovy = {
|
|
|
210
325
|
packageManagers: ["Gradle", "Maven"],
|
|
211
326
|
ecosystems: ["JVM", "Gradle"]
|
|
212
327
|
},
|
|
213
|
-
version: "5.0.
|
|
214
|
-
logo: "https://
|
|
328
|
+
version: "5.0.6",
|
|
329
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/3/36/Groovy-logo.svg",
|
|
215
330
|
i18n: {
|
|
216
331
|
en: {
|
|
217
332
|
name: "Groovy",
|
|
@@ -345,7 +460,7 @@ var kotlin = {
|
|
|
345
460
|
packageManagers: ["Gradle", "Maven"],
|
|
346
461
|
ecosystems: ["JVM", "Android", "Kotlin Multiplatform"]
|
|
347
462
|
},
|
|
348
|
-
version: "2.3.
|
|
463
|
+
version: "2.3.21",
|
|
349
464
|
logo: "https://upload.wikimedia.org/wikipedia/commons/7/74/Kotlin_Icon.png",
|
|
350
465
|
i18n: {
|
|
351
466
|
en: {
|
|
@@ -361,6 +476,63 @@ var kotlin = {
|
|
|
361
476
|
}
|
|
362
477
|
};
|
|
363
478
|
|
|
479
|
+
// src/languages/less.ts
|
|
480
|
+
var less = {
|
|
481
|
+
slug: "less",
|
|
482
|
+
publishedDate: "2009-01-01",
|
|
483
|
+
extensions: [".less"],
|
|
484
|
+
author: "Alexis Sellier / Less Core Team",
|
|
485
|
+
website: "https://lesscss.org",
|
|
486
|
+
paradigms: ["declarative", "stylesheet", "preprocessor"],
|
|
487
|
+
tooling: {
|
|
488
|
+
runtimes: ["Less.js", "Node.js", "Browser"],
|
|
489
|
+
packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
|
|
490
|
+
ecosystems: ["Web", "Design Systems", "Bootstrap"]
|
|
491
|
+
},
|
|
492
|
+
version: "4.4.1",
|
|
493
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/8/81/LESS_Logo.svg",
|
|
494
|
+
i18n: {
|
|
495
|
+
en: {
|
|
496
|
+
name: "Less",
|
|
497
|
+
description: "A CSS preprocessor with variables, nesting, mixins, operations, and functions.",
|
|
498
|
+
longDescription: "Less is a dynamic stylesheet language that extends CSS with variables, nested rules, mixins, operations, functions, and reusable abstractions while keeping syntax close to standard CSS.\n\nIt is commonly used in web applications, design systems, themes, legacy front-end stacks, and projects that compile richer styling source files into browser-compatible CSS."
|
|
499
|
+
},
|
|
500
|
+
es: {
|
|
501
|
+
name: "Less",
|
|
502
|
+
description: "Un preprocesador CSS con variables, anidamiento, mixins, operaciones y funciones.",
|
|
503
|
+
longDescription: "Less es un lenguaje dinamico de hojas de estilo que extiende CSS con variables, reglas anidadas, mixins, operaciones, funciones y abstracciones reutilizables mientras mantiene una sintaxis cercana a CSS estandar.\n\nSe usa comunmente en aplicaciones web, sistemas de diseno, temas, stacks front-end heredados y proyectos que compilan archivos de estilos mas expresivos a CSS compatible con navegadores."
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
};
|
|
507
|
+
|
|
508
|
+
// src/languages/makefile.ts
|
|
509
|
+
var makefile = {
|
|
510
|
+
slug: "makefile",
|
|
511
|
+
publishedDate: "1976-01-01",
|
|
512
|
+
extensions: ["Makefile", "makefile", "GNUmakefile", ".mk", ".mak"],
|
|
513
|
+
author: "Stuart Feldman / GNU Project",
|
|
514
|
+
website: "https://www.gnu.org/software/make/",
|
|
515
|
+
paradigms: ["build-automation", "declarative", "imperative", "rule-based"],
|
|
516
|
+
tooling: {
|
|
517
|
+
runtimes: ["GNU Make", "BSD make", "POSIX make"],
|
|
518
|
+
ecosystems: ["Unix", "Linux", "C", "C++", "Embedded Systems"]
|
|
519
|
+
},
|
|
520
|
+
version: "4.4.1",
|
|
521
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/7/71/Heckert_gnu.small.png",
|
|
522
|
+
i18n: {
|
|
523
|
+
en: {
|
|
524
|
+
name: "Makefile",
|
|
525
|
+
description: "A rule-based build automation format used by make tools to run reproducible tasks.",
|
|
526
|
+
longDescription: "Makefiles describe targets, prerequisites, variables, and shell recipes that make tools use to decide what work must be rebuilt and which commands should run.\n\nThey are widely used for compiling C and C++ projects, driving Unix build pipelines, packaging software, running development tasks, generating artifacts, and coordinating commands across many programming language ecosystems."
|
|
527
|
+
},
|
|
528
|
+
es: {
|
|
529
|
+
name: "Makefile",
|
|
530
|
+
description: "Un formato de automatizacion de builds basado en reglas usado por herramientas make.",
|
|
531
|
+
longDescription: "Los Makefiles describen targets, prerequisitos, variables y recetas de shell que las herramientas make usan para decidir que trabajo debe reconstruirse y que comandos deben ejecutarse.\n\nSe usan ampliamente para compilar proyectos C y C++, manejar pipelines de build en Unix, empaquetar software, ejecutar tareas de desarrollo, generar artefactos y coordinar comandos en muchos ecosistemas de lenguajes."
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
};
|
|
535
|
+
|
|
364
536
|
// src/languages/markdown.ts
|
|
365
537
|
var markdown = {
|
|
366
538
|
slug: "markdown",
|
|
@@ -369,7 +541,7 @@ var markdown = {
|
|
|
369
541
|
author: "John Gruber / Aaron Swartz",
|
|
370
542
|
website: "https://daringfireball.net/projects/markdown/",
|
|
371
543
|
paradigms: ["declarative", "markup"],
|
|
372
|
-
version: "CommonMark 0
|
|
544
|
+
version: "CommonMark 4.0",
|
|
373
545
|
logo: "https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg",
|
|
374
546
|
i18n: {
|
|
375
547
|
en: {
|
|
@@ -385,6 +557,63 @@ var markdown = {
|
|
|
385
557
|
}
|
|
386
558
|
};
|
|
387
559
|
|
|
560
|
+
// src/languages/nginx.ts
|
|
561
|
+
var nginx = {
|
|
562
|
+
slug: "nginx",
|
|
563
|
+
publishedDate: "2004-10-04",
|
|
564
|
+
extensions: ["nginx.conf", ".nginx", ".conf"],
|
|
565
|
+
author: "Igor Sysoev / NGINX",
|
|
566
|
+
website: "https://nginx.org",
|
|
567
|
+
paradigms: ["configuration", "declarative", "directive-based"],
|
|
568
|
+
tooling: {
|
|
569
|
+
runtimes: ["nginx", "NGINX Plus", "OpenResty"],
|
|
570
|
+
ecosystems: ["Web Servers", "Reverse Proxies", "Load Balancing", "DevOps"]
|
|
571
|
+
},
|
|
572
|
+
version: "1.30.0",
|
|
573
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/c/c5/Nginx_logo.svg",
|
|
574
|
+
i18n: {
|
|
575
|
+
en: {
|
|
576
|
+
name: "nginx",
|
|
577
|
+
description: "A directive-based configuration language for the nginx web server and reverse proxy.",
|
|
578
|
+
longDescription: "nginx configuration files use a directive-based syntax to define HTTP servers, reverse proxies, upstreams, load balancing, TLS settings, caching, logging, access control, and stream or mail proxy behavior.\n\nThey are used in production web infrastructure, container images, edge services, API gateways, static file hosting, traffic routing, and DevOps workflows where nginx or compatible servers need repeatable configuration."
|
|
579
|
+
},
|
|
580
|
+
es: {
|
|
581
|
+
name: "nginx",
|
|
582
|
+
description: "Un lenguaje de configuracion basado en directivas para el servidor web y proxy inverso nginx.",
|
|
583
|
+
longDescription: "Los archivos de configuracion de nginx usan una sintaxis basada en directivas para definir servidores HTTP, proxies inversos, upstreams, balanceo de carga, ajustes TLS, cache, logging, control de acceso y comportamiento de proxy stream o mail.\n\nSe usan en infraestructura web de produccion, imagenes de contenedores, servicios edge, API gateways, hosting de archivos estaticos, ruteo de trafico y flujos DevOps donde nginx o servidores compatibles necesitan configuracion repetible."
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
};
|
|
587
|
+
|
|
588
|
+
// src/languages/objective-c.ts
|
|
589
|
+
var objectiveC = {
|
|
590
|
+
slug: "objective-c",
|
|
591
|
+
publishedDate: "1984-01-01",
|
|
592
|
+
extensions: [".m", ".mm"],
|
|
593
|
+
author: "Brad Cox / Tom Love",
|
|
594
|
+
website: "https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/",
|
|
595
|
+
paradigms: ["class-based", "dynamic", "object-oriented", "reflective"],
|
|
596
|
+
tooling: {
|
|
597
|
+
runtimes: ["Objective-C runtime", "Apple platforms", "GNUstep"],
|
|
598
|
+
packageManagers: ["CocoaPods", "Swift Package Manager"],
|
|
599
|
+
ecosystems: ["Apple", "Cocoa", "Cocoa Touch", "GNUstep"]
|
|
600
|
+
},
|
|
601
|
+
version: "2.0",
|
|
602
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/1/1b/Apple_logo_grey.svg",
|
|
603
|
+
i18n: {
|
|
604
|
+
en: {
|
|
605
|
+
name: "Objective-C",
|
|
606
|
+
description: "A C superset with Smalltalk-style messaging and a dynamic object runtime.",
|
|
607
|
+
longDescription: "Objective-C is an object-oriented extension of C that adds Smalltalk-style message passing, dynamic dispatch, classes, protocols, categories, and runtime reflection.\n\nIt was historically central to NeXTSTEP, macOS, iOS, Cocoa, and Cocoa Touch development, and remains important for maintaining Apple platform codebases and interoperating with C, C++, and Swift."
|
|
608
|
+
},
|
|
609
|
+
es: {
|
|
610
|
+
name: "Objective-C",
|
|
611
|
+
description: "Un superconjunto de C con mensajeria estilo Smalltalk y runtime dinamico de objetos.",
|
|
612
|
+
longDescription: "Objective-C es una extension orientada a objetos de C que agrega envio de mensajes estilo Smalltalk, despacho dinamico, clases, protocolos, categorias y reflexion en runtime.\n\nFue central historicamente en el desarrollo para NeXTSTEP, macOS, iOS, Cocoa y Cocoa Touch, y sigue siendo importante para mantener codebases de plataformas Apple e interoperar con C, C++ y Swift."
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
};
|
|
616
|
+
|
|
388
617
|
// src/languages/php.ts
|
|
389
618
|
var php = {
|
|
390
619
|
slug: "php",
|
|
@@ -428,7 +657,7 @@ var python = {
|
|
|
428
657
|
ecosystems: ["Web", "Data Science", "Machine Learning", "Automation"]
|
|
429
658
|
},
|
|
430
659
|
version: "3.14.4",
|
|
431
|
-
logo: "https://
|
|
660
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Python-logo-notext.svg",
|
|
432
661
|
i18n: {
|
|
433
662
|
en: {
|
|
434
663
|
name: "Python",
|
|
@@ -525,6 +754,34 @@ var sql = {
|
|
|
525
754
|
}
|
|
526
755
|
};
|
|
527
756
|
|
|
757
|
+
// src/languages/svg.ts
|
|
758
|
+
var svg = {
|
|
759
|
+
slug: "svg",
|
|
760
|
+
publishedDate: "2001-09-04",
|
|
761
|
+
extensions: [".svg", ".svgz"],
|
|
762
|
+
author: "W3C SVG Working Group",
|
|
763
|
+
website: "https://www.w3.org/TR/SVG/",
|
|
764
|
+
paradigms: ["declarative", "markup", "vector-graphics", "xml-based"],
|
|
765
|
+
tooling: {
|
|
766
|
+
runtimes: ["Web browsers", "SVG viewers", "Vector graphics editors"],
|
|
767
|
+
ecosystems: ["Web", "Design Tools", "Data Visualization"]
|
|
768
|
+
},
|
|
769
|
+
version: "SVG 2",
|
|
770
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/4/4f/SVG_Logo.svg",
|
|
771
|
+
i18n: {
|
|
772
|
+
en: {
|
|
773
|
+
name: "SVG",
|
|
774
|
+
description: "An XML-based markup language for scalable two-dimensional vector graphics.",
|
|
775
|
+
longDescription: "SVG, or Scalable Vector Graphics, is an XML-based markup language for describing two-dimensional vector and mixed vector/raster graphics that can scale cleanly across display sizes.\n\nIt is widely used for icons, illustrations, charts, diagrams, maps, animations, interactive graphics, and web interfaces where graphics need to remain crisp, stylable, scriptable, and accessible."
|
|
776
|
+
},
|
|
777
|
+
es: {
|
|
778
|
+
name: "SVG",
|
|
779
|
+
description: "Un lenguaje de marcado basado en XML para graficos vectoriales bidimensionales escalables.",
|
|
780
|
+
longDescription: "SVG, o Scalable Vector Graphics, es un lenguaje de marcado basado en XML para describir graficos vectoriales bidimensionales y graficos mixtos vector/raster que pueden escalar limpiamente entre tamanos de pantalla.\n\nSe usa ampliamente en iconos, ilustraciones, graficos, diagramas, mapas, animaciones, graficos interactivos e interfaces web donde las imagenes deben mantenerse nitidas, estilizables, programables y accesibles."
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
};
|
|
784
|
+
|
|
528
785
|
// src/languages/swift.ts
|
|
529
786
|
var swift = {
|
|
530
787
|
slug: "swift",
|
|
@@ -538,7 +795,7 @@ var swift = {
|
|
|
538
795
|
packageManagers: ["Swift Package Manager"],
|
|
539
796
|
ecosystems: ["Apple", "Server-side Swift"]
|
|
540
797
|
},
|
|
541
|
-
version: "6.
|
|
798
|
+
version: "6.3.1",
|
|
542
799
|
logo: "https://www.swift.org/assets/images/swift.svg",
|
|
543
800
|
i18n: {
|
|
544
801
|
en: {
|
|
@@ -583,6 +840,35 @@ var typescript = {
|
|
|
583
840
|
}
|
|
584
841
|
};
|
|
585
842
|
|
|
843
|
+
// src/languages/visual-basic.ts
|
|
844
|
+
var visualBasic = {
|
|
845
|
+
slug: "visual-basic",
|
|
846
|
+
publishedDate: "2001-02-13",
|
|
847
|
+
extensions: [".vb"],
|
|
848
|
+
author: "Microsoft",
|
|
849
|
+
website: "https://learn.microsoft.com/dotnet/visual-basic/",
|
|
850
|
+
paradigms: ["event-driven", "generic", "object-oriented", "structured"],
|
|
851
|
+
tooling: {
|
|
852
|
+
runtimes: [".NET", ".NET Framework", "Mono"],
|
|
853
|
+
packageManagers: ["NuGet"],
|
|
854
|
+
ecosystems: [".NET", "Visual Studio", "Windows Forms", "ASP.NET"]
|
|
855
|
+
},
|
|
856
|
+
version: "17.13",
|
|
857
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/4/40/VB.NET_Logo.svg",
|
|
858
|
+
i18n: {
|
|
859
|
+
en: {
|
|
860
|
+
name: "Visual Basic",
|
|
861
|
+
description: "An approachable .NET language for type-safe, object-oriented applications.",
|
|
862
|
+
longDescription: "Visual Basic is a .NET programming language from Microsoft with a readable syntax, static typing, object-oriented features, event-driven programming support, generics, LINQ, async workflows, and access to the .NET ecosystem.\n\nIt is used for Windows desktop applications, business software, automation, legacy .NET systems, ASP.NET applications, libraries, and teams that value a verbose, approachable syntax on top of the .NET runtime."
|
|
863
|
+
},
|
|
864
|
+
es: {
|
|
865
|
+
name: "Visual Basic",
|
|
866
|
+
description: "Un lenguaje .NET accesible para aplicaciones orientadas a objetos y type-safe.",
|
|
867
|
+
longDescription: "Visual Basic es un lenguaje de programacion .NET de Microsoft con sintaxis legible, tipado estatico, caracteristicas orientadas a objetos, soporte para programacion basada en eventos, genericos, LINQ, flujos async y acceso al ecosistema .NET.\n\nSe usa en aplicaciones de escritorio para Windows, software empresarial, automatizacion, sistemas .NET heredados, aplicaciones ASP.NET, bibliotecas y equipos que valoran una sintaxis explicita y accesible sobre el runtime .NET."
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
};
|
|
871
|
+
|
|
586
872
|
// src/languages/vue.ts
|
|
587
873
|
var vue = {
|
|
588
874
|
slug: "vue",
|
|
@@ -674,7 +960,7 @@ var yaml = {
|
|
|
674
960
|
website: "https://yaml.org",
|
|
675
961
|
paradigms: ["data serialization", "declarative"],
|
|
676
962
|
version: "1.2.2",
|
|
677
|
-
logo: "https://
|
|
963
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/5/5a/Official_YAML_Logo.svg",
|
|
678
964
|
i18n: {
|
|
679
965
|
en: {
|
|
680
966
|
name: "YAML",
|
|
@@ -689,33 +975,73 @@ var yaml = {
|
|
|
689
975
|
}
|
|
690
976
|
};
|
|
691
977
|
|
|
978
|
+
// src/languages/zsh.ts
|
|
979
|
+
var zsh = {
|
|
980
|
+
slug: "zsh",
|
|
981
|
+
publishedDate: "1990-01-01",
|
|
982
|
+
extensions: [".zsh", ".zshrc", ".zshenv", ".zprofile", ".zlogin", ".zlogout", ".zsh-theme"],
|
|
983
|
+
author: "Paul Falstad",
|
|
984
|
+
website: "https://www.zsh.org",
|
|
985
|
+
paradigms: ["command", "imperative", "scripting", "shell"],
|
|
986
|
+
tooling: {
|
|
987
|
+
runtimes: ["Z shell", "Unix-like shells"],
|
|
988
|
+
packageManagers: ["Homebrew", "APT", "DNF", "Pacman"],
|
|
989
|
+
ecosystems: ["Unix", "Linux", "macOS", "DevOps"]
|
|
990
|
+
},
|
|
991
|
+
version: "5.9",
|
|
992
|
+
logo: "https://commons.wikimedia.org/wiki/Special:Redirect/file/Z_Shell_Logo_Color_Horizontal.svg",
|
|
993
|
+
i18n: {
|
|
994
|
+
en: {
|
|
995
|
+
name: "zsh",
|
|
996
|
+
description: "A Unix shell and command language for interactive use, scripting, and automation.",
|
|
997
|
+
longDescription: "zsh is a Unix shell designed for interactive command-line use and shell scripting, with advanced completion, globbing, prompt customization, and shell emulation features.\n\nIt is widely used as a login shell, especially on Unix-like systems and macOS, and is common in developer workflows, terminal customization, automation scripts, and system administration."
|
|
998
|
+
},
|
|
999
|
+
es: {
|
|
1000
|
+
name: "zsh",
|
|
1001
|
+
description: "Un shell Unix y lenguaje de comandos para uso interactivo, scripting y automatizacion.",
|
|
1002
|
+
longDescription: "zsh es un shell Unix disenado para uso interactivo en linea de comandos y scripting, con autocompletado avanzado, globbing, personalizacion del prompt y funciones de emulacion de shells.\n\nSe usa ampliamente como login shell, especialmente en sistemas tipo Unix y macOS, y es comun en flujos de desarrollo, personalizacion de terminales, scripts de automatizacion y administracion de sistemas."
|
|
1003
|
+
}
|
|
1004
|
+
}
|
|
1005
|
+
};
|
|
1006
|
+
|
|
692
1007
|
// src/catalog.ts
|
|
693
1008
|
var languages = [
|
|
694
1009
|
astro,
|
|
695
1010
|
bash,
|
|
696
1011
|
c,
|
|
1012
|
+
cobol,
|
|
697
1013
|
cpp,
|
|
1014
|
+
csharp,
|
|
698
1015
|
css,
|
|
1016
|
+
dart,
|
|
699
1017
|
dockerfile,
|
|
700
1018
|
go,
|
|
1019
|
+
graphql,
|
|
701
1020
|
groovy,
|
|
702
1021
|
html,
|
|
703
1022
|
java,
|
|
704
1023
|
javascript,
|
|
705
1024
|
json,
|
|
706
1025
|
kotlin,
|
|
1026
|
+
less,
|
|
1027
|
+
makefile,
|
|
707
1028
|
markdown,
|
|
1029
|
+
nginx,
|
|
1030
|
+
objectiveC,
|
|
708
1031
|
php,
|
|
709
1032
|
python,
|
|
710
1033
|
rust,
|
|
711
1034
|
scss,
|
|
712
1035
|
sql,
|
|
1036
|
+
svg,
|
|
713
1037
|
swift,
|
|
714
1038
|
typescript,
|
|
1039
|
+
visualBasic,
|
|
715
1040
|
vue,
|
|
716
1041
|
webassembly,
|
|
717
1042
|
xml,
|
|
718
|
-
yaml
|
|
1043
|
+
yaml,
|
|
1044
|
+
zsh
|
|
719
1045
|
];
|
|
720
1046
|
|
|
721
1047
|
// src/detect.ts
|
|
@@ -768,12 +1094,16 @@ var resolveLocale = (translations, locale) => {
|
|
|
768
1094
|
exports.astro = astro;
|
|
769
1095
|
exports.bash = bash;
|
|
770
1096
|
exports.c = c;
|
|
1097
|
+
exports.cobol = cobol;
|
|
771
1098
|
exports.cpp = cpp;
|
|
1099
|
+
exports.csharp = csharp;
|
|
772
1100
|
exports.css = css;
|
|
1101
|
+
exports.dart = dart;
|
|
773
1102
|
exports.detectLanguage = detectLanguage;
|
|
774
1103
|
exports.detectLanguages = detectLanguages;
|
|
775
1104
|
exports.dockerfile = dockerfile;
|
|
776
1105
|
exports.go = go;
|
|
1106
|
+
exports.graphql = graphql;
|
|
777
1107
|
exports.groovy = groovy;
|
|
778
1108
|
exports.html = html;
|
|
779
1109
|
exports.java = java;
|
|
@@ -781,18 +1111,25 @@ exports.javascript = javascript;
|
|
|
781
1111
|
exports.json = json;
|
|
782
1112
|
exports.kotlin = kotlin;
|
|
783
1113
|
exports.languages = languages;
|
|
1114
|
+
exports.less = less;
|
|
784
1115
|
exports.localizeLanguage = localizeLanguage;
|
|
1116
|
+
exports.makefile = makefile;
|
|
785
1117
|
exports.markdown = markdown;
|
|
1118
|
+
exports.nginx = nginx;
|
|
1119
|
+
exports.objectiveC = objectiveC;
|
|
786
1120
|
exports.php = php;
|
|
787
1121
|
exports.python = python;
|
|
788
1122
|
exports.rust = rust;
|
|
789
1123
|
exports.scss = scss;
|
|
790
1124
|
exports.sql = sql;
|
|
1125
|
+
exports.svg = svg;
|
|
791
1126
|
exports.swift = swift;
|
|
792
1127
|
exports.typescript = typescript;
|
|
1128
|
+
exports.visualBasic = visualBasic;
|
|
793
1129
|
exports.vue = vue;
|
|
794
1130
|
exports.webassembly = webassembly;
|
|
795
1131
|
exports.xml = xml;
|
|
796
1132
|
exports.yaml = yaml;
|
|
1133
|
+
exports.zsh = zsh;
|
|
797
1134
|
//# sourceMappingURL=index.cjs.map
|
|
798
1135
|
//# sourceMappingURL=index.cjs.map
|