code-languages 1.4.3 → 1.5.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,29 @@
1
+ declare const assembly: {
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 { assembly };
@@ -0,0 +1,32 @@
1
+ // src/languages/assembly.ts
2
+ var assembly = {
3
+ slug: "assembly",
4
+ publishedDate: "1949-01-01",
5
+ extensions: [".asm", ".s", ".S", ".inc"],
6
+ author: "Machine architecture vendors and assembler implementers",
7
+ website: "https://en.wikipedia.org/wiki/Assembly_language",
8
+ paradigms: ["imperative", "low-level", "procedural"],
9
+ tooling: {
10
+ runtimes: ["Native"],
11
+ packageManagers: ["APT", "DNF", "Pacman", "Homebrew"],
12
+ ecosystems: ["Systems", "Embedded", "Reverse Engineering"]
13
+ },
14
+ version: "Architecture-specific",
15
+ logo: "https://cdn.simpleicons.org/assemblyscript/007AAC",
16
+ i18n: {
17
+ en: {
18
+ name: "Assembly",
19
+ description: "A family of low-level languages that map closely to machine instructions for specific CPU architectures.",
20
+ longDescription: "Assembly language represents processor instructions, registers, memory addressing modes, labels, directives, and macros using symbolic text that is assembled into machine code.\n\nIt is used in operating systems, embedded firmware, bootloaders, drivers, reverse engineering, performance-critical routines, and educational material where direct control over hardware and instructions matters."
21
+ },
22
+ es: {
23
+ name: "Assembly",
24
+ description: "Una familia de lenguajes de bajo nivel cercana a instrucciones de maquina para arquitecturas especificas.",
25
+ longDescription: "Assembly representa instrucciones del procesador, registros, modos de direccionamiento de memoria, etiquetas, directivas y macros usando texto simbolico que se ensambla en codigo maquina.\n\nSe usa en sistemas operativos, firmware embebido, bootloaders, drivers, ingenieria inversa, rutinas criticas de rendimiento y material educativo donde importa el control directo del hardware y las instrucciones."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { assembly };
31
+ //# sourceMappingURL=assembly.js.map
32
+ //# sourceMappingURL=assembly.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/languages/assembly.ts"],"names":[],"mappings":";AAEO,IAAM,QAAA,GAAW;AAAA,EACtB,IAAA,EAAM,UAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,MAAA,EAAQ,IAAA,EAAM,MAAM,MAAM,CAAA;AAAA,EACvC,MAAA,EAAQ,yDAAA;AAAA,EACR,OAAA,EAAS,iDAAA;AAAA,EACT,SAAA,EAAW,CAAC,YAAA,EAAc,WAAA,EAAa,YAAY,CAAA;AAAA,EACnD,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,QAAQ,CAAA;AAAA,IACnB,eAAA,EAAiB,CAAC,KAAA,EAAO,KAAA,EAAO,UAAU,UAAU,CAAA;AAAA,IACpD,UAAA,EAAY,CAAC,SAAA,EAAW,UAAA,EAAY,qBAAqB;AAAA,GAC3D;AAAA,EACA,OAAA,EAAS,uBAAA;AAAA,EACT,IAAA,EAAM,mDAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,UAAA;AAAA,MACN,WAAA,EACE,0GAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,UAAA;AAAA,MACN,WAAA,EACE,2GAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"assembly.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const assembly = {\n slug: \"assembly\",\n publishedDate: \"1949-01-01\",\n extensions: [\".asm\", \".s\", \".S\", \".inc\"],\n author: \"Machine architecture vendors and assembler implementers\",\n website: \"https://en.wikipedia.org/wiki/Assembly_language\",\n paradigms: [\"imperative\", \"low-level\", \"procedural\"],\n tooling: {\n runtimes: [\"Native\"],\n packageManagers: [\"APT\", \"DNF\", \"Pacman\", \"Homebrew\"],\n ecosystems: [\"Systems\", \"Embedded\", \"Reverse Engineering\"],\n },\n version: \"Architecture-specific\",\n logo: \"https://cdn.simpleicons.org/assemblyscript/007AAC\",\n i18n: {\n en: {\n name: \"Assembly\",\n description:\n \"A family of low-level languages that map closely to machine instructions for specific CPU architectures.\",\n longDescription:\n \"Assembly language represents processor instructions, registers, memory addressing modes, labels, directives, and macros using symbolic text that is assembled into machine code.\\n\\nIt is used in operating systems, embedded firmware, bootloaders, drivers, reverse engineering, performance-critical routines, and educational material where direct control over hardware and instructions matters.\",\n },\n es: {\n name: \"Assembly\",\n description:\n \"Una familia de lenguajes de bajo nivel cercana a instrucciones de maquina para arquitecturas especificas.\",\n longDescription:\n \"Assembly representa instrucciones del procesador, registros, modos de direccionamiento de memoria, etiquetas, directivas y macros usando texto simbolico que se ensambla en codigo maquina.\\n\\nSe usa en sistemas operativos, firmware embebido, bootloaders, drivers, ingenieria inversa, rutinas criticas de rendimiento y material educativo donde importa el control directo del hardware y las instrucciones.\",\n },\n },\n} satisfies Language;\n"]}
@@ -0,0 +1,34 @@
1
+ 'use strict';
2
+
3
+ // src/languages/powershell.ts
4
+ var powershell = {
5
+ slug: "powershell",
6
+ publishedDate: "2006-11-14",
7
+ extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"],
8
+ author: "Microsoft",
9
+ website: "https://learn.microsoft.com/powershell/",
10
+ paradigms: ["command", "imperative", "object-oriented", "scripting", "shell"],
11
+ tooling: {
12
+ runtimes: ["PowerShell", "Windows PowerShell", ".NET"],
13
+ packageManagers: ["PowerShell Gallery", "PSResourceGet", "PowerShellGet"],
14
+ ecosystems: ["Windows", "Azure", "DevOps", "Automation"]
15
+ },
16
+ version: "7.6.1",
17
+ logo: "https://upload.wikimedia.org/wikipedia/commons/2/2f/PowerShell_5.0_icon.png",
18
+ i18n: {
19
+ en: {
20
+ name: "PowerShell",
21
+ description: "A cross-platform command shell and scripting language for automation and system administration.",
22
+ longDescription: "PowerShell combines a command-line shell, scripting language, object pipeline, module system, providers, remoting, and deep integration with .NET and operating system management APIs.\n\nIt is widely used for Windows administration, Azure automation, DevOps workflows, configuration management, cloud operations, and repeatable infrastructure tasks across Windows, Linux, and macOS."
23
+ },
24
+ es: {
25
+ name: "PowerShell",
26
+ description: "Un shell de comandos y lenguaje de scripting multiplataforma para automatizacion y administracion de sistemas.",
27
+ longDescription: "PowerShell combina un shell de linea de comandos, lenguaje de scripting, pipeline de objetos, sistema de modulos, proveedores, remoting e integracion profunda con .NET y APIs de administracion del sistema operativo.\n\nSe usa ampliamente para administracion de Windows, automatizacion de Azure, flujos DevOps, gestion de configuracion, operaciones cloud y tareas repetibles de infraestructura en Windows, Linux y macOS."
28
+ }
29
+ }
30
+ };
31
+
32
+ exports.powershell = powershell;
33
+ //# sourceMappingURL=powershell.cjs.map
34
+ //# sourceMappingURL=powershell.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/languages/powershell.ts"],"names":[],"mappings":";;;AAEO,IAAM,UAAA,GAAa;AAAA,EACxB,IAAA,EAAM,YAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,MAAA,EAAQ,OAAA,EAAS,SAAS,SAAS,CAAA;AAAA,EAChD,MAAA,EAAQ,WAAA;AAAA,EACR,OAAA,EAAS,yCAAA;AAAA,EACT,WAAW,CAAC,SAAA,EAAW,YAAA,EAAc,iBAAA,EAAmB,aAAa,OAAO,CAAA;AAAA,EAC5E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,YAAA,EAAc,oBAAA,EAAsB,MAAM,CAAA;AAAA,IACrD,eAAA,EAAiB,CAAC,oBAAA,EAAsB,eAAA,EAAiB,eAAe,CAAA;AAAA,IACxE,UAAA,EAAY,CAAC,SAAA,EAAW,OAAA,EAAS,UAAU,YAAY;AAAA,GACzD;AAAA,EACA,OAAA,EAAS,OAAA;AAAA,EACT,IAAA,EAAM,6EAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,YAAA;AAAA,MACN,WAAA,EACE,iGAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,YAAA;AAAA,MACN,WAAA,EACE,gHAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"powershell.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const powershell = {\n slug: \"powershell\",\n publishedDate: \"2006-11-14\",\n extensions: [\".ps1\", \".psm1\", \".psd1\", \".ps1xml\"],\n author: \"Microsoft\",\n website: \"https://learn.microsoft.com/powershell/\",\n paradigms: [\"command\", \"imperative\", \"object-oriented\", \"scripting\", \"shell\"],\n tooling: {\n runtimes: [\"PowerShell\", \"Windows PowerShell\", \".NET\"],\n packageManagers: [\"PowerShell Gallery\", \"PSResourceGet\", \"PowerShellGet\"],\n ecosystems: [\"Windows\", \"Azure\", \"DevOps\", \"Automation\"],\n },\n version: \"7.6.1\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/2/2f/PowerShell_5.0_icon.png\",\n i18n: {\n en: {\n name: \"PowerShell\",\n description:\n \"A cross-platform command shell and scripting language for automation and system administration.\",\n longDescription:\n \"PowerShell combines a command-line shell, scripting language, object pipeline, module system, providers, remoting, and deep integration with .NET and operating system management APIs.\\n\\nIt is widely used for Windows administration, Azure automation, DevOps workflows, configuration management, cloud operations, and repeatable infrastructure tasks across Windows, Linux, and macOS.\",\n },\n es: {\n name: \"PowerShell\",\n description:\n \"Un shell de comandos y lenguaje de scripting multiplataforma para automatizacion y administracion de sistemas.\",\n longDescription:\n \"PowerShell combina un shell de linea de comandos, lenguaje de scripting, pipeline de objetos, sistema de modulos, proveedores, remoting e integracion profunda con .NET y APIs de administracion del sistema operativo.\\n\\nSe usa ampliamente para administracion de Windows, automatizacion de Azure, flujos DevOps, gestion de configuracion, operaciones cloud y tareas repetibles de infraestructura en Windows, Linux y macOS.\",\n },\n },\n} satisfies Language;\n"]}
@@ -0,0 +1,29 @@
1
+ declare const powershell: {
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 { powershell };
@@ -0,0 +1,29 @@
1
+ declare const powershell: {
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 { powershell };
@@ -0,0 +1,32 @@
1
+ // src/languages/powershell.ts
2
+ var powershell = {
3
+ slug: "powershell",
4
+ publishedDate: "2006-11-14",
5
+ extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"],
6
+ author: "Microsoft",
7
+ website: "https://learn.microsoft.com/powershell/",
8
+ paradigms: ["command", "imperative", "object-oriented", "scripting", "shell"],
9
+ tooling: {
10
+ runtimes: ["PowerShell", "Windows PowerShell", ".NET"],
11
+ packageManagers: ["PowerShell Gallery", "PSResourceGet", "PowerShellGet"],
12
+ ecosystems: ["Windows", "Azure", "DevOps", "Automation"]
13
+ },
14
+ version: "7.6.1",
15
+ logo: "https://upload.wikimedia.org/wikipedia/commons/2/2f/PowerShell_5.0_icon.png",
16
+ i18n: {
17
+ en: {
18
+ name: "PowerShell",
19
+ description: "A cross-platform command shell and scripting language for automation and system administration.",
20
+ longDescription: "PowerShell combines a command-line shell, scripting language, object pipeline, module system, providers, remoting, and deep integration with .NET and operating system management APIs.\n\nIt is widely used for Windows administration, Azure automation, DevOps workflows, configuration management, cloud operations, and repeatable infrastructure tasks across Windows, Linux, and macOS."
21
+ },
22
+ es: {
23
+ name: "PowerShell",
24
+ description: "Un shell de comandos y lenguaje de scripting multiplataforma para automatizacion y administracion de sistemas.",
25
+ longDescription: "PowerShell combina un shell de linea de comandos, lenguaje de scripting, pipeline de objetos, sistema de modulos, proveedores, remoting e integracion profunda con .NET y APIs de administracion del sistema operativo.\n\nSe usa ampliamente para administracion de Windows, automatizacion de Azure, flujos DevOps, gestion de configuracion, operaciones cloud y tareas repetibles de infraestructura en Windows, Linux y macOS."
26
+ }
27
+ }
28
+ };
29
+
30
+ export { powershell };
31
+ //# sourceMappingURL=powershell.js.map
32
+ //# sourceMappingURL=powershell.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/languages/powershell.ts"],"names":[],"mappings":";AAEO,IAAM,UAAA,GAAa;AAAA,EACxB,IAAA,EAAM,YAAA;AAAA,EACN,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,MAAA,EAAQ,OAAA,EAAS,SAAS,SAAS,CAAA;AAAA,EAChD,MAAA,EAAQ,WAAA;AAAA,EACR,OAAA,EAAS,yCAAA;AAAA,EACT,WAAW,CAAC,SAAA,EAAW,YAAA,EAAc,iBAAA,EAAmB,aAAa,OAAO,CAAA;AAAA,EAC5E,OAAA,EAAS;AAAA,IACP,QAAA,EAAU,CAAC,YAAA,EAAc,oBAAA,EAAsB,MAAM,CAAA;AAAA,IACrD,eAAA,EAAiB,CAAC,oBAAA,EAAsB,eAAA,EAAiB,eAAe,CAAA;AAAA,IACxE,UAAA,EAAY,CAAC,SAAA,EAAW,OAAA,EAAS,UAAU,YAAY;AAAA,GACzD;AAAA,EACA,OAAA,EAAS,OAAA;AAAA,EACT,IAAA,EAAM,6EAAA;AAAA,EACN,IAAA,EAAM;AAAA,IACJ,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,YAAA;AAAA,MACN,WAAA,EACE,iGAAA;AAAA,MACF,eAAA,EACE;AAAA,KACJ;AAAA,IACA,EAAA,EAAI;AAAA,MACF,IAAA,EAAM,YAAA;AAAA,MACN,WAAA,EACE,gHAAA;AAAA,MACF,eAAA,EACE;AAAA;AACJ;AAEJ","file":"powershell.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const powershell = {\n slug: \"powershell\",\n publishedDate: \"2006-11-14\",\n extensions: [\".ps1\", \".psm1\", \".psd1\", \".ps1xml\"],\n author: \"Microsoft\",\n website: \"https://learn.microsoft.com/powershell/\",\n paradigms: [\"command\", \"imperative\", \"object-oriented\", \"scripting\", \"shell\"],\n tooling: {\n runtimes: [\"PowerShell\", \"Windows PowerShell\", \".NET\"],\n packageManagers: [\"PowerShell Gallery\", \"PSResourceGet\", \"PowerShellGet\"],\n ecosystems: [\"Windows\", \"Azure\", \"DevOps\", \"Automation\"],\n },\n version: \"7.6.1\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/2/2f/PowerShell_5.0_icon.png\",\n i18n: {\n en: {\n name: \"PowerShell\",\n description:\n \"A cross-platform command shell and scripting language for automation and system administration.\",\n longDescription:\n \"PowerShell combines a command-line shell, scripting language, object pipeline, module system, providers, remoting, and deep integration with .NET and operating system management APIs.\\n\\nIt is widely used for Windows administration, Azure automation, DevOps workflows, configuration management, cloud operations, and repeatable infrastructure tasks across Windows, Linux, and macOS.\",\n },\n es: {\n name: \"PowerShell\",\n description:\n \"Un shell de comandos y lenguaje de scripting multiplataforma para automatizacion y administracion de sistemas.\",\n longDescription:\n \"PowerShell combina un shell de linea de comandos, lenguaje de scripting, pipeline de objetos, sistema de modulos, proveedores, remoting e integracion profunda con .NET y APIs de administracion del sistema operativo.\\n\\nSe usa ampliamente para administracion de Windows, automatizacion de Azure, flujos DevOps, gestion de configuracion, operaciones cloud y tareas repetibles de infraestructura en Windows, Linux y macOS.\",\n },\n },\n} satisfies Language;\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-languages",
3
- "version": "1.4.3",
3
+ "version": "1.5.0",
4
4
  "description": "Structured metadata for programming languages.",
5
5
  "homepage": "https://github.com/ElJijuna/code-languages#readme",
6
6
  "bugs": {
@@ -51,6 +51,11 @@
51
51
  "import": "./dist/languages/astro.js",
52
52
  "require": "./dist/languages/astro.cjs"
53
53
  },
54
+ "./assembly": {
55
+ "types": "./dist/languages/assembly.d.ts",
56
+ "import": "./dist/languages/assembly.js",
57
+ "require": "./dist/languages/assembly.cjs"
58
+ },
54
59
  "./bash": {
55
60
  "types": "./dist/languages/bash.d.ts",
56
61
  "import": "./dist/languages/bash.js",
@@ -146,6 +151,11 @@
146
151
  "import": "./dist/languages/php.js",
147
152
  "require": "./dist/languages/php.cjs"
148
153
  },
154
+ "./powershell": {
155
+ "types": "./dist/languages/powershell.d.ts",
156
+ "import": "./dist/languages/powershell.js",
157
+ "require": "./dist/languages/powershell.cjs"
158
+ },
149
159
  "./python": {
150
160
  "types": "./dist/languages/python.d.ts",
151
161
  "import": "./dist/languages/python.js",