code-languages 1.14.0 → 1.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -2068,6 +2068,44 @@ var init_powershell = __esm({
2068
2068
  }
2069
2069
  });
2070
2070
 
2071
+ // src/languages/protobuf.ts
2072
+ var protobuf_exports = {};
2073
+ __export(protobuf_exports, {
2074
+ protobuf: () => exports.protobuf
2075
+ });
2076
+ exports.protobuf = void 0;
2077
+ var init_protobuf = __esm({
2078
+ "src/languages/protobuf.ts"() {
2079
+ exports.protobuf = {
2080
+ slug: "protobuf",
2081
+ publishedDate: "2008-07-07",
2082
+ extensions: [".proto"],
2083
+ author: "Google",
2084
+ website: "https://protobuf.dev",
2085
+ paradigms: ["interface-definition", "schema", "declarative", "data-serialization"],
2086
+ tooling: {
2087
+ runtimes: ["Protocol Buffers Runtime", "gRPC"],
2088
+ packageManagers: ["Buf", "npm", "Maven", "Go modules", "NuGet", "PyPI"],
2089
+ ecosystems: ["gRPC", "APIs", "Microservices", "Data Serialization"]
2090
+ },
2091
+ version: "34.1",
2092
+ logo: "https://cdn.simpleicons.org/google/4285F4",
2093
+ i18n: {
2094
+ en: {
2095
+ name: "Protocol Buffers",
2096
+ description: "Google's language-neutral schema format for structured data serialization and service APIs.",
2097
+ longDescription: "Protocol Buffers is a language-neutral, platform-neutral mechanism for defining structured data schemas and generating strongly typed code in many programming languages. `.proto` files describe messages, fields, enums, services, packages, imports, options, and RPC contracts.\n\nIt is widely used with gRPC, microservices, distributed systems, APIs, telemetry, configuration, event streams, and storage formats that need compact binary serialization and stable cross-language contracts."
2098
+ },
2099
+ es: {
2100
+ name: "Protocol Buffers",
2101
+ description: "El formato de schemas neutral de Google para serializacion de datos estructurados y APIs de servicios.",
2102
+ longDescription: "Protocol Buffers es un mecanismo neutral en lenguaje y plataforma para definir schemas de datos estructurados y generar codigo tipado en muchos lenguajes de programacion. Los archivos `.proto` describen mensajes, campos, enums, servicios, paquetes, imports, opciones y contratos RPC.\n\nSe usa ampliamente con gRPC, microservicios, sistemas distribuidos, APIs, telemetria, configuracion, flujos de eventos y formatos de almacenamiento que necesitan serializacion binaria compacta y contratos estables entre lenguajes."
2103
+ }
2104
+ }
2105
+ };
2106
+ }
2107
+ });
2108
+
2071
2109
  // src/languages/pug.ts
2072
2110
  var pug_exports = {};
2073
2111
  __export(pug_exports, {
@@ -3013,6 +3051,7 @@ init_pascal();
3013
3051
  init_perl();
3014
3052
  init_php();
3015
3053
  init_powershell();
3054
+ init_protobuf();
3016
3055
  init_pug();
3017
3056
  init_python();
3018
3057
  init_r();
@@ -3094,6 +3133,7 @@ var languages = [
3094
3133
  exports.perl,
3095
3134
  exports.php,
3096
3135
  exports.powershell,
3136
+ exports.protobuf,
3097
3137
  exports.pug,
3098
3138
  exports.python,
3099
3139
  exports.r,
@@ -3241,6 +3281,7 @@ var languageIndex = [
3241
3281
  { slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
3242
3282
  { slug: "php", extensions: [".php", ".phtml", ".php3", ".php4", ".php5", ".phps"] },
3243
3283
  { slug: "powershell", extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"] },
3284
+ { slug: "protobuf", extensions: [".proto"] },
3244
3285
  { slug: "pug", extensions: [".pug", ".jade"] },
3245
3286
  { slug: "python", extensions: [".py", ".pyw"] },
3246
3287
  { slug: "r", extensions: [".r", ".R", ".rmd", ".Rmd", ".qmd", ".Rprofile"] },
@@ -3328,6 +3369,7 @@ var languageLoaders = {
3328
3369
  perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
3329
3370
  php: () => Promise.resolve().then(() => (init_php(), php_exports)).then((module) => module.php),
3330
3371
  powershell: () => Promise.resolve().then(() => (init_powershell(), powershell_exports)).then((module) => module.powershell),
3372
+ protobuf: () => Promise.resolve().then(() => (init_protobuf(), protobuf_exports)).then((module) => module.protobuf),
3331
3373
  pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
3332
3374
  python: () => Promise.resolve().then(() => (init_python(), python_exports)).then((module) => module.python),
3333
3375
  r: () => Promise.resolve().then(() => (init_r(), r_exports)).then((module) => module.r),
@@ -3503,6 +3545,7 @@ init_pascal();
3503
3545
  init_perl();
3504
3546
  init_php();
3505
3547
  init_powershell();
3548
+ init_protobuf();
3506
3549
  init_pug();
3507
3550
  init_python();
3508
3551
  init_r();