code-languages 1.6.0 → 1.7.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/README.md +26 -1
- package/dist/detect.cjs +148 -0
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +148 -0
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +153 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +133 -0
- package/dist/index.d.ts +133 -0
- package/dist/index.js +149 -1
- package/dist/index.js.map +1 -1
- package/dist/languages/abap.cjs +33 -0
- package/dist/languages/abap.cjs.map +1 -0
- package/dist/languages/abap.d.cts +28 -0
- package/dist/languages/abap.d.ts +28 -0
- package/dist/languages/abap.js +31 -0
- package/dist/languages/abap.js.map +1 -0
- package/dist/languages/cmake.cjs +33 -0
- package/dist/languages/cmake.cjs.map +1 -0
- package/dist/languages/cmake.d.cts +28 -0
- package/dist/languages/cmake.d.ts +28 -0
- package/dist/languages/cmake.js +31 -0
- package/dist/languages/cmake.js.map +1 -0
- package/dist/languages/lua.cjs +34 -0
- package/dist/languages/lua.cjs.map +1 -0
- package/dist/languages/lua.d.cts +29 -0
- package/dist/languages/lua.d.ts +29 -0
- package/dist/languages/lua.js +32 -0
- package/dist/languages/lua.js.map +1 -0
- package/dist/languages/ruby.cjs +34 -0
- package/dist/languages/ruby.cjs.map +1 -0
- package/dist/languages/ruby.d.cts +29 -0
- package/dist/languages/ruby.d.ts +29 -0
- package/dist/languages/ruby.js +32 -0
- package/dist/languages/ruby.js.map +1 -0
- package/dist/languages/svelte.cjs +34 -0
- package/dist/languages/svelte.cjs.map +1 -0
- package/dist/languages/svelte.d.cts +29 -0
- package/dist/languages/svelte.d.ts +29 -0
- package/dist/languages/svelte.js +32 -0
- package/dist/languages/svelte.js.map +1 -0
- package/package.json +26 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export { detectLanguage, detectLanguages } from './detect.cjs';
|
|
2
2
|
export { localizeLanguage } from './i18n.cjs';
|
|
3
3
|
export { L as Language, a as LanguageContent, b as LanguageTooling, c as LanguageTranslations, d as Locale, e as LocalizedLanguage } from './types-CZDaRR4t.cjs';
|
|
4
|
+
export { abap } from './languages/abap.cjs';
|
|
4
5
|
export { astro } from './languages/astro.cjs';
|
|
5
6
|
export { assembly } from './languages/assembly.cjs';
|
|
6
7
|
export { bash } from './languages/bash.cjs';
|
|
7
8
|
export { c } from './languages/c.cjs';
|
|
9
|
+
export { cmake } from './languages/cmake.cjs';
|
|
8
10
|
export { coffeescript } from './languages/coffeescript.cjs';
|
|
9
11
|
export { cobol } from './languages/cobol.cjs';
|
|
10
12
|
export { csharp } from './languages/csharp.cjs';
|
|
@@ -21,6 +23,7 @@ export { javascript } from './languages/javascript.cjs';
|
|
|
21
23
|
export { json } from './languages/json.cjs';
|
|
22
24
|
export { kotlin } from './languages/kotlin.cjs';
|
|
23
25
|
export { less } from './languages/less.cjs';
|
|
26
|
+
export { lua } from './languages/lua.cjs';
|
|
24
27
|
export { makefile } from './languages/makefile.cjs';
|
|
25
28
|
export { markdown } from './languages/markdown.cjs';
|
|
26
29
|
export { nginx } from './languages/nginx.cjs';
|
|
@@ -28,10 +31,12 @@ export { objectiveC } from './languages/objective-c.cjs';
|
|
|
28
31
|
export { php } from './languages/php.cjs';
|
|
29
32
|
export { powershell } from './languages/powershell.cjs';
|
|
30
33
|
export { python } from './languages/python.cjs';
|
|
34
|
+
export { ruby } from './languages/ruby.cjs';
|
|
31
35
|
export { rust } from './languages/rust.cjs';
|
|
32
36
|
export { scss } from './languages/scss.cjs';
|
|
33
37
|
export { sql } from './languages/sql.cjs';
|
|
34
38
|
export { svg } from './languages/svg.cjs';
|
|
39
|
+
export { svelte } from './languages/svelte.cjs';
|
|
35
40
|
export { swift } from './languages/swift.cjs';
|
|
36
41
|
export { typescript } from './languages/typescript.cjs';
|
|
37
42
|
export { visualBasic } from './languages/visual-basic.cjs';
|
|
@@ -43,6 +48,31 @@ export { zsh } from './languages/zsh.cjs';
|
|
|
43
48
|
|
|
44
49
|
/** Ordered catalog of every language included in the package. */
|
|
45
50
|
declare const languages: readonly [{
|
|
51
|
+
slug: string;
|
|
52
|
+
publishedDate: string;
|
|
53
|
+
extensions: string[];
|
|
54
|
+
author: string;
|
|
55
|
+
website: string;
|
|
56
|
+
paradigms: string[];
|
|
57
|
+
tooling: {
|
|
58
|
+
runtimes: string[];
|
|
59
|
+
ecosystems: string[];
|
|
60
|
+
};
|
|
61
|
+
version: string;
|
|
62
|
+
logo: string;
|
|
63
|
+
i18n: {
|
|
64
|
+
en: {
|
|
65
|
+
name: string;
|
|
66
|
+
description: string;
|
|
67
|
+
longDescription: string;
|
|
68
|
+
};
|
|
69
|
+
es: {
|
|
70
|
+
name: string;
|
|
71
|
+
description: string;
|
|
72
|
+
longDescription: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
}, {
|
|
46
76
|
slug: string;
|
|
47
77
|
publishedDate: string;
|
|
48
78
|
extensions: string[];
|
|
@@ -146,6 +176,31 @@ declare const languages: readonly [{
|
|
|
146
176
|
longDescription: string;
|
|
147
177
|
};
|
|
148
178
|
};
|
|
179
|
+
}, {
|
|
180
|
+
slug: string;
|
|
181
|
+
publishedDate: string;
|
|
182
|
+
extensions: string[];
|
|
183
|
+
author: string;
|
|
184
|
+
website: string;
|
|
185
|
+
paradigms: string[];
|
|
186
|
+
tooling: {
|
|
187
|
+
runtimes: string[];
|
|
188
|
+
ecosystems: string[];
|
|
189
|
+
};
|
|
190
|
+
version: string;
|
|
191
|
+
logo: string;
|
|
192
|
+
i18n: {
|
|
193
|
+
en: {
|
|
194
|
+
name: string;
|
|
195
|
+
description: string;
|
|
196
|
+
longDescription: string;
|
|
197
|
+
};
|
|
198
|
+
es: {
|
|
199
|
+
name: string;
|
|
200
|
+
description: string;
|
|
201
|
+
longDescription: string;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
149
204
|
}, {
|
|
150
205
|
slug: string;
|
|
151
206
|
publishedDate: string;
|
|
@@ -545,6 +600,32 @@ declare const languages: readonly [{
|
|
|
545
600
|
longDescription: string;
|
|
546
601
|
};
|
|
547
602
|
};
|
|
603
|
+
}, {
|
|
604
|
+
slug: string;
|
|
605
|
+
publishedDate: string;
|
|
606
|
+
extensions: string[];
|
|
607
|
+
author: string;
|
|
608
|
+
website: string;
|
|
609
|
+
paradigms: string[];
|
|
610
|
+
tooling: {
|
|
611
|
+
runtimes: string[];
|
|
612
|
+
packageManagers: string[];
|
|
613
|
+
ecosystems: string[];
|
|
614
|
+
};
|
|
615
|
+
version: string;
|
|
616
|
+
logo: string;
|
|
617
|
+
i18n: {
|
|
618
|
+
en: {
|
|
619
|
+
name: string;
|
|
620
|
+
description: string;
|
|
621
|
+
longDescription: string;
|
|
622
|
+
};
|
|
623
|
+
es: {
|
|
624
|
+
name: string;
|
|
625
|
+
description: string;
|
|
626
|
+
longDescription: string;
|
|
627
|
+
};
|
|
628
|
+
};
|
|
548
629
|
}, {
|
|
549
630
|
slug: string;
|
|
550
631
|
publishedDate: string;
|
|
@@ -779,6 +860,57 @@ declare const languages: readonly [{
|
|
|
779
860
|
author: string;
|
|
780
861
|
website: string;
|
|
781
862
|
paradigms: string[];
|
|
863
|
+
tooling: {
|
|
864
|
+
runtimes: string[];
|
|
865
|
+
packageManagers: string[];
|
|
866
|
+
ecosystems: string[];
|
|
867
|
+
};
|
|
868
|
+
version: string;
|
|
869
|
+
logo: string;
|
|
870
|
+
i18n: {
|
|
871
|
+
en: {
|
|
872
|
+
name: string;
|
|
873
|
+
description: string;
|
|
874
|
+
longDescription: string;
|
|
875
|
+
};
|
|
876
|
+
es: {
|
|
877
|
+
name: string;
|
|
878
|
+
description: string;
|
|
879
|
+
longDescription: string;
|
|
880
|
+
};
|
|
881
|
+
};
|
|
882
|
+
}, {
|
|
883
|
+
slug: string;
|
|
884
|
+
publishedDate: string;
|
|
885
|
+
extensions: string[];
|
|
886
|
+
author: string;
|
|
887
|
+
website: string;
|
|
888
|
+
paradigms: string[];
|
|
889
|
+
version: string;
|
|
890
|
+
logo: string;
|
|
891
|
+
i18n: {
|
|
892
|
+
en: {
|
|
893
|
+
name: string;
|
|
894
|
+
description: string;
|
|
895
|
+
longDescription: string;
|
|
896
|
+
};
|
|
897
|
+
es: {
|
|
898
|
+
name: string;
|
|
899
|
+
description: string;
|
|
900
|
+
longDescription: string;
|
|
901
|
+
};
|
|
902
|
+
};
|
|
903
|
+
}, {
|
|
904
|
+
slug: string;
|
|
905
|
+
publishedDate: string;
|
|
906
|
+
extensions: string[];
|
|
907
|
+
author: string;
|
|
908
|
+
website: string;
|
|
909
|
+
paradigms: string[];
|
|
910
|
+
tooling: {
|
|
911
|
+
runtimes: string[];
|
|
912
|
+
ecosystems: string[];
|
|
913
|
+
};
|
|
782
914
|
version: string;
|
|
783
915
|
logo: string;
|
|
784
916
|
i18n: {
|
|
@@ -802,6 +934,7 @@ declare const languages: readonly [{
|
|
|
802
934
|
paradigms: string[];
|
|
803
935
|
tooling: {
|
|
804
936
|
runtimes: string[];
|
|
937
|
+
packageManagers: string[];
|
|
805
938
|
ecosystems: string[];
|
|
806
939
|
};
|
|
807
940
|
version: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export { detectLanguage, detectLanguages } from './detect.js';
|
|
2
2
|
export { localizeLanguage } from './i18n.js';
|
|
3
3
|
export { L as Language, a as LanguageContent, b as LanguageTooling, c as LanguageTranslations, d as Locale, e as LocalizedLanguage } from './types-CZDaRR4t.js';
|
|
4
|
+
export { abap } from './languages/abap.js';
|
|
4
5
|
export { astro } from './languages/astro.js';
|
|
5
6
|
export { assembly } from './languages/assembly.js';
|
|
6
7
|
export { bash } from './languages/bash.js';
|
|
7
8
|
export { c } from './languages/c.js';
|
|
9
|
+
export { cmake } from './languages/cmake.js';
|
|
8
10
|
export { coffeescript } from './languages/coffeescript.js';
|
|
9
11
|
export { cobol } from './languages/cobol.js';
|
|
10
12
|
export { csharp } from './languages/csharp.js';
|
|
@@ -21,6 +23,7 @@ export { javascript } from './languages/javascript.js';
|
|
|
21
23
|
export { json } from './languages/json.js';
|
|
22
24
|
export { kotlin } from './languages/kotlin.js';
|
|
23
25
|
export { less } from './languages/less.js';
|
|
26
|
+
export { lua } from './languages/lua.js';
|
|
24
27
|
export { makefile } from './languages/makefile.js';
|
|
25
28
|
export { markdown } from './languages/markdown.js';
|
|
26
29
|
export { nginx } from './languages/nginx.js';
|
|
@@ -28,10 +31,12 @@ export { objectiveC } from './languages/objective-c.js';
|
|
|
28
31
|
export { php } from './languages/php.js';
|
|
29
32
|
export { powershell } from './languages/powershell.js';
|
|
30
33
|
export { python } from './languages/python.js';
|
|
34
|
+
export { ruby } from './languages/ruby.js';
|
|
31
35
|
export { rust } from './languages/rust.js';
|
|
32
36
|
export { scss } from './languages/scss.js';
|
|
33
37
|
export { sql } from './languages/sql.js';
|
|
34
38
|
export { svg } from './languages/svg.js';
|
|
39
|
+
export { svelte } from './languages/svelte.js';
|
|
35
40
|
export { swift } from './languages/swift.js';
|
|
36
41
|
export { typescript } from './languages/typescript.js';
|
|
37
42
|
export { visualBasic } from './languages/visual-basic.js';
|
|
@@ -43,6 +48,31 @@ export { zsh } from './languages/zsh.js';
|
|
|
43
48
|
|
|
44
49
|
/** Ordered catalog of every language included in the package. */
|
|
45
50
|
declare const languages: readonly [{
|
|
51
|
+
slug: string;
|
|
52
|
+
publishedDate: string;
|
|
53
|
+
extensions: string[];
|
|
54
|
+
author: string;
|
|
55
|
+
website: string;
|
|
56
|
+
paradigms: string[];
|
|
57
|
+
tooling: {
|
|
58
|
+
runtimes: string[];
|
|
59
|
+
ecosystems: string[];
|
|
60
|
+
};
|
|
61
|
+
version: string;
|
|
62
|
+
logo: string;
|
|
63
|
+
i18n: {
|
|
64
|
+
en: {
|
|
65
|
+
name: string;
|
|
66
|
+
description: string;
|
|
67
|
+
longDescription: string;
|
|
68
|
+
};
|
|
69
|
+
es: {
|
|
70
|
+
name: string;
|
|
71
|
+
description: string;
|
|
72
|
+
longDescription: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
}, {
|
|
46
76
|
slug: string;
|
|
47
77
|
publishedDate: string;
|
|
48
78
|
extensions: string[];
|
|
@@ -146,6 +176,31 @@ declare const languages: readonly [{
|
|
|
146
176
|
longDescription: string;
|
|
147
177
|
};
|
|
148
178
|
};
|
|
179
|
+
}, {
|
|
180
|
+
slug: string;
|
|
181
|
+
publishedDate: string;
|
|
182
|
+
extensions: string[];
|
|
183
|
+
author: string;
|
|
184
|
+
website: string;
|
|
185
|
+
paradigms: string[];
|
|
186
|
+
tooling: {
|
|
187
|
+
runtimes: string[];
|
|
188
|
+
ecosystems: string[];
|
|
189
|
+
};
|
|
190
|
+
version: string;
|
|
191
|
+
logo: string;
|
|
192
|
+
i18n: {
|
|
193
|
+
en: {
|
|
194
|
+
name: string;
|
|
195
|
+
description: string;
|
|
196
|
+
longDescription: string;
|
|
197
|
+
};
|
|
198
|
+
es: {
|
|
199
|
+
name: string;
|
|
200
|
+
description: string;
|
|
201
|
+
longDescription: string;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
149
204
|
}, {
|
|
150
205
|
slug: string;
|
|
151
206
|
publishedDate: string;
|
|
@@ -545,6 +600,32 @@ declare const languages: readonly [{
|
|
|
545
600
|
longDescription: string;
|
|
546
601
|
};
|
|
547
602
|
};
|
|
603
|
+
}, {
|
|
604
|
+
slug: string;
|
|
605
|
+
publishedDate: string;
|
|
606
|
+
extensions: string[];
|
|
607
|
+
author: string;
|
|
608
|
+
website: string;
|
|
609
|
+
paradigms: string[];
|
|
610
|
+
tooling: {
|
|
611
|
+
runtimes: string[];
|
|
612
|
+
packageManagers: string[];
|
|
613
|
+
ecosystems: string[];
|
|
614
|
+
};
|
|
615
|
+
version: string;
|
|
616
|
+
logo: string;
|
|
617
|
+
i18n: {
|
|
618
|
+
en: {
|
|
619
|
+
name: string;
|
|
620
|
+
description: string;
|
|
621
|
+
longDescription: string;
|
|
622
|
+
};
|
|
623
|
+
es: {
|
|
624
|
+
name: string;
|
|
625
|
+
description: string;
|
|
626
|
+
longDescription: string;
|
|
627
|
+
};
|
|
628
|
+
};
|
|
548
629
|
}, {
|
|
549
630
|
slug: string;
|
|
550
631
|
publishedDate: string;
|
|
@@ -779,6 +860,57 @@ declare const languages: readonly [{
|
|
|
779
860
|
author: string;
|
|
780
861
|
website: string;
|
|
781
862
|
paradigms: string[];
|
|
863
|
+
tooling: {
|
|
864
|
+
runtimes: string[];
|
|
865
|
+
packageManagers: string[];
|
|
866
|
+
ecosystems: string[];
|
|
867
|
+
};
|
|
868
|
+
version: string;
|
|
869
|
+
logo: string;
|
|
870
|
+
i18n: {
|
|
871
|
+
en: {
|
|
872
|
+
name: string;
|
|
873
|
+
description: string;
|
|
874
|
+
longDescription: string;
|
|
875
|
+
};
|
|
876
|
+
es: {
|
|
877
|
+
name: string;
|
|
878
|
+
description: string;
|
|
879
|
+
longDescription: string;
|
|
880
|
+
};
|
|
881
|
+
};
|
|
882
|
+
}, {
|
|
883
|
+
slug: string;
|
|
884
|
+
publishedDate: string;
|
|
885
|
+
extensions: string[];
|
|
886
|
+
author: string;
|
|
887
|
+
website: string;
|
|
888
|
+
paradigms: string[];
|
|
889
|
+
version: string;
|
|
890
|
+
logo: string;
|
|
891
|
+
i18n: {
|
|
892
|
+
en: {
|
|
893
|
+
name: string;
|
|
894
|
+
description: string;
|
|
895
|
+
longDescription: string;
|
|
896
|
+
};
|
|
897
|
+
es: {
|
|
898
|
+
name: string;
|
|
899
|
+
description: string;
|
|
900
|
+
longDescription: string;
|
|
901
|
+
};
|
|
902
|
+
};
|
|
903
|
+
}, {
|
|
904
|
+
slug: string;
|
|
905
|
+
publishedDate: string;
|
|
906
|
+
extensions: string[];
|
|
907
|
+
author: string;
|
|
908
|
+
website: string;
|
|
909
|
+
paradigms: string[];
|
|
910
|
+
tooling: {
|
|
911
|
+
runtimes: string[];
|
|
912
|
+
ecosystems: string[];
|
|
913
|
+
};
|
|
782
914
|
version: string;
|
|
783
915
|
logo: string;
|
|
784
916
|
i18n: {
|
|
@@ -802,6 +934,7 @@ declare const languages: readonly [{
|
|
|
802
934
|
paradigms: string[];
|
|
803
935
|
tooling: {
|
|
804
936
|
runtimes: string[];
|
|
937
|
+
packageManagers: string[];
|
|
805
938
|
ecosystems: string[];
|
|
806
939
|
};
|
|
807
940
|
version: string;
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
// src/languages/abap.ts
|
|
2
|
+
var abap = {
|
|
3
|
+
slug: "abap",
|
|
4
|
+
publishedDate: "1983-01-01",
|
|
5
|
+
extensions: [".abap"],
|
|
6
|
+
author: "SAP SE",
|
|
7
|
+
website: "https://pages.community.sap.com/topics/abap",
|
|
8
|
+
paradigms: ["object-oriented", "procedural", "imperative", "event-driven", "database-oriented"],
|
|
9
|
+
tooling: {
|
|
10
|
+
runtimes: ["ABAP Platform", "SAP NetWeaver AS ABAP", "SAP BTP ABAP Environment"],
|
|
11
|
+
ecosystems: ["SAP S/4HANA", "SAP BTP", "Enterprise Applications"]
|
|
12
|
+
},
|
|
13
|
+
version: "ABAP Platform 2025 FPS01",
|
|
14
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/5/59/SAP_2011_logo.svg",
|
|
15
|
+
i18n: {
|
|
16
|
+
en: {
|
|
17
|
+
name: "ABAP",
|
|
18
|
+
description: "SAP's enterprise application programming language for business systems and extensions.",
|
|
19
|
+
longDescription: "ABAP is SAP's programming language for implementing business logic, reports, data models, services, enhancements, and extensions in ABAP-based SAP systems.\n\nIt is widely used across SAP S/4HANA, SAP BTP ABAP Environment, classic SAP ERP systems, custom enterprise applications, RAP services, CDS models, batch processing, and integration workflows."
|
|
20
|
+
},
|
|
21
|
+
es: {
|
|
22
|
+
name: "ABAP",
|
|
23
|
+
description: "El lenguaje empresarial de SAP para sistemas de negocio y extensiones.",
|
|
24
|
+
longDescription: "ABAP es el lenguaje de programacion de SAP para implementar logica de negocio, reportes, modelos de datos, servicios, mejoras y extensiones en sistemas SAP basados en ABAP.\n\nSe usa ampliamente en SAP S/4HANA, SAP BTP ABAP Environment, sistemas SAP ERP clasicos, aplicaciones empresariales personalizadas, servicios RAP, modelos CDS, procesamiento batch y flujos de integracion."
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
|
|
1
29
|
// src/languages/assembly.ts
|
|
2
30
|
var assembly = {
|
|
3
31
|
slug: "assembly",
|
|
@@ -114,6 +142,34 @@ var c = {
|
|
|
114
142
|
}
|
|
115
143
|
};
|
|
116
144
|
|
|
145
|
+
// src/languages/cmake.ts
|
|
146
|
+
var cmake = {
|
|
147
|
+
slug: "cmake",
|
|
148
|
+
publishedDate: "2000-01-01",
|
|
149
|
+
extensions: ["CMakeLists.txt", ".cmake"],
|
|
150
|
+
author: "Kitware",
|
|
151
|
+
website: "https://cmake.org",
|
|
152
|
+
paradigms: ["build-automation", "declarative", "imperative", "configuration"],
|
|
153
|
+
tooling: {
|
|
154
|
+
runtimes: ["CMake"],
|
|
155
|
+
ecosystems: ["C", "C++", "Fortran", "Cross-platform Builds", "Embedded Systems"]
|
|
156
|
+
},
|
|
157
|
+
version: "4.3.2",
|
|
158
|
+
logo: "https://cmake.org/wp-content/uploads/2023/08/CMake-Logo.svg",
|
|
159
|
+
i18n: {
|
|
160
|
+
en: {
|
|
161
|
+
name: "CMake",
|
|
162
|
+
description: "A cross-platform build system language used to configure, generate, and manage builds.",
|
|
163
|
+
longDescription: "CMake files describe projects, targets, dependencies, compiler options, install rules, tests, and platform-specific build behavior using a command-based scripting language.\n\nThey are widely used to generate native build files for tools such as Ninja, Make, Visual Studio, and Xcode, especially in C, C++, Fortran, embedded, scientific, and cross-platform software projects."
|
|
164
|
+
},
|
|
165
|
+
es: {
|
|
166
|
+
name: "CMake",
|
|
167
|
+
description: "Un lenguaje de build multiplataforma usado para configurar, generar y gestionar builds.",
|
|
168
|
+
longDescription: "Los archivos CMake describen proyectos, targets, dependencias, opciones de compilador, reglas de instalacion, tests y comportamiento de build por plataforma usando un lenguaje de scripting basado en comandos.\n\nSe usan ampliamente para generar archivos de build nativos para herramientas como Ninja, Make, Visual Studio y Xcode, especialmente en proyectos C, C++, Fortran, embebidos, cientificos y multiplataforma."
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
};
|
|
172
|
+
|
|
117
173
|
// src/languages/cobol.ts
|
|
118
174
|
var cobol = {
|
|
119
175
|
slug: "cobol",
|
|
@@ -561,6 +617,35 @@ var less = {
|
|
|
561
617
|
}
|
|
562
618
|
};
|
|
563
619
|
|
|
620
|
+
// src/languages/lua.ts
|
|
621
|
+
var lua = {
|
|
622
|
+
slug: "lua",
|
|
623
|
+
publishedDate: "1994-07-08",
|
|
624
|
+
extensions: [".lua", ".rockspec"],
|
|
625
|
+
author: "Roberto Ierusalimschy, Luiz Henrique de Figueiredo, Waldemar Celes",
|
|
626
|
+
website: "https://www.lua.org",
|
|
627
|
+
paradigms: ["procedural", "functional", "object-oriented", "scripting", "embeddable"],
|
|
628
|
+
tooling: {
|
|
629
|
+
runtimes: ["Lua", "LuaJIT"],
|
|
630
|
+
packageManagers: ["LuaRocks"],
|
|
631
|
+
ecosystems: ["Game Development", "Embedded Systems", "Scripting", "Configuration"]
|
|
632
|
+
},
|
|
633
|
+
version: "5.5.0",
|
|
634
|
+
logo: "https://www.lua.org/images/lua-logo.gif",
|
|
635
|
+
i18n: {
|
|
636
|
+
en: {
|
|
637
|
+
name: "Lua",
|
|
638
|
+
description: "A lightweight, embeddable scripting language designed for extension and portability.",
|
|
639
|
+
longDescription: "Lua is a small, fast scripting language with tables, first-class functions, closures, coroutines, metatables, dynamic typing, and a compact C API for embedding and extension.\n\nIt is widely used in game engines, embedded systems, application scripting, configuration files, plugins, network tools, Redis scripts, Neovim configuration, and products that need a portable extension language."
|
|
640
|
+
},
|
|
641
|
+
es: {
|
|
642
|
+
name: "Lua",
|
|
643
|
+
description: "Un lenguaje de scripting liviano y embebible disenado para extension y portabilidad.",
|
|
644
|
+
longDescription: "Lua es un lenguaje de scripting pequeno y rapido con tablas, funciones de primera clase, closures, corutinas, metatables, tipado dinamico y una API C compacta para embedding y extension.\n\nSe usa ampliamente en motores de videojuegos, sistemas embebidos, scripting de aplicaciones, archivos de configuracion, plugins, herramientas de red, scripts de Redis, configuracion de Neovim y productos que necesitan un lenguaje de extension portable."
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
};
|
|
648
|
+
|
|
564
649
|
// src/languages/makefile.ts
|
|
565
650
|
var makefile = {
|
|
566
651
|
slug: "makefile",
|
|
@@ -757,6 +842,35 @@ var python = {
|
|
|
757
842
|
}
|
|
758
843
|
};
|
|
759
844
|
|
|
845
|
+
// src/languages/ruby.ts
|
|
846
|
+
var ruby = {
|
|
847
|
+
slug: "ruby",
|
|
848
|
+
publishedDate: "1995-12-21",
|
|
849
|
+
extensions: [".rb", ".rbw", ".rake", ".gemspec", "Gemfile", "Rakefile", "config.ru"],
|
|
850
|
+
author: "Yukihiro Matsumoto",
|
|
851
|
+
website: "https://www.ruby-lang.org",
|
|
852
|
+
paradigms: ["object-oriented", "imperative", "functional", "reflective", "scripting"],
|
|
853
|
+
tooling: {
|
|
854
|
+
runtimes: ["Ruby MRI", "JRuby", "TruffleRuby"],
|
|
855
|
+
packageManagers: ["RubyGems", "Bundler"],
|
|
856
|
+
ecosystems: ["Web", "Rails", "DevOps", "Automation"]
|
|
857
|
+
},
|
|
858
|
+
version: "4.0.3",
|
|
859
|
+
logo: "https://www.ruby-lang.org/images/header-ruby-logo.png",
|
|
860
|
+
i18n: {
|
|
861
|
+
en: {
|
|
862
|
+
name: "Ruby",
|
|
863
|
+
description: "A dynamic, object-oriented scripting language focused on productivity and developer happiness.",
|
|
864
|
+
longDescription: "Ruby is a dynamic language with expressive syntax, open classes, blocks, mixins, metaprogramming, exceptions, modules, and a strong object-oriented model where nearly everything is an object.\n\nIt is widely used for web applications with Ruby on Rails, command-line tools, automation scripts, infrastructure tooling, static site generation, testing frameworks, and developer productivity workflows."
|
|
865
|
+
},
|
|
866
|
+
es: {
|
|
867
|
+
name: "Ruby",
|
|
868
|
+
description: "Un lenguaje dinamico y orientado a objetos enfocado en productividad y felicidad del desarrollador.",
|
|
869
|
+
longDescription: "Ruby es un lenguaje dinamico con sintaxis expresiva, clases abiertas, bloques, mixins, metaprogramacion, excepciones, modulos y un modelo orientado a objetos donde casi todo es un objeto.\n\nSe usa ampliamente para aplicaciones web con Ruby on Rails, herramientas de linea de comandos, scripts de automatizacion, tooling de infraestructura, generadores de sitios estaticos, frameworks de testing y flujos de productividad para desarrolladores."
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
};
|
|
873
|
+
|
|
760
874
|
// src/languages/rust.ts
|
|
761
875
|
var rust = {
|
|
762
876
|
slug: "rust",
|
|
@@ -839,6 +953,35 @@ var sql = {
|
|
|
839
953
|
}
|
|
840
954
|
};
|
|
841
955
|
|
|
956
|
+
// src/languages/svelte.ts
|
|
957
|
+
var svelte = {
|
|
958
|
+
slug: "svelte",
|
|
959
|
+
publishedDate: "2016-11-26",
|
|
960
|
+
extensions: [".svelte"],
|
|
961
|
+
author: "Rich Harris / Svelte contributors",
|
|
962
|
+
website: "https://svelte.dev",
|
|
963
|
+
paradigms: ["component-based", "declarative", "reactive", "compiled"],
|
|
964
|
+
tooling: {
|
|
965
|
+
runtimes: ["Browser", "Node.js"],
|
|
966
|
+
packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
|
|
967
|
+
ecosystems: ["Web", "SvelteKit", "Vite"]
|
|
968
|
+
},
|
|
969
|
+
version: "5.55.5",
|
|
970
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/1/1b/Svelte_Logo.svg",
|
|
971
|
+
i18n: {
|
|
972
|
+
en: {
|
|
973
|
+
name: "Svelte",
|
|
974
|
+
description: "A compiled component framework for building reactive web user interfaces.",
|
|
975
|
+
longDescription: "Svelte components combine markup, styles, and script logic in single-file components that are compiled into efficient JavaScript for updating the DOM.\n\nIt is widely used for web applications, interactive interfaces, static sites, design systems, dashboards, and SvelteKit projects where developers want a reactive component model with minimal runtime overhead."
|
|
976
|
+
},
|
|
977
|
+
es: {
|
|
978
|
+
name: "Svelte",
|
|
979
|
+
description: "Un framework de componentes compilado para crear interfaces web reactivas.",
|
|
980
|
+
longDescription: "Los componentes Svelte combinan marcado, estilos y logica de script en componentes de archivo unico que se compilan a JavaScript eficiente para actualizar el DOM.\n\nSe usa ampliamente en aplicaciones web, interfaces interactivas, sitios estaticos, sistemas de diseno, dashboards y proyectos SvelteKit donde se busca un modelo de componentes reactivo con poca sobrecarga en runtime."
|
|
981
|
+
}
|
|
982
|
+
}
|
|
983
|
+
};
|
|
984
|
+
|
|
842
985
|
// src/languages/svg.ts
|
|
843
986
|
var svg = {
|
|
844
987
|
slug: "svg",
|
|
@@ -1091,10 +1234,12 @@ var zsh = {
|
|
|
1091
1234
|
|
|
1092
1235
|
// src/catalog.ts
|
|
1093
1236
|
var languages = [
|
|
1237
|
+
abap,
|
|
1094
1238
|
astro,
|
|
1095
1239
|
assembly,
|
|
1096
1240
|
bash,
|
|
1097
1241
|
c,
|
|
1242
|
+
cmake,
|
|
1098
1243
|
coffeescript,
|
|
1099
1244
|
cobol,
|
|
1100
1245
|
cpp,
|
|
@@ -1111,6 +1256,7 @@ var languages = [
|
|
|
1111
1256
|
json,
|
|
1112
1257
|
kotlin,
|
|
1113
1258
|
less,
|
|
1259
|
+
lua,
|
|
1114
1260
|
makefile,
|
|
1115
1261
|
markdown,
|
|
1116
1262
|
nginx,
|
|
@@ -1118,10 +1264,12 @@ var languages = [
|
|
|
1118
1264
|
php,
|
|
1119
1265
|
powershell,
|
|
1120
1266
|
python,
|
|
1267
|
+
ruby,
|
|
1121
1268
|
rust,
|
|
1122
1269
|
scss,
|
|
1123
1270
|
sql,
|
|
1124
1271
|
svg,
|
|
1272
|
+
svelte,
|
|
1125
1273
|
swift,
|
|
1126
1274
|
typescript,
|
|
1127
1275
|
visualBasic,
|
|
@@ -1179,6 +1327,6 @@ var resolveLocale = (translations, locale) => {
|
|
|
1179
1327
|
return "en";
|
|
1180
1328
|
};
|
|
1181
1329
|
|
|
1182
|
-
export { assembly, astro, bash, c, cobol, coffeescript, cpp, csharp, css, dart, detectLanguage, detectLanguages, dockerfile, go, graphql, groovy, html, java, javascript, json, kotlin, languages, less, localizeLanguage, makefile, markdown, nginx, objectiveC, php, powershell, python, rust, scss, sql, svg, swift, typescript, visualBasic, vue, webassembly, xml, yaml, zsh };
|
|
1330
|
+
export { abap, assembly, astro, bash, c, cmake, cobol, coffeescript, cpp, csharp, css, dart, detectLanguage, detectLanguages, dockerfile, go, graphql, groovy, html, java, javascript, json, kotlin, languages, less, localizeLanguage, lua, makefile, markdown, nginx, objectiveC, php, powershell, python, ruby, rust, scss, sql, svelte, svg, swift, typescript, visualBasic, vue, webassembly, xml, yaml, zsh };
|
|
1183
1331
|
//# sourceMappingURL=index.js.map
|
|
1184
1332
|
//# sourceMappingURL=index.js.map
|