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/detect.js
CHANGED
|
@@ -85,6 +85,34 @@ var c = {
|
|
|
85
85
|
}
|
|
86
86
|
};
|
|
87
87
|
|
|
88
|
+
// src/languages/cobol.ts
|
|
89
|
+
var cobol = {
|
|
90
|
+
slug: "cobol",
|
|
91
|
+
publishedDate: "1959-12-18",
|
|
92
|
+
extensions: [".cob", ".cbl", ".cobol", ".cpy"],
|
|
93
|
+
author: "CODASYL",
|
|
94
|
+
website: "https://www.iso.org/standard/74527.html",
|
|
95
|
+
paradigms: ["imperative", "object-oriented", "procedural", "structured"],
|
|
96
|
+
tooling: {
|
|
97
|
+
runtimes: ["IBM Enterprise COBOL", "GnuCOBOL", "Micro Focus COBOL"],
|
|
98
|
+
ecosystems: ["Mainframe", "Business applications", "Transaction processing"]
|
|
99
|
+
},
|
|
100
|
+
version: "ISO/IEC 1989:2023",
|
|
101
|
+
logo: "https://logo.svgcdn.com/devicon/cobol-original.png",
|
|
102
|
+
i18n: {
|
|
103
|
+
en: {
|
|
104
|
+
name: "COBOL",
|
|
105
|
+
description: "A business-oriented language for long-lived, data-heavy enterprise systems.",
|
|
106
|
+
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."
|
|
107
|
+
},
|
|
108
|
+
es: {
|
|
109
|
+
name: "COBOL",
|
|
110
|
+
description: "Un lenguaje orientado al negocio para sistemas empresariales duraderos y centrados en datos.",
|
|
111
|
+
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."
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
|
|
88
116
|
// src/languages/cpp.ts
|
|
89
117
|
var cpp = {
|
|
90
118
|
slug: "cpp",
|
|
@@ -114,6 +142,35 @@ var cpp = {
|
|
|
114
142
|
}
|
|
115
143
|
};
|
|
116
144
|
|
|
145
|
+
// src/languages/csharp.ts
|
|
146
|
+
var csharp = {
|
|
147
|
+
slug: "csharp",
|
|
148
|
+
publishedDate: "2000-06-26",
|
|
149
|
+
extensions: [".cs", ".csx"],
|
|
150
|
+
author: "Anders Hejlsberg / Microsoft",
|
|
151
|
+
website: "https://dotnet.microsoft.com/languages/csharp",
|
|
152
|
+
paradigms: ["class-based", "component-oriented", "functional", "generic", "object-oriented"],
|
|
153
|
+
tooling: {
|
|
154
|
+
runtimes: [".NET", "Mono", "Unity"],
|
|
155
|
+
packageManagers: ["NuGet"],
|
|
156
|
+
ecosystems: [".NET", "ASP.NET", "Unity", "Microsoft"]
|
|
157
|
+
},
|
|
158
|
+
version: "14",
|
|
159
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/b/bd/Logo_C_sharp.svg",
|
|
160
|
+
i18n: {
|
|
161
|
+
en: {
|
|
162
|
+
name: "C#",
|
|
163
|
+
description: "A modern, object-oriented language for .NET applications, services, games, and tools.",
|
|
164
|
+
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."
|
|
165
|
+
},
|
|
166
|
+
es: {
|
|
167
|
+
name: "C#",
|
|
168
|
+
description: "Un lenguaje moderno y orientado a objetos para aplicaciones, servicios, juegos y herramientas .NET.",
|
|
169
|
+
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."
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
};
|
|
173
|
+
|
|
117
174
|
// src/languages/css.ts
|
|
118
175
|
var css = {
|
|
119
176
|
slug: "css",
|
|
@@ -123,7 +180,7 @@ var css = {
|
|
|
123
180
|
website: "https://www.w3.org/Style/CSS/",
|
|
124
181
|
paradigms: ["declarative", "stylesheet"],
|
|
125
182
|
version: "Living Standard",
|
|
126
|
-
logo: "https://
|
|
183
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/a/ab/Official_CSS_Logo.svg",
|
|
127
184
|
i18n: {
|
|
128
185
|
en: {
|
|
129
186
|
name: "CSS",
|
|
@@ -138,6 +195,35 @@ var css = {
|
|
|
138
195
|
}
|
|
139
196
|
};
|
|
140
197
|
|
|
198
|
+
// src/languages/dart.ts
|
|
199
|
+
var dart = {
|
|
200
|
+
slug: "dart",
|
|
201
|
+
publishedDate: "2011-10-10",
|
|
202
|
+
extensions: [".dart"],
|
|
203
|
+
author: "Google",
|
|
204
|
+
website: "https://dart.dev",
|
|
205
|
+
paradigms: ["class-based", "functional", "object-oriented", "structured"],
|
|
206
|
+
tooling: {
|
|
207
|
+
runtimes: ["Dart VM", "Dart Native", "JavaScript"],
|
|
208
|
+
packageManagers: ["pub"],
|
|
209
|
+
ecosystems: ["Flutter", "Web", "Server-side"]
|
|
210
|
+
},
|
|
211
|
+
version: "3.11.6",
|
|
212
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Dart_programming_language_logo.svg",
|
|
213
|
+
i18n: {
|
|
214
|
+
en: {
|
|
215
|
+
name: "Dart",
|
|
216
|
+
description: "A client-optimized language for fast apps across mobile, web, desktop, and server.",
|
|
217
|
+
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."
|
|
218
|
+
},
|
|
219
|
+
es: {
|
|
220
|
+
name: "Dart",
|
|
221
|
+
description: "Un lenguaje optimizado para crear apps rapidas en movil, web, escritorio y servidor.",
|
|
222
|
+
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."
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
};
|
|
226
|
+
|
|
141
227
|
// src/languages/dockerfile.ts
|
|
142
228
|
var dockerfile = {
|
|
143
229
|
slug: "dockerfile",
|
|
@@ -195,6 +281,35 @@ var go = {
|
|
|
195
281
|
}
|
|
196
282
|
};
|
|
197
283
|
|
|
284
|
+
// src/languages/graphql.ts
|
|
285
|
+
var graphql = {
|
|
286
|
+
slug: "graphql",
|
|
287
|
+
publishedDate: "2015-07-02",
|
|
288
|
+
extensions: [".graphql", ".gql", ".graphqls"],
|
|
289
|
+
author: "Facebook / GraphQL Foundation",
|
|
290
|
+
website: "https://graphql.org",
|
|
291
|
+
paradigms: ["declarative", "query", "schema", "typed"],
|
|
292
|
+
tooling: {
|
|
293
|
+
runtimes: ["GraphQL.js", "Apollo Server", "GraphQL Yoga", "Mercurius"],
|
|
294
|
+
packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
|
|
295
|
+
ecosystems: ["APIs", "Web", "Mobile", "Data Graphs"]
|
|
296
|
+
},
|
|
297
|
+
version: "September 2025",
|
|
298
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/1/17/GraphQL_Logo.svg",
|
|
299
|
+
i18n: {
|
|
300
|
+
en: {
|
|
301
|
+
name: "GraphQL",
|
|
302
|
+
description: "A typed query and schema language for APIs that lets clients request exact data shapes.",
|
|
303
|
+
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."
|
|
304
|
+
},
|
|
305
|
+
es: {
|
|
306
|
+
name: "GraphQL",
|
|
307
|
+
description: "Un lenguaje tipado de consultas y esquemas para APIs que permite pedir datos exactos.",
|
|
308
|
+
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."
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
};
|
|
312
|
+
|
|
198
313
|
// src/languages/groovy.ts
|
|
199
314
|
var groovy = {
|
|
200
315
|
slug: "groovy",
|
|
@@ -208,8 +323,8 @@ var groovy = {
|
|
|
208
323
|
packageManagers: ["Gradle", "Maven"],
|
|
209
324
|
ecosystems: ["JVM", "Gradle"]
|
|
210
325
|
},
|
|
211
|
-
version: "5.0.
|
|
212
|
-
logo: "https://
|
|
326
|
+
version: "5.0.6",
|
|
327
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/3/36/Groovy-logo.svg",
|
|
213
328
|
i18n: {
|
|
214
329
|
en: {
|
|
215
330
|
name: "Groovy",
|
|
@@ -343,7 +458,7 @@ var kotlin = {
|
|
|
343
458
|
packageManagers: ["Gradle", "Maven"],
|
|
344
459
|
ecosystems: ["JVM", "Android", "Kotlin Multiplatform"]
|
|
345
460
|
},
|
|
346
|
-
version: "2.3.
|
|
461
|
+
version: "2.3.21",
|
|
347
462
|
logo: "https://upload.wikimedia.org/wikipedia/commons/7/74/Kotlin_Icon.png",
|
|
348
463
|
i18n: {
|
|
349
464
|
en: {
|
|
@@ -359,6 +474,63 @@ var kotlin = {
|
|
|
359
474
|
}
|
|
360
475
|
};
|
|
361
476
|
|
|
477
|
+
// src/languages/less.ts
|
|
478
|
+
var less = {
|
|
479
|
+
slug: "less",
|
|
480
|
+
publishedDate: "2009-01-01",
|
|
481
|
+
extensions: [".less"],
|
|
482
|
+
author: "Alexis Sellier / Less Core Team",
|
|
483
|
+
website: "https://lesscss.org",
|
|
484
|
+
paradigms: ["declarative", "stylesheet", "preprocessor"],
|
|
485
|
+
tooling: {
|
|
486
|
+
runtimes: ["Less.js", "Node.js", "Browser"],
|
|
487
|
+
packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
|
|
488
|
+
ecosystems: ["Web", "Design Systems", "Bootstrap"]
|
|
489
|
+
},
|
|
490
|
+
version: "4.4.1",
|
|
491
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/8/81/LESS_Logo.svg",
|
|
492
|
+
i18n: {
|
|
493
|
+
en: {
|
|
494
|
+
name: "Less",
|
|
495
|
+
description: "A CSS preprocessor with variables, nesting, mixins, operations, and functions.",
|
|
496
|
+
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."
|
|
497
|
+
},
|
|
498
|
+
es: {
|
|
499
|
+
name: "Less",
|
|
500
|
+
description: "Un preprocesador CSS con variables, anidamiento, mixins, operaciones y funciones.",
|
|
501
|
+
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."
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
};
|
|
505
|
+
|
|
506
|
+
// src/languages/makefile.ts
|
|
507
|
+
var makefile = {
|
|
508
|
+
slug: "makefile",
|
|
509
|
+
publishedDate: "1976-01-01",
|
|
510
|
+
extensions: ["Makefile", "makefile", "GNUmakefile", ".mk", ".mak"],
|
|
511
|
+
author: "Stuart Feldman / GNU Project",
|
|
512
|
+
website: "https://www.gnu.org/software/make/",
|
|
513
|
+
paradigms: ["build-automation", "declarative", "imperative", "rule-based"],
|
|
514
|
+
tooling: {
|
|
515
|
+
runtimes: ["GNU Make", "BSD make", "POSIX make"],
|
|
516
|
+
ecosystems: ["Unix", "Linux", "C", "C++", "Embedded Systems"]
|
|
517
|
+
},
|
|
518
|
+
version: "4.4.1",
|
|
519
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/7/71/Heckert_gnu.small.png",
|
|
520
|
+
i18n: {
|
|
521
|
+
en: {
|
|
522
|
+
name: "Makefile",
|
|
523
|
+
description: "A rule-based build automation format used by make tools to run reproducible tasks.",
|
|
524
|
+
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."
|
|
525
|
+
},
|
|
526
|
+
es: {
|
|
527
|
+
name: "Makefile",
|
|
528
|
+
description: "Un formato de automatizacion de builds basado en reglas usado por herramientas make.",
|
|
529
|
+
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."
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
};
|
|
533
|
+
|
|
362
534
|
// src/languages/markdown.ts
|
|
363
535
|
var markdown = {
|
|
364
536
|
slug: "markdown",
|
|
@@ -367,7 +539,7 @@ var markdown = {
|
|
|
367
539
|
author: "John Gruber / Aaron Swartz",
|
|
368
540
|
website: "https://daringfireball.net/projects/markdown/",
|
|
369
541
|
paradigms: ["declarative", "markup"],
|
|
370
|
-
version: "CommonMark 0
|
|
542
|
+
version: "CommonMark 4.0",
|
|
371
543
|
logo: "https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg",
|
|
372
544
|
i18n: {
|
|
373
545
|
en: {
|
|
@@ -383,6 +555,63 @@ var markdown = {
|
|
|
383
555
|
}
|
|
384
556
|
};
|
|
385
557
|
|
|
558
|
+
// src/languages/nginx.ts
|
|
559
|
+
var nginx = {
|
|
560
|
+
slug: "nginx",
|
|
561
|
+
publishedDate: "2004-10-04",
|
|
562
|
+
extensions: ["nginx.conf", ".nginx", ".conf"],
|
|
563
|
+
author: "Igor Sysoev / NGINX",
|
|
564
|
+
website: "https://nginx.org",
|
|
565
|
+
paradigms: ["configuration", "declarative", "directive-based"],
|
|
566
|
+
tooling: {
|
|
567
|
+
runtimes: ["nginx", "NGINX Plus", "OpenResty"],
|
|
568
|
+
ecosystems: ["Web Servers", "Reverse Proxies", "Load Balancing", "DevOps"]
|
|
569
|
+
},
|
|
570
|
+
version: "1.30.0",
|
|
571
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/c/c5/Nginx_logo.svg",
|
|
572
|
+
i18n: {
|
|
573
|
+
en: {
|
|
574
|
+
name: "nginx",
|
|
575
|
+
description: "A directive-based configuration language for the nginx web server and reverse proxy.",
|
|
576
|
+
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."
|
|
577
|
+
},
|
|
578
|
+
es: {
|
|
579
|
+
name: "nginx",
|
|
580
|
+
description: "Un lenguaje de configuracion basado en directivas para el servidor web y proxy inverso nginx.",
|
|
581
|
+
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."
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
};
|
|
585
|
+
|
|
586
|
+
// src/languages/objective-c.ts
|
|
587
|
+
var objectiveC = {
|
|
588
|
+
slug: "objective-c",
|
|
589
|
+
publishedDate: "1984-01-01",
|
|
590
|
+
extensions: [".m", ".mm"],
|
|
591
|
+
author: "Brad Cox / Tom Love",
|
|
592
|
+
website: "https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/",
|
|
593
|
+
paradigms: ["class-based", "dynamic", "object-oriented", "reflective"],
|
|
594
|
+
tooling: {
|
|
595
|
+
runtimes: ["Objective-C runtime", "Apple platforms", "GNUstep"],
|
|
596
|
+
packageManagers: ["CocoaPods", "Swift Package Manager"],
|
|
597
|
+
ecosystems: ["Apple", "Cocoa", "Cocoa Touch", "GNUstep"]
|
|
598
|
+
},
|
|
599
|
+
version: "2.0",
|
|
600
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/1/1b/Apple_logo_grey.svg",
|
|
601
|
+
i18n: {
|
|
602
|
+
en: {
|
|
603
|
+
name: "Objective-C",
|
|
604
|
+
description: "A C superset with Smalltalk-style messaging and a dynamic object runtime.",
|
|
605
|
+
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."
|
|
606
|
+
},
|
|
607
|
+
es: {
|
|
608
|
+
name: "Objective-C",
|
|
609
|
+
description: "Un superconjunto de C con mensajeria estilo Smalltalk y runtime dinamico de objetos.",
|
|
610
|
+
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."
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
};
|
|
614
|
+
|
|
386
615
|
// src/languages/php.ts
|
|
387
616
|
var php = {
|
|
388
617
|
slug: "php",
|
|
@@ -426,7 +655,7 @@ var python = {
|
|
|
426
655
|
ecosystems: ["Web", "Data Science", "Machine Learning", "Automation"]
|
|
427
656
|
},
|
|
428
657
|
version: "3.14.4",
|
|
429
|
-
logo: "https://
|
|
658
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Python-logo-notext.svg",
|
|
430
659
|
i18n: {
|
|
431
660
|
en: {
|
|
432
661
|
name: "Python",
|
|
@@ -523,6 +752,34 @@ var sql = {
|
|
|
523
752
|
}
|
|
524
753
|
};
|
|
525
754
|
|
|
755
|
+
// src/languages/svg.ts
|
|
756
|
+
var svg = {
|
|
757
|
+
slug: "svg",
|
|
758
|
+
publishedDate: "2001-09-04",
|
|
759
|
+
extensions: [".svg", ".svgz"],
|
|
760
|
+
author: "W3C SVG Working Group",
|
|
761
|
+
website: "https://www.w3.org/TR/SVG/",
|
|
762
|
+
paradigms: ["declarative", "markup", "vector-graphics", "xml-based"],
|
|
763
|
+
tooling: {
|
|
764
|
+
runtimes: ["Web browsers", "SVG viewers", "Vector graphics editors"],
|
|
765
|
+
ecosystems: ["Web", "Design Tools", "Data Visualization"]
|
|
766
|
+
},
|
|
767
|
+
version: "SVG 2",
|
|
768
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/4/4f/SVG_Logo.svg",
|
|
769
|
+
i18n: {
|
|
770
|
+
en: {
|
|
771
|
+
name: "SVG",
|
|
772
|
+
description: "An XML-based markup language for scalable two-dimensional vector graphics.",
|
|
773
|
+
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."
|
|
774
|
+
},
|
|
775
|
+
es: {
|
|
776
|
+
name: "SVG",
|
|
777
|
+
description: "Un lenguaje de marcado basado en XML para graficos vectoriales bidimensionales escalables.",
|
|
778
|
+
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."
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
};
|
|
782
|
+
|
|
526
783
|
// src/languages/swift.ts
|
|
527
784
|
var swift = {
|
|
528
785
|
slug: "swift",
|
|
@@ -536,7 +793,7 @@ var swift = {
|
|
|
536
793
|
packageManagers: ["Swift Package Manager"],
|
|
537
794
|
ecosystems: ["Apple", "Server-side Swift"]
|
|
538
795
|
},
|
|
539
|
-
version: "6.
|
|
796
|
+
version: "6.3.1",
|
|
540
797
|
logo: "https://www.swift.org/assets/images/swift.svg",
|
|
541
798
|
i18n: {
|
|
542
799
|
en: {
|
|
@@ -581,6 +838,35 @@ var typescript = {
|
|
|
581
838
|
}
|
|
582
839
|
};
|
|
583
840
|
|
|
841
|
+
// src/languages/visual-basic.ts
|
|
842
|
+
var visualBasic = {
|
|
843
|
+
slug: "visual-basic",
|
|
844
|
+
publishedDate: "2001-02-13",
|
|
845
|
+
extensions: [".vb"],
|
|
846
|
+
author: "Microsoft",
|
|
847
|
+
website: "https://learn.microsoft.com/dotnet/visual-basic/",
|
|
848
|
+
paradigms: ["event-driven", "generic", "object-oriented", "structured"],
|
|
849
|
+
tooling: {
|
|
850
|
+
runtimes: [".NET", ".NET Framework", "Mono"],
|
|
851
|
+
packageManagers: ["NuGet"],
|
|
852
|
+
ecosystems: [".NET", "Visual Studio", "Windows Forms", "ASP.NET"]
|
|
853
|
+
},
|
|
854
|
+
version: "17.13",
|
|
855
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/4/40/VB.NET_Logo.svg",
|
|
856
|
+
i18n: {
|
|
857
|
+
en: {
|
|
858
|
+
name: "Visual Basic",
|
|
859
|
+
description: "An approachable .NET language for type-safe, object-oriented applications.",
|
|
860
|
+
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."
|
|
861
|
+
},
|
|
862
|
+
es: {
|
|
863
|
+
name: "Visual Basic",
|
|
864
|
+
description: "Un lenguaje .NET accesible para aplicaciones orientadas a objetos y type-safe.",
|
|
865
|
+
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."
|
|
866
|
+
}
|
|
867
|
+
}
|
|
868
|
+
};
|
|
869
|
+
|
|
584
870
|
// src/languages/vue.ts
|
|
585
871
|
var vue = {
|
|
586
872
|
slug: "vue",
|
|
@@ -672,7 +958,7 @@ var yaml = {
|
|
|
672
958
|
website: "https://yaml.org",
|
|
673
959
|
paradigms: ["data serialization", "declarative"],
|
|
674
960
|
version: "1.2.2",
|
|
675
|
-
logo: "https://
|
|
961
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/5/5a/Official_YAML_Logo.svg",
|
|
676
962
|
i18n: {
|
|
677
963
|
en: {
|
|
678
964
|
name: "YAML",
|
|
@@ -687,33 +973,73 @@ var yaml = {
|
|
|
687
973
|
}
|
|
688
974
|
};
|
|
689
975
|
|
|
976
|
+
// src/languages/zsh.ts
|
|
977
|
+
var zsh = {
|
|
978
|
+
slug: "zsh",
|
|
979
|
+
publishedDate: "1990-01-01",
|
|
980
|
+
extensions: [".zsh", ".zshrc", ".zshenv", ".zprofile", ".zlogin", ".zlogout", ".zsh-theme"],
|
|
981
|
+
author: "Paul Falstad",
|
|
982
|
+
website: "https://www.zsh.org",
|
|
983
|
+
paradigms: ["command", "imperative", "scripting", "shell"],
|
|
984
|
+
tooling: {
|
|
985
|
+
runtimes: ["Z shell", "Unix-like shells"],
|
|
986
|
+
packageManagers: ["Homebrew", "APT", "DNF", "Pacman"],
|
|
987
|
+
ecosystems: ["Unix", "Linux", "macOS", "DevOps"]
|
|
988
|
+
},
|
|
989
|
+
version: "5.9",
|
|
990
|
+
logo: "https://commons.wikimedia.org/wiki/Special:Redirect/file/Z_Shell_Logo_Color_Horizontal.svg",
|
|
991
|
+
i18n: {
|
|
992
|
+
en: {
|
|
993
|
+
name: "zsh",
|
|
994
|
+
description: "A Unix shell and command language for interactive use, scripting, and automation.",
|
|
995
|
+
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."
|
|
996
|
+
},
|
|
997
|
+
es: {
|
|
998
|
+
name: "zsh",
|
|
999
|
+
description: "Un shell Unix y lenguaje de comandos para uso interactivo, scripting y automatizacion.",
|
|
1000
|
+
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."
|
|
1001
|
+
}
|
|
1002
|
+
}
|
|
1003
|
+
};
|
|
1004
|
+
|
|
690
1005
|
// src/catalog.ts
|
|
691
1006
|
var languages = [
|
|
692
1007
|
astro,
|
|
693
1008
|
bash,
|
|
694
1009
|
c,
|
|
1010
|
+
cobol,
|
|
695
1011
|
cpp,
|
|
1012
|
+
csharp,
|
|
696
1013
|
css,
|
|
1014
|
+
dart,
|
|
697
1015
|
dockerfile,
|
|
698
1016
|
go,
|
|
1017
|
+
graphql,
|
|
699
1018
|
groovy,
|
|
700
1019
|
html,
|
|
701
1020
|
java,
|
|
702
1021
|
javascript,
|
|
703
1022
|
json,
|
|
704
1023
|
kotlin,
|
|
1024
|
+
less,
|
|
1025
|
+
makefile,
|
|
705
1026
|
markdown,
|
|
1027
|
+
nginx,
|
|
1028
|
+
objectiveC,
|
|
706
1029
|
php,
|
|
707
1030
|
python,
|
|
708
1031
|
rust,
|
|
709
1032
|
scss,
|
|
710
1033
|
sql,
|
|
1034
|
+
svg,
|
|
711
1035
|
swift,
|
|
712
1036
|
typescript,
|
|
1037
|
+
visualBasic,
|
|
713
1038
|
vue,
|
|
714
1039
|
webassembly,
|
|
715
1040
|
xml,
|
|
716
|
-
yaml
|
|
1041
|
+
yaml,
|
|
1042
|
+
zsh
|
|
717
1043
|
];
|
|
718
1044
|
|
|
719
1045
|
// src/detect.ts
|