dev-dict 0.4.7 → 0.4.9
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 +9 -15
- package/dist/dev-dict.min.js +1 -1
- package/dist/dev-dict.min.js.map +1 -1
- package/dist/index.d.ts +2844 -100
- package/dist/index.js +2887 -143
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2,118 +2,235 @@ const e = {
|
|
|
2
2
|
EN_US: "en-US",
|
|
3
3
|
EN_GB: "en-GB",
|
|
4
4
|
DE_DE: "de-DE"
|
|
5
|
-
},
|
|
5
|
+
}, En = ({
|
|
6
6
|
obj: t,
|
|
7
|
-
value:
|
|
8
|
-
useFallback:
|
|
9
|
-
}) =>
|
|
7
|
+
value: n,
|
|
8
|
+
useFallback: i = s.USE_FALLBACK
|
|
9
|
+
}) => n && Object.values(e).includes(n) ? t[n] || (i ? t[e.EN_US] : "") : n || (i ? t[e.EN_US] : ""), pn = ({
|
|
10
10
|
obj: t,
|
|
11
|
-
useFallback:
|
|
11
|
+
useFallback: n = s.USE_FALLBACK
|
|
12
12
|
}) => {
|
|
13
|
-
const
|
|
13
|
+
const i = Object.values(e);
|
|
14
14
|
return Object.fromEntries(
|
|
15
|
-
|
|
15
|
+
i.map((a) => [a, En({ obj: t, value: t[a], useFallback: n })])
|
|
16
16
|
);
|
|
17
|
-
},
|
|
17
|
+
}, S = ({
|
|
18
18
|
obj: t,
|
|
19
|
-
keys:
|
|
20
|
-
useFallback:
|
|
19
|
+
keys: n,
|
|
20
|
+
useFallback: i = s.USE_FALLBACK
|
|
21
21
|
}) => Object.fromEntries(
|
|
22
|
-
Object.entries(t).map(([
|
|
23
|
-
const
|
|
24
|
-
return [
|
|
22
|
+
Object.entries(t).map(([a, o]) => {
|
|
23
|
+
const _ = n.filter((d) => d in o && typeof o[d] == "object").map((d) => [d, pn({ obj: o[d], useFallback: i })]);
|
|
24
|
+
return [a, { ...o, ...Object.fromEntries(_) }];
|
|
25
25
|
})
|
|
26
|
-
),
|
|
26
|
+
), l = ({
|
|
27
27
|
obj: t,
|
|
28
|
-
locale:
|
|
29
|
-
useFallback:
|
|
30
|
-
}) =>
|
|
28
|
+
locale: n = s.DEFAULT_LOCALE,
|
|
29
|
+
useFallback: i = s.USE_FALLBACK
|
|
30
|
+
}) => En({ obj: t, value: t[n], useFallback: i }), Sn = ({
|
|
31
31
|
tag: t,
|
|
32
|
-
locale:
|
|
33
|
-
useFallback:
|
|
32
|
+
locale: n = s.DEFAULT_LOCALE,
|
|
33
|
+
useFallback: i = s.USE_FALLBACK
|
|
34
34
|
}) => ({
|
|
35
35
|
id: t.id,
|
|
36
|
-
name:
|
|
37
|
-
}),
|
|
36
|
+
name: l({ obj: t.name, locale: n, useFallback: i })
|
|
37
|
+
}), ln = ({
|
|
38
38
|
term: t,
|
|
39
|
-
locale:
|
|
40
|
-
useFallback:
|
|
39
|
+
locale: n = s.DEFAULT_LOCALE,
|
|
40
|
+
useFallback: i = s.USE_FALLBACK
|
|
41
41
|
}) => ({
|
|
42
42
|
id: t.id,
|
|
43
|
-
name:
|
|
44
|
-
}),
|
|
43
|
+
name: l({ obj: t.name, locale: n, useFallback: i })
|
|
44
|
+
}), c = {
|
|
45
45
|
id: "backend",
|
|
46
46
|
name: {
|
|
47
47
|
[e.EN_US]: "Backend",
|
|
48
48
|
[e.EN_GB]: e.EN_US,
|
|
49
49
|
[e.DE_DE]: "Backend"
|
|
50
50
|
}
|
|
51
|
-
},
|
|
51
|
+
}, r = {
|
|
52
52
|
id: "frontend",
|
|
53
53
|
name: {
|
|
54
54
|
[e.EN_US]: "Frontend",
|
|
55
55
|
[e.EN_GB]: e.EN_US,
|
|
56
56
|
[e.DE_DE]: "Frontend"
|
|
57
57
|
}
|
|
58
|
-
},
|
|
58
|
+
}, p = {
|
|
59
59
|
id: "open_source",
|
|
60
60
|
name: {
|
|
61
61
|
[e.EN_US]: "Open Source",
|
|
62
62
|
[e.EN_GB]: e.EN_US,
|
|
63
63
|
[e.DE_DE]: "Open Source"
|
|
64
64
|
}
|
|
65
|
-
},
|
|
66
|
-
[
|
|
67
|
-
[
|
|
68
|
-
[
|
|
69
|
-
},
|
|
65
|
+
}, Nn = {
|
|
66
|
+
[c.id]: c,
|
|
67
|
+
[r.id]: r,
|
|
68
|
+
[p.id]: p
|
|
69
|
+
}, E = S({ obj: Nn, keys: ["name"], useFallback: !1 }), m = {
|
|
70
|
+
id: "aes",
|
|
71
|
+
name: {
|
|
72
|
+
[e.EN_US]: "AES"
|
|
73
|
+
},
|
|
74
|
+
label: {
|
|
75
|
+
[e.EN_US]: ""
|
|
76
|
+
},
|
|
77
|
+
definition: {
|
|
78
|
+
[e.EN_US]: ""
|
|
79
|
+
},
|
|
80
|
+
type: [],
|
|
81
|
+
tags: []
|
|
82
|
+
}, g = {
|
|
83
|
+
id: "agile",
|
|
84
|
+
name: {
|
|
85
|
+
[e.EN_US]: "Agile"
|
|
86
|
+
},
|
|
87
|
+
label: {
|
|
88
|
+
[e.EN_US]: ""
|
|
89
|
+
},
|
|
90
|
+
definition: {
|
|
91
|
+
[e.EN_US]: ""
|
|
92
|
+
},
|
|
93
|
+
type: [],
|
|
94
|
+
tags: []
|
|
95
|
+
}, b = {
|
|
96
|
+
id: "ai",
|
|
97
|
+
name: {
|
|
98
|
+
[e.EN_US]: "AI"
|
|
99
|
+
},
|
|
100
|
+
label: {
|
|
101
|
+
[e.EN_US]: ""
|
|
102
|
+
},
|
|
103
|
+
definition: {
|
|
104
|
+
[e.EN_US]: ""
|
|
105
|
+
},
|
|
106
|
+
type: [],
|
|
107
|
+
tags: []
|
|
108
|
+
}, y = {
|
|
109
|
+
id: "algolia",
|
|
110
|
+
name: {
|
|
111
|
+
[e.EN_US]: "Algolia"
|
|
112
|
+
},
|
|
113
|
+
label: {
|
|
114
|
+
[e.EN_US]: ""
|
|
115
|
+
},
|
|
116
|
+
definition: {
|
|
117
|
+
[e.EN_US]: ""
|
|
118
|
+
},
|
|
119
|
+
type: [],
|
|
120
|
+
tags: []
|
|
121
|
+
}, f = {
|
|
122
|
+
id: "alpine_js",
|
|
123
|
+
name: {
|
|
124
|
+
[e.EN_US]: "Alpine.js"
|
|
125
|
+
},
|
|
126
|
+
label: {
|
|
127
|
+
[e.EN_US]: ""
|
|
128
|
+
},
|
|
129
|
+
definition: {
|
|
130
|
+
[e.EN_US]: ""
|
|
131
|
+
},
|
|
132
|
+
type: [],
|
|
133
|
+
tags: []
|
|
134
|
+
}, u = {
|
|
135
|
+
id: "android_studio",
|
|
136
|
+
name: {
|
|
137
|
+
[e.EN_US]: "Android Studio"
|
|
138
|
+
},
|
|
139
|
+
label: {
|
|
140
|
+
[e.EN_US]: ""
|
|
141
|
+
},
|
|
142
|
+
definition: {
|
|
143
|
+
[e.EN_US]: ""
|
|
144
|
+
},
|
|
145
|
+
type: [],
|
|
146
|
+
tags: []
|
|
147
|
+
}, k = {
|
|
148
|
+
id: "angularjs",
|
|
149
|
+
name: {
|
|
150
|
+
[e.EN_US]: "AngularJS"
|
|
151
|
+
},
|
|
152
|
+
label: {
|
|
153
|
+
[e.EN_US]: ""
|
|
154
|
+
},
|
|
155
|
+
definition: {
|
|
156
|
+
[e.EN_US]: ""
|
|
157
|
+
},
|
|
158
|
+
type: [],
|
|
159
|
+
tags: []
|
|
160
|
+
}, h = {
|
|
161
|
+
id: "apache_tomcat",
|
|
162
|
+
name: {
|
|
163
|
+
[e.EN_US]: "Apache Tomcat"
|
|
164
|
+
},
|
|
165
|
+
label: {
|
|
166
|
+
[e.EN_US]: ""
|
|
167
|
+
},
|
|
168
|
+
definition: {
|
|
169
|
+
[e.EN_US]: ""
|
|
170
|
+
},
|
|
171
|
+
type: [],
|
|
172
|
+
tags: []
|
|
173
|
+
}, L = {
|
|
174
|
+
id: "asp_net",
|
|
175
|
+
name: {
|
|
176
|
+
[e.EN_US]: "ASP.NET"
|
|
177
|
+
},
|
|
178
|
+
label: {
|
|
179
|
+
[e.EN_US]: ""
|
|
180
|
+
},
|
|
181
|
+
definition: {
|
|
182
|
+
[e.EN_US]: ""
|
|
183
|
+
},
|
|
184
|
+
type: [],
|
|
185
|
+
tags: []
|
|
186
|
+
}, j = {
|
|
70
187
|
id: "cms",
|
|
71
188
|
name: {
|
|
72
189
|
[e.EN_US]: "Content Management System",
|
|
73
190
|
[e.EN_GB]: e.EN_US,
|
|
74
191
|
[e.DE_DE]: "Content-Management-System"
|
|
75
192
|
}
|
|
76
|
-
},
|
|
193
|
+
}, A = {
|
|
77
194
|
id: "framework",
|
|
78
195
|
name: {
|
|
79
196
|
[e.EN_US]: "Framework",
|
|
80
197
|
[e.EN_GB]: e.EN_US,
|
|
81
198
|
[e.DE_DE]: "Framework"
|
|
82
199
|
}
|
|
83
|
-
},
|
|
200
|
+
}, w = {
|
|
84
201
|
id: "language",
|
|
85
202
|
name: {
|
|
86
203
|
[e.EN_US]: "Language",
|
|
87
204
|
[e.EN_GB]: e.EN_US,
|
|
88
205
|
[e.DE_DE]: "Sprache"
|
|
89
206
|
}
|
|
90
|
-
},
|
|
207
|
+
}, v = {
|
|
91
208
|
id: "library",
|
|
92
209
|
name: {
|
|
93
210
|
[e.EN_US]: "Library",
|
|
94
211
|
[e.EN_GB]: e.EN_US,
|
|
95
212
|
[e.DE_DE]: "Bibliothek"
|
|
96
213
|
}
|
|
97
|
-
},
|
|
214
|
+
}, C = {
|
|
98
215
|
id: "platform",
|
|
99
216
|
name: {
|
|
100
217
|
[e.EN_US]: "Platform"
|
|
101
218
|
}
|
|
102
|
-
},
|
|
219
|
+
}, D = {
|
|
103
220
|
id: "runtime_environment",
|
|
104
221
|
name: {
|
|
105
222
|
[e.EN_US]: "Runtime Environment",
|
|
106
223
|
[e.EN_GB]: e.EN_US,
|
|
107
224
|
[e.DE_DE]: "Laufzeitumgebung"
|
|
108
225
|
}
|
|
109
|
-
},
|
|
110
|
-
[
|
|
111
|
-
[
|
|
112
|
-
[
|
|
113
|
-
[
|
|
114
|
-
[
|
|
115
|
-
[
|
|
116
|
-
},
|
|
226
|
+
}, Un = {
|
|
227
|
+
[j.id]: j,
|
|
228
|
+
[A.id]: A,
|
|
229
|
+
[w.id]: w,
|
|
230
|
+
[v.id]: v,
|
|
231
|
+
[D.id]: D,
|
|
232
|
+
[C.id]: C
|
|
233
|
+
}, N = S({ obj: Un, keys: ["name"], useFallback: !1 }), T = {
|
|
117
234
|
id: "aws",
|
|
118
235
|
name: {
|
|
119
236
|
[e.EN_US]: "AWS"
|
|
@@ -124,156 +241,2783 @@ const e = {
|
|
|
124
241
|
definition: {
|
|
125
242
|
[e.EN_US]: ""
|
|
126
243
|
},
|
|
127
|
-
type: [
|
|
244
|
+
type: [N.platform],
|
|
128
245
|
tags: [],
|
|
129
246
|
links: {
|
|
130
247
|
website: ""
|
|
131
248
|
}
|
|
132
|
-
},
|
|
133
|
-
id: "
|
|
249
|
+
}, B = {
|
|
250
|
+
id: "azure",
|
|
134
251
|
name: {
|
|
135
|
-
[e.EN_US]: "
|
|
252
|
+
[e.EN_US]: "Azure"
|
|
136
253
|
},
|
|
137
254
|
label: {
|
|
138
|
-
[e.EN_US]: "
|
|
139
|
-
[e.DE_DE]: "Hochsprache"
|
|
255
|
+
[e.EN_US]: ""
|
|
140
256
|
},
|
|
141
257
|
definition: {
|
|
142
258
|
[e.EN_US]: ""
|
|
143
259
|
},
|
|
144
|
-
type: [
|
|
145
|
-
tags: [
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
}
|
|
149
|
-
}, y = {
|
|
150
|
-
id: "node_js",
|
|
260
|
+
type: [],
|
|
261
|
+
tags: []
|
|
262
|
+
}, x = {
|
|
263
|
+
id: "azure_pipelines",
|
|
151
264
|
name: {
|
|
152
|
-
[e.EN_US]: "
|
|
265
|
+
[e.EN_US]: "Azure Pipelines"
|
|
153
266
|
},
|
|
154
267
|
label: {
|
|
155
|
-
[e.EN_US]: "
|
|
156
|
-
[e.DE_DE]: "JavaScript-Laufzeit"
|
|
268
|
+
[e.EN_US]: ""
|
|
157
269
|
},
|
|
158
270
|
definition: {
|
|
159
|
-
[e.EN_US]: "
|
|
160
|
-
[e.DE_DE]: "Node.js ist eine kostenlose, Open-Source, plattformübergreifende JavaScript-Laufzeitumgebung, die es Entwicklern ermöglicht, Server, Webanwendungen, Befehlszeilentools und Skripte zu erstellen."
|
|
271
|
+
[e.EN_US]: ""
|
|
161
272
|
},
|
|
162
|
-
type: [
|
|
163
|
-
tags: [
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
}
|
|
167
|
-
}, T = {
|
|
168
|
-
id: "react",
|
|
273
|
+
type: [],
|
|
274
|
+
tags: []
|
|
275
|
+
}, z = {
|
|
276
|
+
id: "backbone_js",
|
|
169
277
|
name: {
|
|
170
|
-
[e.EN_US]: "
|
|
278
|
+
[e.EN_US]: "Backbone.js"
|
|
171
279
|
},
|
|
172
280
|
label: {
|
|
173
|
-
[e.EN_US]: "
|
|
174
|
-
[e.DE_DE]: "JavaScript-Bibliothek"
|
|
281
|
+
[e.EN_US]: ""
|
|
175
282
|
},
|
|
176
283
|
definition: {
|
|
177
|
-
[e.EN_US]: "
|
|
178
|
-
[e.DE_DE]: "Eine JavaScript-Bibliothek zum Erstellen komponentenbasierter Benutzeroberflächen."
|
|
284
|
+
[e.EN_US]: ""
|
|
179
285
|
},
|
|
180
|
-
type: [
|
|
181
|
-
tags: [
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
}
|
|
185
|
-
}, B = {
|
|
186
|
-
id: "typescript",
|
|
286
|
+
type: [],
|
|
287
|
+
tags: []
|
|
288
|
+
}, F = {
|
|
289
|
+
id: "bash",
|
|
187
290
|
name: {
|
|
188
|
-
[e.EN_US]: "
|
|
291
|
+
[e.EN_US]: "Bash"
|
|
189
292
|
},
|
|
190
293
|
label: {
|
|
191
|
-
[e.EN_US]: "
|
|
192
|
-
[e.EN_GB]: e.EN_US,
|
|
193
|
-
[e.DE_DE]: "Hochsprache"
|
|
294
|
+
[e.EN_US]: ""
|
|
194
295
|
},
|
|
195
296
|
definition: {
|
|
196
|
-
[e.EN_US]: "
|
|
197
|
-
[e.EN_GB]: e.EN_US,
|
|
198
|
-
[e.DE_DE]: "TypeScript ist eine stark typisierte Programmiersprache, die auf JavaScript aufbaut und Ihnen bei jeder Größenordnung bessere Werkzeuge bietet."
|
|
297
|
+
[e.EN_US]: ""
|
|
199
298
|
},
|
|
200
|
-
type: [
|
|
201
|
-
tags: [
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
299
|
+
type: [],
|
|
300
|
+
tags: []
|
|
301
|
+
}, G = {
|
|
302
|
+
id: "bdd",
|
|
303
|
+
name: {
|
|
304
|
+
[e.EN_US]: "BDD"
|
|
305
|
+
},
|
|
306
|
+
label: {
|
|
307
|
+
[e.EN_US]: ""
|
|
308
|
+
},
|
|
309
|
+
definition: {
|
|
310
|
+
[e.EN_US]: ""
|
|
311
|
+
},
|
|
312
|
+
type: [],
|
|
313
|
+
tags: []
|
|
314
|
+
}, P = {
|
|
315
|
+
id: "beanstalk",
|
|
316
|
+
name: {
|
|
317
|
+
[e.EN_US]: "Beanstalk"
|
|
318
|
+
},
|
|
319
|
+
label: {
|
|
320
|
+
[e.EN_US]: ""
|
|
321
|
+
},
|
|
322
|
+
definition: {
|
|
323
|
+
[e.EN_US]: ""
|
|
324
|
+
},
|
|
325
|
+
type: [],
|
|
326
|
+
tags: []
|
|
327
|
+
}, O = {
|
|
328
|
+
id: "big_js",
|
|
329
|
+
name: {
|
|
330
|
+
[e.EN_US]: "Big.js"
|
|
331
|
+
},
|
|
332
|
+
label: {
|
|
333
|
+
[e.EN_US]: ""
|
|
334
|
+
},
|
|
335
|
+
definition: {
|
|
336
|
+
[e.EN_US]: ""
|
|
337
|
+
},
|
|
338
|
+
type: [],
|
|
339
|
+
tags: []
|
|
340
|
+
}, M = {
|
|
341
|
+
id: "biome",
|
|
342
|
+
name: {
|
|
343
|
+
[e.EN_US]: "Biome"
|
|
344
|
+
},
|
|
345
|
+
label: {
|
|
346
|
+
[e.EN_US]: ""
|
|
347
|
+
},
|
|
348
|
+
definition: {
|
|
349
|
+
[e.EN_US]: ""
|
|
350
|
+
},
|
|
351
|
+
type: [],
|
|
352
|
+
tags: []
|
|
353
|
+
}, R = {
|
|
354
|
+
id: "bitbucket_pipelines",
|
|
355
|
+
name: {
|
|
356
|
+
[e.EN_US]: "Bitbucket Pipelines"
|
|
357
|
+
},
|
|
358
|
+
label: {
|
|
359
|
+
[e.EN_US]: ""
|
|
360
|
+
},
|
|
361
|
+
definition: {
|
|
362
|
+
[e.EN_US]: ""
|
|
363
|
+
},
|
|
364
|
+
type: [],
|
|
365
|
+
tags: []
|
|
366
|
+
}, J = {
|
|
367
|
+
id: "bitcoin",
|
|
368
|
+
name: {
|
|
369
|
+
[e.EN_US]: "Bitcoin"
|
|
370
|
+
},
|
|
371
|
+
label: {
|
|
372
|
+
[e.EN_US]: ""
|
|
373
|
+
},
|
|
374
|
+
definition: {
|
|
375
|
+
[e.EN_US]: ""
|
|
376
|
+
},
|
|
377
|
+
type: [],
|
|
378
|
+
tags: []
|
|
379
|
+
}, W = {
|
|
380
|
+
id: "blockchain",
|
|
381
|
+
name: {
|
|
382
|
+
[e.EN_US]: "Blockchain"
|
|
383
|
+
},
|
|
384
|
+
label: {
|
|
385
|
+
[e.EN_US]: ""
|
|
386
|
+
},
|
|
387
|
+
definition: {
|
|
388
|
+
[e.EN_US]: ""
|
|
389
|
+
},
|
|
390
|
+
type: [],
|
|
391
|
+
tags: []
|
|
392
|
+
}, q = {
|
|
393
|
+
id: "bootstrap",
|
|
394
|
+
name: {
|
|
395
|
+
[e.EN_US]: "Bootstrap"
|
|
396
|
+
},
|
|
397
|
+
label: {
|
|
398
|
+
[e.EN_US]: ""
|
|
399
|
+
},
|
|
400
|
+
definition: {
|
|
401
|
+
[e.EN_US]: ""
|
|
402
|
+
},
|
|
403
|
+
type: [],
|
|
404
|
+
tags: []
|
|
405
|
+
}, H = {
|
|
406
|
+
id: "browserify",
|
|
407
|
+
name: {
|
|
408
|
+
[e.EN_US]: "Browserify"
|
|
409
|
+
},
|
|
410
|
+
label: {
|
|
411
|
+
[e.EN_US]: ""
|
|
412
|
+
},
|
|
413
|
+
definition: {
|
|
414
|
+
[e.EN_US]: ""
|
|
415
|
+
},
|
|
416
|
+
type: [],
|
|
417
|
+
tags: []
|
|
418
|
+
}, K = {
|
|
419
|
+
id: "browserstack",
|
|
420
|
+
name: {
|
|
421
|
+
[e.EN_US]: "BrowserStack"
|
|
422
|
+
},
|
|
423
|
+
label: {
|
|
424
|
+
[e.EN_US]: ""
|
|
425
|
+
},
|
|
426
|
+
definition: {
|
|
427
|
+
[e.EN_US]: ""
|
|
428
|
+
},
|
|
429
|
+
type: [],
|
|
430
|
+
tags: []
|
|
431
|
+
}, I = {
|
|
432
|
+
id: "bugzilla",
|
|
433
|
+
name: {
|
|
434
|
+
[e.EN_US]: "Bugzilla"
|
|
435
|
+
},
|
|
436
|
+
label: {
|
|
437
|
+
[e.EN_US]: ""
|
|
438
|
+
},
|
|
439
|
+
definition: {
|
|
440
|
+
[e.EN_US]: ""
|
|
441
|
+
},
|
|
442
|
+
type: [],
|
|
443
|
+
tags: []
|
|
444
|
+
}, Q = {
|
|
445
|
+
id: "c_sharp",
|
|
446
|
+
name: {
|
|
447
|
+
[e.EN_US]: "C#"
|
|
448
|
+
},
|
|
449
|
+
label: {
|
|
450
|
+
[e.EN_US]: ""
|
|
451
|
+
},
|
|
452
|
+
definition: {
|
|
453
|
+
[e.EN_US]: ""
|
|
454
|
+
},
|
|
455
|
+
type: [],
|
|
456
|
+
tags: []
|
|
457
|
+
}, V = {
|
|
458
|
+
id: "cakephp",
|
|
459
|
+
name: {
|
|
460
|
+
[e.EN_US]: "CakePHP"
|
|
461
|
+
},
|
|
462
|
+
label: {
|
|
463
|
+
[e.EN_US]: ""
|
|
464
|
+
},
|
|
465
|
+
definition: {
|
|
466
|
+
[e.EN_US]: ""
|
|
467
|
+
},
|
|
468
|
+
type: [],
|
|
469
|
+
tags: []
|
|
470
|
+
}, Y = {
|
|
471
|
+
id: "chart_js",
|
|
472
|
+
name: {
|
|
473
|
+
[e.EN_US]: "Chart.js"
|
|
474
|
+
},
|
|
475
|
+
label: {
|
|
476
|
+
[e.EN_US]: ""
|
|
477
|
+
},
|
|
478
|
+
definition: {
|
|
479
|
+
[e.EN_US]: ""
|
|
480
|
+
},
|
|
481
|
+
type: [],
|
|
482
|
+
tags: []
|
|
483
|
+
}, Z = {
|
|
484
|
+
id: "ci_cd",
|
|
485
|
+
name: {
|
|
486
|
+
[e.EN_US]: "CI/CD"
|
|
487
|
+
},
|
|
488
|
+
label: {
|
|
489
|
+
[e.EN_US]: ""
|
|
490
|
+
},
|
|
491
|
+
definition: {
|
|
492
|
+
[e.EN_US]: ""
|
|
493
|
+
},
|
|
494
|
+
type: [],
|
|
495
|
+
tags: []
|
|
496
|
+
}, X = {
|
|
497
|
+
id: "circle_ci",
|
|
498
|
+
name: {
|
|
499
|
+
[e.EN_US]: "CircleCI"
|
|
500
|
+
},
|
|
501
|
+
label: {
|
|
502
|
+
[e.EN_US]: ""
|
|
503
|
+
},
|
|
504
|
+
definition: {
|
|
505
|
+
[e.EN_US]: ""
|
|
506
|
+
},
|
|
507
|
+
type: [],
|
|
508
|
+
tags: []
|
|
509
|
+
}, $ = {
|
|
510
|
+
id: "claude_code",
|
|
511
|
+
name: {
|
|
512
|
+
[e.EN_US]: "Claude Code"
|
|
513
|
+
},
|
|
514
|
+
label: {
|
|
515
|
+
[e.EN_US]: ""
|
|
516
|
+
},
|
|
517
|
+
definition: {
|
|
518
|
+
[e.EN_US]: ""
|
|
519
|
+
},
|
|
520
|
+
type: [],
|
|
521
|
+
tags: []
|
|
522
|
+
}, ee = {
|
|
523
|
+
id: "clean_code",
|
|
524
|
+
name: {
|
|
525
|
+
[e.EN_US]: "Clean Code"
|
|
526
|
+
},
|
|
527
|
+
label: {
|
|
528
|
+
[e.EN_US]: ""
|
|
529
|
+
},
|
|
530
|
+
definition: {
|
|
531
|
+
[e.EN_US]: ""
|
|
532
|
+
},
|
|
533
|
+
type: [],
|
|
534
|
+
tags: []
|
|
535
|
+
}, ie = {
|
|
536
|
+
id: "cloudflare",
|
|
537
|
+
name: {
|
|
538
|
+
[e.EN_US]: "Cloudflare"
|
|
539
|
+
},
|
|
540
|
+
label: {
|
|
541
|
+
[e.EN_US]: ""
|
|
542
|
+
},
|
|
543
|
+
definition: {
|
|
544
|
+
[e.EN_US]: ""
|
|
545
|
+
},
|
|
546
|
+
type: [],
|
|
547
|
+
tags: []
|
|
548
|
+
}, te = {
|
|
549
|
+
id: "codacy",
|
|
550
|
+
name: {
|
|
551
|
+
[e.EN_US]: "Codacy"
|
|
552
|
+
},
|
|
553
|
+
label: {
|
|
554
|
+
[e.EN_US]: ""
|
|
555
|
+
},
|
|
556
|
+
definition: {
|
|
557
|
+
[e.EN_US]: ""
|
|
558
|
+
},
|
|
559
|
+
type: [],
|
|
560
|
+
tags: []
|
|
561
|
+
}, ne = {
|
|
562
|
+
id: "codeigniter",
|
|
563
|
+
name: {
|
|
564
|
+
[e.EN_US]: "CodeIgniter"
|
|
565
|
+
},
|
|
566
|
+
label: {
|
|
567
|
+
[e.EN_US]: ""
|
|
568
|
+
},
|
|
569
|
+
definition: {
|
|
570
|
+
[e.EN_US]: ""
|
|
571
|
+
},
|
|
572
|
+
type: [],
|
|
573
|
+
tags: []
|
|
574
|
+
}, ae = {
|
|
575
|
+
id: "confluence",
|
|
576
|
+
name: {
|
|
577
|
+
[e.EN_US]: "Confluence"
|
|
578
|
+
},
|
|
579
|
+
label: {
|
|
580
|
+
[e.EN_US]: ""
|
|
581
|
+
},
|
|
582
|
+
definition: {
|
|
583
|
+
[e.EN_US]: ""
|
|
584
|
+
},
|
|
585
|
+
type: [],
|
|
586
|
+
tags: []
|
|
587
|
+
}, se = {
|
|
588
|
+
id: "contentful",
|
|
589
|
+
name: {
|
|
590
|
+
[e.EN_US]: "Contentful"
|
|
591
|
+
},
|
|
592
|
+
label: {
|
|
593
|
+
[e.EN_US]: ""
|
|
594
|
+
},
|
|
595
|
+
definition: {
|
|
596
|
+
[e.EN_US]: ""
|
|
597
|
+
},
|
|
598
|
+
type: [],
|
|
599
|
+
tags: []
|
|
600
|
+
}, oe = {
|
|
601
|
+
id: "cplusplus",
|
|
602
|
+
name: {
|
|
603
|
+
[e.EN_US]: "C++"
|
|
604
|
+
},
|
|
605
|
+
label: {
|
|
606
|
+
[e.EN_US]: ""
|
|
607
|
+
},
|
|
608
|
+
definition: {
|
|
609
|
+
[e.EN_US]: ""
|
|
610
|
+
},
|
|
611
|
+
type: [],
|
|
612
|
+
tags: []
|
|
613
|
+
}, _e = {
|
|
614
|
+
id: "craft_cms",
|
|
615
|
+
name: {
|
|
616
|
+
[e.EN_US]: "Craft CMS"
|
|
617
|
+
},
|
|
618
|
+
label: {
|
|
619
|
+
[e.EN_US]: ""
|
|
620
|
+
},
|
|
621
|
+
definition: {
|
|
622
|
+
[e.EN_US]: ""
|
|
623
|
+
},
|
|
624
|
+
type: [],
|
|
625
|
+
tags: []
|
|
626
|
+
}, de = {
|
|
627
|
+
id: "cs_cart",
|
|
628
|
+
name: {
|
|
629
|
+
[e.EN_US]: "CS-Cart"
|
|
630
|
+
},
|
|
631
|
+
label: {
|
|
632
|
+
[e.EN_US]: ""
|
|
633
|
+
},
|
|
634
|
+
definition: {
|
|
635
|
+
[e.EN_US]: ""
|
|
636
|
+
},
|
|
637
|
+
type: [],
|
|
638
|
+
tags: []
|
|
639
|
+
}, Ee = {
|
|
640
|
+
id: "css",
|
|
641
|
+
name: {
|
|
642
|
+
[e.EN_US]: "CSS"
|
|
643
|
+
},
|
|
644
|
+
label: {
|
|
645
|
+
[e.EN_US]: ""
|
|
646
|
+
},
|
|
647
|
+
definition: {
|
|
648
|
+
[e.EN_US]: ""
|
|
649
|
+
},
|
|
650
|
+
type: [],
|
|
651
|
+
tags: []
|
|
652
|
+
}, Se = {
|
|
653
|
+
id: "css_in_js",
|
|
654
|
+
name: {
|
|
655
|
+
[e.EN_US]: "CSS-in-JS"
|
|
656
|
+
},
|
|
657
|
+
label: {
|
|
658
|
+
[e.EN_US]: ""
|
|
659
|
+
},
|
|
660
|
+
definition: {
|
|
661
|
+
[e.EN_US]: ""
|
|
662
|
+
},
|
|
663
|
+
type: [],
|
|
664
|
+
tags: []
|
|
665
|
+
}, le = {
|
|
666
|
+
id: "css_modules",
|
|
667
|
+
name: {
|
|
668
|
+
[e.EN_US]: "CSS Modules"
|
|
669
|
+
},
|
|
670
|
+
label: {
|
|
671
|
+
[e.EN_US]: ""
|
|
672
|
+
},
|
|
673
|
+
definition: {
|
|
674
|
+
[e.EN_US]: ""
|
|
675
|
+
},
|
|
676
|
+
type: [],
|
|
677
|
+
tags: []
|
|
678
|
+
}, Ne = {
|
|
679
|
+
id: "cucumber",
|
|
680
|
+
name: {
|
|
681
|
+
[e.EN_US]: "Cucumber"
|
|
682
|
+
},
|
|
683
|
+
label: {
|
|
684
|
+
[e.EN_US]: ""
|
|
685
|
+
},
|
|
686
|
+
definition: {
|
|
687
|
+
[e.EN_US]: ""
|
|
688
|
+
},
|
|
689
|
+
type: [],
|
|
690
|
+
tags: []
|
|
691
|
+
}, Ue = {
|
|
692
|
+
id: "cvs",
|
|
693
|
+
name: {
|
|
694
|
+
[e.EN_US]: "CVS"
|
|
695
|
+
},
|
|
696
|
+
label: {
|
|
697
|
+
[e.EN_US]: ""
|
|
698
|
+
},
|
|
699
|
+
definition: {
|
|
700
|
+
[e.EN_US]: ""
|
|
701
|
+
},
|
|
702
|
+
type: [],
|
|
703
|
+
tags: []
|
|
704
|
+
}, ce = {
|
|
705
|
+
id: "cypress",
|
|
706
|
+
name: {
|
|
707
|
+
[e.EN_US]: "Cypress"
|
|
708
|
+
},
|
|
709
|
+
label: {
|
|
710
|
+
[e.EN_US]: ""
|
|
711
|
+
},
|
|
712
|
+
definition: {
|
|
713
|
+
[e.EN_US]: ""
|
|
714
|
+
},
|
|
715
|
+
type: [],
|
|
716
|
+
tags: []
|
|
717
|
+
}, re = {
|
|
718
|
+
id: "ddd",
|
|
719
|
+
name: {
|
|
720
|
+
[e.EN_US]: "DDD"
|
|
721
|
+
},
|
|
722
|
+
label: {
|
|
723
|
+
[e.EN_US]: ""
|
|
724
|
+
},
|
|
725
|
+
definition: {
|
|
726
|
+
[e.EN_US]: ""
|
|
727
|
+
},
|
|
728
|
+
type: [],
|
|
729
|
+
tags: []
|
|
730
|
+
}, pe = {
|
|
731
|
+
id: "digital_ocean",
|
|
732
|
+
name: {
|
|
733
|
+
[e.EN_US]: "Digital Ocean"
|
|
734
|
+
},
|
|
735
|
+
label: {
|
|
736
|
+
[e.EN_US]: ""
|
|
737
|
+
},
|
|
738
|
+
definition: {
|
|
739
|
+
[e.EN_US]: ""
|
|
740
|
+
},
|
|
741
|
+
type: [],
|
|
742
|
+
tags: []
|
|
743
|
+
}, me = {
|
|
744
|
+
id: "docker",
|
|
745
|
+
name: {
|
|
746
|
+
[e.EN_US]: "Docker"
|
|
747
|
+
},
|
|
748
|
+
label: {
|
|
749
|
+
[e.EN_US]: ""
|
|
750
|
+
},
|
|
751
|
+
definition: {
|
|
752
|
+
[e.EN_US]: ""
|
|
753
|
+
},
|
|
754
|
+
type: [],
|
|
755
|
+
tags: []
|
|
756
|
+
}, ge = {
|
|
757
|
+
id: "docusaurus",
|
|
758
|
+
name: {
|
|
759
|
+
[e.EN_US]: "Docusaurus"
|
|
760
|
+
},
|
|
761
|
+
label: {
|
|
762
|
+
[e.EN_US]: ""
|
|
763
|
+
},
|
|
764
|
+
definition: {
|
|
765
|
+
[e.EN_US]: ""
|
|
766
|
+
},
|
|
767
|
+
type: [],
|
|
768
|
+
tags: []
|
|
769
|
+
}, be = {
|
|
770
|
+
id: "dot_net",
|
|
771
|
+
name: {
|
|
772
|
+
[e.EN_US]: ".NET"
|
|
773
|
+
},
|
|
774
|
+
label: {
|
|
775
|
+
[e.EN_US]: ""
|
|
776
|
+
},
|
|
777
|
+
definition: {
|
|
778
|
+
[e.EN_US]: ""
|
|
779
|
+
},
|
|
780
|
+
type: [],
|
|
781
|
+
tags: []
|
|
782
|
+
}, ye = {
|
|
783
|
+
id: "dreamweaver",
|
|
784
|
+
name: {
|
|
785
|
+
[e.EN_US]: "Dreamweaver"
|
|
786
|
+
},
|
|
787
|
+
label: {
|
|
788
|
+
[e.EN_US]: ""
|
|
789
|
+
},
|
|
790
|
+
definition: {
|
|
791
|
+
[e.EN_US]: ""
|
|
792
|
+
},
|
|
793
|
+
type: [],
|
|
794
|
+
tags: []
|
|
795
|
+
}, fe = {
|
|
796
|
+
id: "dynatrace",
|
|
797
|
+
name: {
|
|
798
|
+
[e.EN_US]: "Dynatrace"
|
|
799
|
+
},
|
|
800
|
+
label: {
|
|
801
|
+
[e.EN_US]: ""
|
|
802
|
+
},
|
|
803
|
+
definition: {
|
|
804
|
+
[e.EN_US]: ""
|
|
805
|
+
},
|
|
806
|
+
type: [],
|
|
807
|
+
tags: []
|
|
808
|
+
}, ue = {
|
|
809
|
+
id: "e2e",
|
|
810
|
+
name: {
|
|
811
|
+
[e.EN_US]: "E2E"
|
|
812
|
+
},
|
|
813
|
+
label: {
|
|
814
|
+
[e.EN_US]: ""
|
|
815
|
+
},
|
|
816
|
+
definition: {
|
|
817
|
+
[e.EN_US]: ""
|
|
818
|
+
},
|
|
819
|
+
type: [],
|
|
820
|
+
tags: []
|
|
821
|
+
}, ke = {
|
|
822
|
+
id: "encryption",
|
|
823
|
+
name: {
|
|
824
|
+
[e.EN_US]: "Encryption"
|
|
825
|
+
},
|
|
826
|
+
label: {
|
|
827
|
+
[e.EN_US]: ""
|
|
828
|
+
},
|
|
829
|
+
definition: {
|
|
830
|
+
[e.EN_US]: ""
|
|
831
|
+
},
|
|
832
|
+
type: [],
|
|
833
|
+
tags: []
|
|
834
|
+
}, he = {
|
|
835
|
+
id: "es_build",
|
|
836
|
+
name: {
|
|
837
|
+
[e.EN_US]: "esbuild"
|
|
838
|
+
},
|
|
839
|
+
label: {
|
|
840
|
+
[e.EN_US]: ""
|
|
841
|
+
},
|
|
842
|
+
definition: {
|
|
843
|
+
[e.EN_US]: ""
|
|
844
|
+
},
|
|
845
|
+
type: [],
|
|
846
|
+
tags: []
|
|
847
|
+
}, Le = {
|
|
848
|
+
id: "eslint",
|
|
849
|
+
name: {
|
|
850
|
+
[e.EN_US]: "ESLint"
|
|
851
|
+
},
|
|
852
|
+
label: {
|
|
853
|
+
[e.EN_US]: ""
|
|
854
|
+
},
|
|
855
|
+
definition: {
|
|
856
|
+
[e.EN_US]: ""
|
|
857
|
+
},
|
|
858
|
+
type: [],
|
|
859
|
+
tags: []
|
|
860
|
+
}, je = {
|
|
861
|
+
id: "excel",
|
|
862
|
+
name: {
|
|
863
|
+
[e.EN_US]: "Excel"
|
|
864
|
+
},
|
|
865
|
+
label: {
|
|
866
|
+
[e.EN_US]: ""
|
|
867
|
+
},
|
|
868
|
+
definition: {
|
|
869
|
+
[e.EN_US]: ""
|
|
870
|
+
},
|
|
871
|
+
type: [],
|
|
872
|
+
tags: []
|
|
873
|
+
}, Ae = {
|
|
874
|
+
id: "express",
|
|
875
|
+
name: {
|
|
876
|
+
[e.EN_US]: "Express"
|
|
877
|
+
},
|
|
878
|
+
label: {
|
|
879
|
+
[e.EN_US]: ""
|
|
880
|
+
},
|
|
881
|
+
definition: {
|
|
882
|
+
[e.EN_US]: ""
|
|
883
|
+
},
|
|
884
|
+
type: [],
|
|
885
|
+
tags: []
|
|
886
|
+
}, we = {
|
|
887
|
+
id: "expression_engine",
|
|
888
|
+
name: {
|
|
889
|
+
[e.EN_US]: "ExpressionEngine CMS"
|
|
890
|
+
},
|
|
891
|
+
label: {
|
|
892
|
+
[e.EN_US]: ""
|
|
893
|
+
},
|
|
894
|
+
definition: {
|
|
895
|
+
[e.EN_US]: ""
|
|
896
|
+
},
|
|
897
|
+
type: [],
|
|
898
|
+
tags: []
|
|
899
|
+
}, ve = {
|
|
900
|
+
id: "fhir",
|
|
901
|
+
name: {
|
|
902
|
+
[e.EN_US]: "FHIR"
|
|
903
|
+
},
|
|
904
|
+
label: {
|
|
905
|
+
[e.EN_US]: ""
|
|
906
|
+
},
|
|
907
|
+
definition: {
|
|
908
|
+
[e.EN_US]: ""
|
|
909
|
+
},
|
|
910
|
+
type: [],
|
|
911
|
+
tags: []
|
|
912
|
+
}, Ce = {
|
|
913
|
+
id: "figma",
|
|
914
|
+
name: {
|
|
915
|
+
[e.EN_US]: "Figma"
|
|
916
|
+
},
|
|
917
|
+
label: {
|
|
918
|
+
[e.EN_US]: ""
|
|
919
|
+
},
|
|
920
|
+
definition: {
|
|
921
|
+
[e.EN_US]: ""
|
|
922
|
+
},
|
|
923
|
+
type: [],
|
|
924
|
+
tags: []
|
|
925
|
+
}, De = {
|
|
926
|
+
id: "filezilla",
|
|
927
|
+
name: {
|
|
928
|
+
[e.EN_US]: "FileZilla"
|
|
929
|
+
},
|
|
930
|
+
label: {
|
|
931
|
+
[e.EN_US]: ""
|
|
932
|
+
},
|
|
933
|
+
definition: {
|
|
934
|
+
[e.EN_US]: ""
|
|
935
|
+
},
|
|
936
|
+
type: [],
|
|
937
|
+
tags: []
|
|
938
|
+
}, Te = {
|
|
939
|
+
id: "firebase",
|
|
940
|
+
name: {
|
|
941
|
+
[e.EN_US]: "Firebase"
|
|
942
|
+
},
|
|
943
|
+
label: {
|
|
944
|
+
[e.EN_US]: ""
|
|
945
|
+
},
|
|
946
|
+
definition: {
|
|
947
|
+
[e.EN_US]: ""
|
|
948
|
+
},
|
|
949
|
+
type: [],
|
|
950
|
+
tags: []
|
|
951
|
+
}, Be = {
|
|
952
|
+
id: "flamelink",
|
|
953
|
+
name: {
|
|
954
|
+
[e.EN_US]: "Flamelink CMS"
|
|
955
|
+
},
|
|
956
|
+
label: {
|
|
957
|
+
[e.EN_US]: ""
|
|
958
|
+
},
|
|
959
|
+
definition: {
|
|
960
|
+
[e.EN_US]: ""
|
|
961
|
+
},
|
|
962
|
+
type: [],
|
|
963
|
+
tags: []
|
|
964
|
+
}, xe = {
|
|
965
|
+
id: "flutter",
|
|
966
|
+
name: {
|
|
967
|
+
[e.EN_US]: "Flutter"
|
|
968
|
+
},
|
|
969
|
+
label: {
|
|
970
|
+
[e.EN_US]: ""
|
|
971
|
+
},
|
|
972
|
+
definition: {
|
|
973
|
+
[e.EN_US]: ""
|
|
974
|
+
},
|
|
975
|
+
type: [],
|
|
976
|
+
tags: []
|
|
977
|
+
}, ze = {
|
|
978
|
+
id: "foundation",
|
|
979
|
+
name: {
|
|
980
|
+
[e.EN_US]: "Foundation"
|
|
981
|
+
},
|
|
982
|
+
label: {
|
|
983
|
+
[e.EN_US]: ""
|
|
984
|
+
},
|
|
985
|
+
definition: {
|
|
986
|
+
[e.EN_US]: ""
|
|
987
|
+
},
|
|
988
|
+
type: [],
|
|
989
|
+
tags: []
|
|
990
|
+
}, Fe = {
|
|
991
|
+
id: "ftp",
|
|
992
|
+
name: {
|
|
993
|
+
[e.EN_US]: "FTP"
|
|
994
|
+
},
|
|
995
|
+
label: {
|
|
996
|
+
[e.EN_US]: ""
|
|
997
|
+
},
|
|
998
|
+
definition: {
|
|
999
|
+
[e.EN_US]: ""
|
|
1000
|
+
},
|
|
1001
|
+
type: [],
|
|
1002
|
+
tags: []
|
|
1003
|
+
}, Ge = {
|
|
1004
|
+
id: "gatsby",
|
|
1005
|
+
name: {
|
|
1006
|
+
[e.EN_US]: "Gatsby"
|
|
1007
|
+
},
|
|
1008
|
+
label: {
|
|
1009
|
+
[e.EN_US]: ""
|
|
1010
|
+
},
|
|
1011
|
+
definition: {
|
|
1012
|
+
[e.EN_US]: ""
|
|
1013
|
+
},
|
|
1014
|
+
type: [],
|
|
1015
|
+
tags: []
|
|
1016
|
+
}, Pe = {
|
|
1017
|
+
id: "gcp",
|
|
1018
|
+
name: {
|
|
1019
|
+
[e.EN_US]: "GCP"
|
|
1020
|
+
},
|
|
1021
|
+
label: {
|
|
1022
|
+
[e.EN_US]: ""
|
|
1023
|
+
},
|
|
1024
|
+
definition: {
|
|
1025
|
+
[e.EN_US]: ""
|
|
1026
|
+
},
|
|
1027
|
+
type: [],
|
|
1028
|
+
tags: []
|
|
1029
|
+
}, Oe = {
|
|
1030
|
+
id: "git",
|
|
1031
|
+
name: {
|
|
1032
|
+
[e.EN_US]: "Git"
|
|
1033
|
+
},
|
|
1034
|
+
label: {
|
|
1035
|
+
[e.EN_US]: ""
|
|
1036
|
+
},
|
|
1037
|
+
definition: {
|
|
1038
|
+
[e.EN_US]: ""
|
|
1039
|
+
},
|
|
1040
|
+
type: [],
|
|
1041
|
+
tags: []
|
|
1042
|
+
}, Me = {
|
|
1043
|
+
id: "github",
|
|
1044
|
+
name: {
|
|
1045
|
+
[e.EN_US]: "GitHub"
|
|
1046
|
+
},
|
|
1047
|
+
label: {
|
|
1048
|
+
[e.EN_US]: ""
|
|
1049
|
+
},
|
|
1050
|
+
definition: {
|
|
1051
|
+
[e.EN_US]: ""
|
|
1052
|
+
},
|
|
1053
|
+
type: [],
|
|
1054
|
+
tags: []
|
|
1055
|
+
}, Re = {
|
|
1056
|
+
id: "github_actions",
|
|
1057
|
+
name: {
|
|
1058
|
+
[e.EN_US]: "GitHub Actions"
|
|
1059
|
+
},
|
|
1060
|
+
label: {
|
|
1061
|
+
[e.EN_US]: ""
|
|
1062
|
+
},
|
|
1063
|
+
definition: {
|
|
1064
|
+
[e.EN_US]: ""
|
|
1065
|
+
},
|
|
1066
|
+
type: [],
|
|
1067
|
+
tags: []
|
|
1068
|
+
}, Je = {
|
|
1069
|
+
id: "gitlab",
|
|
1070
|
+
name: {
|
|
1071
|
+
[e.EN_US]: "GitLab"
|
|
1072
|
+
},
|
|
1073
|
+
label: {
|
|
1074
|
+
[e.EN_US]: ""
|
|
1075
|
+
},
|
|
1076
|
+
definition: {
|
|
1077
|
+
[e.EN_US]: ""
|
|
1078
|
+
},
|
|
1079
|
+
type: [],
|
|
1080
|
+
tags: []
|
|
1081
|
+
}, We = {
|
|
1082
|
+
id: "gitlab_ci",
|
|
1083
|
+
name: {
|
|
1084
|
+
[e.EN_US]: "GitLab CI"
|
|
1085
|
+
},
|
|
1086
|
+
label: {
|
|
1087
|
+
[e.EN_US]: ""
|
|
1088
|
+
},
|
|
1089
|
+
definition: {
|
|
1090
|
+
[e.EN_US]: ""
|
|
1091
|
+
},
|
|
1092
|
+
type: [],
|
|
1093
|
+
tags: []
|
|
1094
|
+
}, qe = {
|
|
1095
|
+
id: "golang",
|
|
1096
|
+
name: {
|
|
1097
|
+
[e.EN_US]: "Go"
|
|
1098
|
+
},
|
|
1099
|
+
label: {
|
|
1100
|
+
[e.EN_US]: ""
|
|
1101
|
+
},
|
|
1102
|
+
definition: {
|
|
1103
|
+
[e.EN_US]: ""
|
|
1104
|
+
},
|
|
1105
|
+
type: [],
|
|
1106
|
+
tags: []
|
|
1107
|
+
}, He = {
|
|
1108
|
+
id: "google_analytics",
|
|
1109
|
+
name: {
|
|
1110
|
+
[e.EN_US]: "Google Analytics"
|
|
1111
|
+
},
|
|
1112
|
+
label: {
|
|
1113
|
+
[e.EN_US]: ""
|
|
1114
|
+
},
|
|
1115
|
+
definition: {
|
|
1116
|
+
[e.EN_US]: ""
|
|
1117
|
+
},
|
|
1118
|
+
type: [],
|
|
1119
|
+
tags: []
|
|
1120
|
+
}, Ke = {
|
|
1121
|
+
id: "google_app_engine",
|
|
1122
|
+
name: {
|
|
1123
|
+
[e.EN_US]: "Google App Engine"
|
|
1124
|
+
},
|
|
1125
|
+
label: {
|
|
1126
|
+
[e.EN_US]: ""
|
|
1127
|
+
},
|
|
1128
|
+
definition: {
|
|
1129
|
+
[e.EN_US]: ""
|
|
1130
|
+
},
|
|
1131
|
+
type: [],
|
|
1132
|
+
tags: []
|
|
1133
|
+
}, Ie = {
|
|
1134
|
+
id: "google_business",
|
|
1135
|
+
name: {
|
|
1136
|
+
[e.EN_US]: "Google Business"
|
|
1137
|
+
},
|
|
1138
|
+
label: {
|
|
1139
|
+
[e.EN_US]: ""
|
|
1140
|
+
},
|
|
1141
|
+
definition: {
|
|
1142
|
+
[e.EN_US]: ""
|
|
1143
|
+
},
|
|
1144
|
+
type: [],
|
|
1145
|
+
tags: []
|
|
1146
|
+
}, Qe = {
|
|
1147
|
+
id: "google_maps_api",
|
|
1148
|
+
name: {
|
|
1149
|
+
[e.EN_US]: "Google Maps API"
|
|
1150
|
+
},
|
|
1151
|
+
label: {
|
|
1152
|
+
[e.EN_US]: ""
|
|
1153
|
+
},
|
|
1154
|
+
definition: {
|
|
1155
|
+
[e.EN_US]: ""
|
|
1156
|
+
},
|
|
1157
|
+
type: [],
|
|
1158
|
+
tags: []
|
|
1159
|
+
}, Ve = {
|
|
1160
|
+
id: "graphql",
|
|
1161
|
+
name: {
|
|
1162
|
+
[e.EN_US]: "GraphQL"
|
|
1163
|
+
},
|
|
1164
|
+
label: {
|
|
1165
|
+
[e.EN_US]: ""
|
|
1166
|
+
},
|
|
1167
|
+
definition: {
|
|
1168
|
+
[e.EN_US]: ""
|
|
1169
|
+
},
|
|
1170
|
+
type: [],
|
|
1171
|
+
tags: []
|
|
1172
|
+
}, Ye = {
|
|
1173
|
+
id: "grunt",
|
|
1174
|
+
name: {
|
|
1175
|
+
[e.EN_US]: "Grunt"
|
|
1176
|
+
},
|
|
1177
|
+
label: {
|
|
1178
|
+
[e.EN_US]: ""
|
|
1179
|
+
},
|
|
1180
|
+
definition: {
|
|
1181
|
+
[e.EN_US]: ""
|
|
1182
|
+
},
|
|
1183
|
+
type: [],
|
|
1184
|
+
tags: []
|
|
1185
|
+
}, Ze = {
|
|
1186
|
+
id: "gulp",
|
|
1187
|
+
name: {
|
|
1188
|
+
[e.EN_US]: "Gulp"
|
|
1189
|
+
},
|
|
1190
|
+
label: {
|
|
1191
|
+
[e.EN_US]: ""
|
|
1192
|
+
},
|
|
1193
|
+
definition: {
|
|
1194
|
+
[e.EN_US]: ""
|
|
1195
|
+
},
|
|
1196
|
+
type: [],
|
|
1197
|
+
tags: []
|
|
1198
|
+
}, Xe = {
|
|
1199
|
+
id: "handlebars",
|
|
1200
|
+
name: {
|
|
1201
|
+
[e.EN_US]: "Handlebars"
|
|
1202
|
+
},
|
|
1203
|
+
label: {
|
|
1204
|
+
[e.EN_US]: ""
|
|
1205
|
+
},
|
|
1206
|
+
definition: {
|
|
1207
|
+
[e.EN_US]: ""
|
|
1208
|
+
},
|
|
1209
|
+
type: [],
|
|
1210
|
+
tags: []
|
|
1211
|
+
}, $e = {
|
|
1212
|
+
id: "handsontable",
|
|
1213
|
+
name: {
|
|
1214
|
+
[e.EN_US]: "Handsontable"
|
|
1215
|
+
},
|
|
1216
|
+
label: {
|
|
1217
|
+
[e.EN_US]: ""
|
|
1218
|
+
},
|
|
1219
|
+
definition: {
|
|
1220
|
+
[e.EN_US]: ""
|
|
1221
|
+
},
|
|
1222
|
+
type: [],
|
|
1223
|
+
tags: []
|
|
1224
|
+
}, ei = {
|
|
1225
|
+
id: "hetzner",
|
|
1226
|
+
name: {
|
|
1227
|
+
[e.EN_US]: "Hetzner"
|
|
1228
|
+
},
|
|
1229
|
+
label: {
|
|
1230
|
+
[e.EN_US]: ""
|
|
1231
|
+
},
|
|
1232
|
+
definition: {
|
|
1233
|
+
[e.EN_US]: ""
|
|
1234
|
+
},
|
|
1235
|
+
type: [],
|
|
1236
|
+
tags: []
|
|
1237
|
+
}, ii = {
|
|
1238
|
+
id: "hl7",
|
|
1239
|
+
name: {
|
|
1240
|
+
[e.EN_US]: "HL7"
|
|
1241
|
+
},
|
|
1242
|
+
label: {
|
|
1243
|
+
[e.EN_US]: ""
|
|
1244
|
+
},
|
|
1245
|
+
definition: {
|
|
1246
|
+
[e.EN_US]: ""
|
|
1247
|
+
},
|
|
1248
|
+
type: [],
|
|
1249
|
+
tags: []
|
|
1250
|
+
}, ti = {
|
|
1251
|
+
id: "html",
|
|
1252
|
+
name: {
|
|
1253
|
+
[e.EN_US]: "HTML"
|
|
1254
|
+
},
|
|
1255
|
+
label: {
|
|
1256
|
+
[e.EN_US]: ""
|
|
1257
|
+
},
|
|
1258
|
+
definition: {
|
|
1259
|
+
[e.EN_US]: ""
|
|
1260
|
+
},
|
|
1261
|
+
type: [],
|
|
1262
|
+
tags: []
|
|
1263
|
+
}, ni = {
|
|
1264
|
+
id: "htmx",
|
|
1265
|
+
name: {
|
|
1266
|
+
[e.EN_US]: "HTMX"
|
|
1267
|
+
},
|
|
1268
|
+
label: {
|
|
1269
|
+
[e.EN_US]: ""
|
|
1270
|
+
},
|
|
1271
|
+
definition: {
|
|
1272
|
+
[e.EN_US]: ""
|
|
1273
|
+
},
|
|
1274
|
+
type: [],
|
|
1275
|
+
tags: []
|
|
1276
|
+
}, ai = {
|
|
1277
|
+
id: "i18n",
|
|
1278
|
+
name: {
|
|
1279
|
+
[e.EN_US]: "i18n"
|
|
1280
|
+
},
|
|
1281
|
+
label: {
|
|
1282
|
+
[e.EN_US]: ""
|
|
1283
|
+
},
|
|
1284
|
+
definition: {
|
|
1285
|
+
[e.EN_US]: ""
|
|
1286
|
+
},
|
|
1287
|
+
type: [],
|
|
1288
|
+
tags: []
|
|
1289
|
+
}, si = {
|
|
1290
|
+
id: "ionic",
|
|
1291
|
+
name: {
|
|
1292
|
+
[e.EN_US]: "Ionic Framework"
|
|
1293
|
+
},
|
|
1294
|
+
label: {
|
|
1295
|
+
[e.EN_US]: ""
|
|
1296
|
+
},
|
|
1297
|
+
definition: {
|
|
1298
|
+
[e.EN_US]: ""
|
|
1299
|
+
},
|
|
1300
|
+
type: [],
|
|
1301
|
+
tags: []
|
|
1302
|
+
}, oi = {
|
|
1303
|
+
id: "jasmine",
|
|
1304
|
+
name: {
|
|
1305
|
+
[e.EN_US]: "Jasmine"
|
|
1306
|
+
},
|
|
1307
|
+
label: {
|
|
1308
|
+
[e.EN_US]: ""
|
|
1309
|
+
},
|
|
1310
|
+
definition: {
|
|
1311
|
+
[e.EN_US]: ""
|
|
1312
|
+
},
|
|
1313
|
+
type: [],
|
|
1314
|
+
tags: []
|
|
1315
|
+
}, _i = {
|
|
1316
|
+
id: "javascript",
|
|
1317
|
+
name: {
|
|
1318
|
+
[e.EN_US]: "JavaScript"
|
|
1319
|
+
},
|
|
1320
|
+
label: {
|
|
1321
|
+
[e.EN_US]: "High-Level Programming Language",
|
|
1322
|
+
[e.DE_DE]: "Hochsprache"
|
|
1323
|
+
},
|
|
1324
|
+
definition: {
|
|
1325
|
+
[e.EN_US]: ""
|
|
1326
|
+
},
|
|
1327
|
+
type: [N.language],
|
|
1328
|
+
tags: [E.frontend, E.backend, E.open_source],
|
|
1329
|
+
links: {
|
|
1330
|
+
website: "https://en.wikipedia.org/wiki/JavaScript"
|
|
1331
|
+
}
|
|
1332
|
+
}, di = {
|
|
1333
|
+
id: "jenkins",
|
|
1334
|
+
name: {
|
|
1335
|
+
[e.EN_US]: "Jenkins"
|
|
1336
|
+
},
|
|
1337
|
+
label: {
|
|
1338
|
+
[e.EN_US]: ""
|
|
1339
|
+
},
|
|
1340
|
+
definition: {
|
|
1341
|
+
[e.EN_US]: ""
|
|
1342
|
+
},
|
|
1343
|
+
type: [],
|
|
1344
|
+
tags: []
|
|
1345
|
+
}, Ei = {
|
|
1346
|
+
id: "jest",
|
|
1347
|
+
name: {
|
|
1348
|
+
[e.EN_US]: "Jest"
|
|
1349
|
+
},
|
|
1350
|
+
label: {
|
|
1351
|
+
[e.EN_US]: ""
|
|
1352
|
+
},
|
|
1353
|
+
definition: {
|
|
1354
|
+
[e.EN_US]: ""
|
|
1355
|
+
},
|
|
1356
|
+
type: [],
|
|
1357
|
+
tags: []
|
|
1358
|
+
}, Si = {
|
|
1359
|
+
id: "jira",
|
|
1360
|
+
name: {
|
|
1361
|
+
[e.EN_US]: "Jira"
|
|
1362
|
+
},
|
|
1363
|
+
label: {
|
|
1364
|
+
[e.EN_US]: ""
|
|
1365
|
+
},
|
|
1366
|
+
definition: {
|
|
1367
|
+
[e.EN_US]: ""
|
|
1368
|
+
},
|
|
1369
|
+
type: [],
|
|
1370
|
+
tags: []
|
|
1371
|
+
}, li = {
|
|
1372
|
+
id: "jquery",
|
|
1373
|
+
name: {
|
|
1374
|
+
[e.EN_US]: "jQuery"
|
|
1375
|
+
},
|
|
1376
|
+
label: {
|
|
1377
|
+
[e.EN_US]: ""
|
|
1378
|
+
},
|
|
1379
|
+
definition: {
|
|
1380
|
+
[e.EN_US]: ""
|
|
1381
|
+
},
|
|
1382
|
+
type: [],
|
|
1383
|
+
tags: []
|
|
1384
|
+
}, Ni = {
|
|
1385
|
+
id: "js",
|
|
1386
|
+
name: {
|
|
1387
|
+
[e.EN_US]: "JavaScript"
|
|
1388
|
+
},
|
|
1389
|
+
label: {
|
|
1390
|
+
[e.EN_US]: ""
|
|
1391
|
+
},
|
|
1392
|
+
definition: {
|
|
1393
|
+
[e.EN_US]: ""
|
|
1394
|
+
},
|
|
1395
|
+
type: [],
|
|
1396
|
+
tags: []
|
|
1397
|
+
}, Ui = {
|
|
1398
|
+
id: "kanban",
|
|
1399
|
+
name: {
|
|
1400
|
+
[e.EN_US]: "Kanban"
|
|
1401
|
+
},
|
|
1402
|
+
label: {
|
|
1403
|
+
[e.EN_US]: ""
|
|
1404
|
+
},
|
|
1405
|
+
definition: {
|
|
1406
|
+
[e.EN_US]: ""
|
|
1407
|
+
},
|
|
1408
|
+
type: [],
|
|
1409
|
+
tags: []
|
|
1410
|
+
}, ci = {
|
|
1411
|
+
id: "karma",
|
|
1412
|
+
name: {
|
|
1413
|
+
[e.EN_US]: "Karma"
|
|
1414
|
+
},
|
|
1415
|
+
label: {
|
|
1416
|
+
[e.EN_US]: ""
|
|
1417
|
+
},
|
|
1418
|
+
definition: {
|
|
1419
|
+
[e.EN_US]: ""
|
|
1420
|
+
},
|
|
1421
|
+
type: [],
|
|
1422
|
+
tags: []
|
|
1423
|
+
}, ri = {
|
|
1424
|
+
id: "kubernetes",
|
|
1425
|
+
name: {
|
|
1426
|
+
[e.EN_US]: "Kubernetes"
|
|
1427
|
+
},
|
|
1428
|
+
label: {
|
|
1429
|
+
[e.EN_US]: ""
|
|
1430
|
+
},
|
|
1431
|
+
definition: {
|
|
1432
|
+
[e.EN_US]: ""
|
|
1433
|
+
},
|
|
1434
|
+
type: [],
|
|
1435
|
+
tags: []
|
|
1436
|
+
}, pi = {
|
|
1437
|
+
id: "laravel",
|
|
1438
|
+
name: {
|
|
1439
|
+
[e.EN_US]: "Laravel"
|
|
1440
|
+
},
|
|
1441
|
+
label: {
|
|
1442
|
+
[e.EN_US]: ""
|
|
1443
|
+
},
|
|
1444
|
+
definition: {
|
|
1445
|
+
[e.EN_US]: ""
|
|
1446
|
+
},
|
|
1447
|
+
type: [],
|
|
1448
|
+
tags: []
|
|
1449
|
+
}, mi = {
|
|
1450
|
+
id: "legacy_migration",
|
|
1451
|
+
name: {
|
|
1452
|
+
[e.EN_US]: "Legacy Migration"
|
|
1453
|
+
},
|
|
1454
|
+
label: {
|
|
1455
|
+
[e.EN_US]: ""
|
|
1456
|
+
},
|
|
1457
|
+
definition: {
|
|
1458
|
+
[e.EN_US]: ""
|
|
1459
|
+
},
|
|
1460
|
+
type: [],
|
|
1461
|
+
tags: []
|
|
1462
|
+
}, gi = {
|
|
1463
|
+
id: "lexical",
|
|
1464
|
+
name: {
|
|
1465
|
+
[e.EN_US]: "Lexical"
|
|
1466
|
+
},
|
|
1467
|
+
label: {
|
|
1468
|
+
[e.EN_US]: ""
|
|
1469
|
+
},
|
|
1470
|
+
definition: {
|
|
1471
|
+
[e.EN_US]: ""
|
|
1472
|
+
},
|
|
1473
|
+
type: [],
|
|
1474
|
+
tags: []
|
|
1475
|
+
}, bi = {
|
|
1476
|
+
id: "linux",
|
|
1477
|
+
name: {
|
|
1478
|
+
[e.EN_US]: "Linux"
|
|
1479
|
+
},
|
|
1480
|
+
label: {
|
|
1481
|
+
[e.EN_US]: ""
|
|
1482
|
+
},
|
|
1483
|
+
definition: {
|
|
1484
|
+
[e.EN_US]: ""
|
|
1485
|
+
},
|
|
1486
|
+
type: [],
|
|
1487
|
+
tags: []
|
|
1488
|
+
}, yi = {
|
|
1489
|
+
id: "mac_os",
|
|
1490
|
+
name: {
|
|
1491
|
+
[e.EN_US]: "Mac OS"
|
|
1492
|
+
},
|
|
1493
|
+
label: {
|
|
1494
|
+
[e.EN_US]: ""
|
|
1495
|
+
},
|
|
1496
|
+
definition: {
|
|
1497
|
+
[e.EN_US]: ""
|
|
1498
|
+
},
|
|
1499
|
+
type: [],
|
|
1500
|
+
tags: []
|
|
1501
|
+
}, fi = {
|
|
1502
|
+
id: "mail_blaze",
|
|
1503
|
+
name: {
|
|
1504
|
+
[e.EN_US]: "Mail Blaze"
|
|
1505
|
+
},
|
|
1506
|
+
label: {
|
|
1507
|
+
[e.EN_US]: ""
|
|
1508
|
+
},
|
|
1509
|
+
definition: {
|
|
1510
|
+
[e.EN_US]: ""
|
|
1511
|
+
},
|
|
1512
|
+
type: [],
|
|
1513
|
+
tags: []
|
|
1514
|
+
}, ui = {
|
|
1515
|
+
id: "mailchimp",
|
|
1516
|
+
name: {
|
|
1517
|
+
[e.EN_US]: "Mailchimp"
|
|
1518
|
+
},
|
|
1519
|
+
label: {
|
|
1520
|
+
[e.EN_US]: ""
|
|
1521
|
+
},
|
|
1522
|
+
definition: {
|
|
1523
|
+
[e.EN_US]: ""
|
|
1524
|
+
},
|
|
1525
|
+
type: [],
|
|
1526
|
+
tags: []
|
|
1527
|
+
}, ki = {
|
|
1528
|
+
id: "make",
|
|
1529
|
+
name: {
|
|
1530
|
+
[e.EN_US]: "Make"
|
|
1531
|
+
},
|
|
1532
|
+
label: {
|
|
1533
|
+
[e.EN_US]: ""
|
|
1534
|
+
},
|
|
1535
|
+
definition: {
|
|
1536
|
+
[e.EN_US]: ""
|
|
1537
|
+
},
|
|
1538
|
+
type: [],
|
|
1539
|
+
tags: []
|
|
1540
|
+
}, hi = {
|
|
1541
|
+
id: "marionette",
|
|
1542
|
+
name: {
|
|
1543
|
+
[e.EN_US]: "Marionette.js"
|
|
1544
|
+
},
|
|
1545
|
+
label: {
|
|
1546
|
+
[e.EN_US]: ""
|
|
1547
|
+
},
|
|
1548
|
+
definition: {
|
|
1549
|
+
[e.EN_US]: ""
|
|
1550
|
+
},
|
|
1551
|
+
type: [],
|
|
1552
|
+
tags: []
|
|
1553
|
+
}, Li = {
|
|
1554
|
+
id: "maven",
|
|
1555
|
+
name: {
|
|
1556
|
+
[e.EN_US]: "Maven"
|
|
1557
|
+
},
|
|
1558
|
+
label: {
|
|
1559
|
+
[e.EN_US]: ""
|
|
1560
|
+
},
|
|
1561
|
+
definition: {
|
|
1562
|
+
[e.EN_US]: ""
|
|
1563
|
+
},
|
|
1564
|
+
type: [],
|
|
1565
|
+
tags: []
|
|
1566
|
+
}, ji = {
|
|
1567
|
+
id: "meta_mask",
|
|
1568
|
+
name: {
|
|
1569
|
+
[e.EN_US]: "MetaMask"
|
|
1570
|
+
},
|
|
1571
|
+
label: {
|
|
1572
|
+
[e.EN_US]: ""
|
|
1573
|
+
},
|
|
1574
|
+
definition: {
|
|
1575
|
+
[e.EN_US]: ""
|
|
1576
|
+
},
|
|
1577
|
+
type: [],
|
|
1578
|
+
tags: []
|
|
1579
|
+
}, Ai = {
|
|
1580
|
+
id: "microsoft_sql_server",
|
|
1581
|
+
name: {
|
|
1582
|
+
[e.EN_US]: "Microsoft SQL Server"
|
|
1583
|
+
},
|
|
1584
|
+
label: {
|
|
1585
|
+
[e.EN_US]: ""
|
|
1586
|
+
},
|
|
1587
|
+
definition: {
|
|
1588
|
+
[e.EN_US]: ""
|
|
1589
|
+
},
|
|
1590
|
+
type: [],
|
|
1591
|
+
tags: []
|
|
1592
|
+
}, wi = {
|
|
1593
|
+
id: "mongo_db",
|
|
1594
|
+
name: {
|
|
1595
|
+
[e.EN_US]: "MongoDB"
|
|
1596
|
+
},
|
|
1597
|
+
label: {
|
|
1598
|
+
[e.EN_US]: ""
|
|
1599
|
+
},
|
|
1600
|
+
definition: {
|
|
1601
|
+
[e.EN_US]: ""
|
|
1602
|
+
},
|
|
1603
|
+
type: [],
|
|
1604
|
+
tags: []
|
|
1605
|
+
}, vi = {
|
|
1606
|
+
id: "mui",
|
|
1607
|
+
name: {
|
|
1608
|
+
[e.EN_US]: "Material UI"
|
|
1609
|
+
},
|
|
1610
|
+
label: {
|
|
1611
|
+
[e.EN_US]: ""
|
|
1612
|
+
},
|
|
1613
|
+
definition: {
|
|
1614
|
+
[e.EN_US]: ""
|
|
1615
|
+
},
|
|
1616
|
+
type: [],
|
|
1617
|
+
tags: []
|
|
1618
|
+
}, Ci = {
|
|
1619
|
+
id: "mysql",
|
|
1620
|
+
name: {
|
|
1621
|
+
[e.EN_US]: "MySQL"
|
|
1622
|
+
},
|
|
1623
|
+
label: {
|
|
1624
|
+
[e.EN_US]: ""
|
|
1625
|
+
},
|
|
1626
|
+
definition: {
|
|
1627
|
+
[e.EN_US]: ""
|
|
1628
|
+
},
|
|
1629
|
+
type: [],
|
|
1630
|
+
tags: []
|
|
1631
|
+
}, Di = {
|
|
1632
|
+
id: "navicat",
|
|
1633
|
+
name: {
|
|
1634
|
+
[e.EN_US]: "Navicat"
|
|
1635
|
+
},
|
|
1636
|
+
label: {
|
|
1637
|
+
[e.EN_US]: ""
|
|
1638
|
+
},
|
|
1639
|
+
definition: {
|
|
1640
|
+
[e.EN_US]: ""
|
|
1641
|
+
},
|
|
1642
|
+
type: [],
|
|
1643
|
+
tags: []
|
|
1644
|
+
}, Ti = {
|
|
1645
|
+
id: "nest_js",
|
|
1646
|
+
name: {
|
|
1647
|
+
[e.EN_US]: "NestJS"
|
|
1648
|
+
},
|
|
1649
|
+
label: {
|
|
1650
|
+
[e.EN_US]: ""
|
|
1651
|
+
},
|
|
1652
|
+
definition: {
|
|
1653
|
+
[e.EN_US]: ""
|
|
1654
|
+
},
|
|
1655
|
+
type: [],
|
|
1656
|
+
tags: []
|
|
1657
|
+
}, Bi = {
|
|
1658
|
+
id: "netbeans",
|
|
1659
|
+
name: {
|
|
1660
|
+
[e.EN_US]: "NetBeans"
|
|
1661
|
+
},
|
|
1662
|
+
label: {
|
|
1663
|
+
[e.EN_US]: ""
|
|
1664
|
+
},
|
|
1665
|
+
definition: {
|
|
1666
|
+
[e.EN_US]: ""
|
|
1667
|
+
},
|
|
1668
|
+
type: [],
|
|
1669
|
+
tags: []
|
|
1670
|
+
}, xi = {
|
|
1671
|
+
id: "netlify",
|
|
1672
|
+
name: {
|
|
1673
|
+
[e.EN_US]: "Netlify"
|
|
1674
|
+
},
|
|
1675
|
+
label: {
|
|
1676
|
+
[e.EN_US]: ""
|
|
1677
|
+
},
|
|
1678
|
+
definition: {
|
|
1679
|
+
[e.EN_US]: ""
|
|
1680
|
+
},
|
|
1681
|
+
type: [],
|
|
1682
|
+
tags: []
|
|
1683
|
+
}, zi = {
|
|
1684
|
+
id: "new_relic",
|
|
1685
|
+
name: {
|
|
1686
|
+
[e.EN_US]: "New Relic"
|
|
1687
|
+
},
|
|
1688
|
+
label: {
|
|
1689
|
+
[e.EN_US]: ""
|
|
1690
|
+
},
|
|
1691
|
+
definition: {
|
|
1692
|
+
[e.EN_US]: ""
|
|
1693
|
+
},
|
|
1694
|
+
type: [],
|
|
1695
|
+
tags: []
|
|
1696
|
+
}, Fi = {
|
|
1697
|
+
id: "next_js",
|
|
1698
|
+
name: {
|
|
1699
|
+
[e.EN_US]: "Next.js"
|
|
1700
|
+
},
|
|
1701
|
+
label: {
|
|
1702
|
+
[e.EN_US]: ""
|
|
1703
|
+
},
|
|
1704
|
+
definition: {
|
|
1705
|
+
[e.EN_US]: ""
|
|
1706
|
+
},
|
|
1707
|
+
type: [],
|
|
1708
|
+
tags: []
|
|
1709
|
+
}, Gi = {
|
|
1710
|
+
id: "nexudus",
|
|
1711
|
+
name: {
|
|
1712
|
+
[e.EN_US]: "Nexudus"
|
|
1713
|
+
},
|
|
1714
|
+
label: {
|
|
1715
|
+
[e.EN_US]: ""
|
|
1716
|
+
},
|
|
1717
|
+
definition: {
|
|
1718
|
+
[e.EN_US]: ""
|
|
1719
|
+
},
|
|
1720
|
+
type: [],
|
|
1721
|
+
tags: []
|
|
1722
|
+
}, Pi = {
|
|
1723
|
+
id: "nft",
|
|
1724
|
+
name: {
|
|
1725
|
+
[e.EN_US]: "NFT"
|
|
1726
|
+
},
|
|
1727
|
+
label: {
|
|
1728
|
+
[e.EN_US]: ""
|
|
1729
|
+
},
|
|
1730
|
+
definition: {
|
|
1731
|
+
[e.EN_US]: ""
|
|
1732
|
+
},
|
|
1733
|
+
type: [],
|
|
1734
|
+
tags: []
|
|
1735
|
+
}, Oi = {
|
|
1736
|
+
id: "nginx",
|
|
1737
|
+
name: {
|
|
1738
|
+
[e.EN_US]: "Nginx"
|
|
1739
|
+
},
|
|
1740
|
+
label: {
|
|
1741
|
+
[e.EN_US]: ""
|
|
1742
|
+
},
|
|
1743
|
+
definition: {
|
|
1744
|
+
[e.EN_US]: ""
|
|
1745
|
+
},
|
|
1746
|
+
type: [],
|
|
1747
|
+
tags: []
|
|
1748
|
+
}, Mi = {
|
|
1749
|
+
id: "nightsbridge",
|
|
1750
|
+
name: {
|
|
1751
|
+
[e.EN_US]: "Nightsbridge"
|
|
1752
|
+
},
|
|
1753
|
+
label: {
|
|
1754
|
+
[e.EN_US]: ""
|
|
1755
|
+
},
|
|
1756
|
+
definition: {
|
|
1757
|
+
[e.EN_US]: ""
|
|
1758
|
+
},
|
|
1759
|
+
type: [],
|
|
1760
|
+
tags: []
|
|
1761
|
+
}, Ri = {
|
|
1762
|
+
id: "node",
|
|
1763
|
+
name: {
|
|
1764
|
+
[e.EN_US]: "Node.js"
|
|
1765
|
+
},
|
|
1766
|
+
label: {
|
|
1767
|
+
[e.EN_US]: ""
|
|
1768
|
+
},
|
|
1769
|
+
definition: {
|
|
1770
|
+
[e.EN_US]: ""
|
|
1771
|
+
},
|
|
1772
|
+
type: [],
|
|
1773
|
+
tags: []
|
|
1774
|
+
}, Ji = {
|
|
1775
|
+
id: "node_js",
|
|
1776
|
+
name: {
|
|
1777
|
+
[e.EN_US]: "Node.js"
|
|
1778
|
+
},
|
|
1779
|
+
label: {
|
|
1780
|
+
[e.EN_US]: "JavaScript Runtime",
|
|
1781
|
+
[e.DE_DE]: "JavaScript-Laufzeit"
|
|
1782
|
+
},
|
|
1783
|
+
definition: {
|
|
1784
|
+
[e.EN_US]: "Node.js is a free, open-source, cross-platform JavaScript runtime environment that lets developers create servers, web apps, command line tools and scripts.",
|
|
1785
|
+
[e.DE_DE]: "Node.js ist eine kostenlose, Open-Source, plattformübergreifende JavaScript-Laufzeitumgebung, die es Entwicklern ermöglicht, Server, Webanwendungen, Befehlszeilentools und Skripte zu erstellen."
|
|
1786
|
+
},
|
|
1787
|
+
type: [N.runtime_environment],
|
|
1788
|
+
tags: [E.backend],
|
|
1789
|
+
links: {
|
|
1790
|
+
website: "https://nodejs.org"
|
|
1791
|
+
}
|
|
1792
|
+
}, Wi = {
|
|
1793
|
+
id: "node_mailer",
|
|
1794
|
+
name: {
|
|
1795
|
+
[e.EN_US]: "Nodemailer"
|
|
1796
|
+
},
|
|
1797
|
+
label: {
|
|
1798
|
+
[e.EN_US]: ""
|
|
1799
|
+
},
|
|
1800
|
+
definition: {
|
|
1801
|
+
[e.EN_US]: ""
|
|
1802
|
+
},
|
|
1803
|
+
type: [],
|
|
1804
|
+
tags: []
|
|
1805
|
+
}, qi = {
|
|
1806
|
+
id: "nosql",
|
|
1807
|
+
name: {
|
|
1808
|
+
[e.EN_US]: "NoSQL"
|
|
1809
|
+
},
|
|
1810
|
+
label: {
|
|
1811
|
+
[e.EN_US]: ""
|
|
1812
|
+
},
|
|
1813
|
+
definition: {
|
|
1814
|
+
[e.EN_US]: ""
|
|
1815
|
+
},
|
|
1816
|
+
type: [],
|
|
1817
|
+
tags: []
|
|
1818
|
+
}, Hi = {
|
|
1819
|
+
id: "nx",
|
|
1820
|
+
name: {
|
|
1821
|
+
[e.EN_US]: "Nx"
|
|
1822
|
+
},
|
|
1823
|
+
label: {
|
|
1824
|
+
[e.EN_US]: ""
|
|
1825
|
+
},
|
|
1826
|
+
definition: {
|
|
1827
|
+
[e.EN_US]: ""
|
|
1828
|
+
},
|
|
1829
|
+
type: [],
|
|
1830
|
+
tags: []
|
|
1831
|
+
}, Ki = {
|
|
1832
|
+
id: "okta",
|
|
1833
|
+
name: {
|
|
1834
|
+
[e.EN_US]: "Okta"
|
|
1835
|
+
},
|
|
1836
|
+
label: {
|
|
1837
|
+
[e.EN_US]: ""
|
|
1838
|
+
},
|
|
1839
|
+
definition: {
|
|
1840
|
+
[e.EN_US]: ""
|
|
1841
|
+
},
|
|
1842
|
+
type: [],
|
|
1843
|
+
tags: []
|
|
1844
|
+
}, Ii = {
|
|
1845
|
+
id: "open_ai",
|
|
1846
|
+
name: {
|
|
1847
|
+
[e.EN_US]: "OpenAI"
|
|
1848
|
+
},
|
|
1849
|
+
label: {
|
|
1850
|
+
[e.EN_US]: ""
|
|
1851
|
+
},
|
|
1852
|
+
definition: {
|
|
1853
|
+
[e.EN_US]: ""
|
|
1854
|
+
},
|
|
1855
|
+
type: [],
|
|
1856
|
+
tags: []
|
|
1857
|
+
}, Qi = {
|
|
1858
|
+
id: "optimizely",
|
|
1859
|
+
name: {
|
|
1860
|
+
[e.EN_US]: "Optimizely"
|
|
1861
|
+
},
|
|
1862
|
+
label: {
|
|
1863
|
+
[e.EN_US]: ""
|
|
1864
|
+
},
|
|
1865
|
+
definition: {
|
|
1866
|
+
[e.EN_US]: ""
|
|
1867
|
+
},
|
|
1868
|
+
type: [],
|
|
1869
|
+
tags: []
|
|
1870
|
+
}, Vi = {
|
|
1871
|
+
id: "pathlogix",
|
|
1872
|
+
name: {
|
|
1873
|
+
[e.EN_US]: "Pathlogix"
|
|
1874
|
+
},
|
|
1875
|
+
label: {
|
|
1876
|
+
[e.EN_US]: ""
|
|
1877
|
+
},
|
|
1878
|
+
definition: {
|
|
1879
|
+
[e.EN_US]: ""
|
|
1880
|
+
},
|
|
1881
|
+
type: [],
|
|
1882
|
+
tags: []
|
|
1883
|
+
}, Yi = {
|
|
1884
|
+
id: "photoshop",
|
|
1885
|
+
name: {
|
|
1886
|
+
[e.EN_US]: "Photoshop"
|
|
1887
|
+
},
|
|
1888
|
+
label: {
|
|
1889
|
+
[e.EN_US]: ""
|
|
1890
|
+
},
|
|
1891
|
+
definition: {
|
|
1892
|
+
[e.EN_US]: ""
|
|
1893
|
+
},
|
|
1894
|
+
type: [],
|
|
1895
|
+
tags: []
|
|
1896
|
+
}, Zi = {
|
|
1897
|
+
id: "php",
|
|
1898
|
+
name: {
|
|
1899
|
+
[e.EN_US]: "PHP"
|
|
1900
|
+
},
|
|
1901
|
+
label: {
|
|
1902
|
+
[e.EN_US]: ""
|
|
1903
|
+
},
|
|
1904
|
+
definition: {
|
|
1905
|
+
[e.EN_US]: ""
|
|
1906
|
+
},
|
|
1907
|
+
type: [],
|
|
1908
|
+
tags: []
|
|
1909
|
+
}, Xi = {
|
|
1910
|
+
id: "pnpm",
|
|
1911
|
+
name: {
|
|
1912
|
+
[e.EN_US]: "pnpm"
|
|
1913
|
+
},
|
|
1914
|
+
label: {
|
|
1915
|
+
[e.EN_US]: ""
|
|
1916
|
+
},
|
|
1917
|
+
definition: {
|
|
1918
|
+
[e.EN_US]: ""
|
|
1919
|
+
},
|
|
1920
|
+
type: [],
|
|
1921
|
+
tags: []
|
|
1922
|
+
}, $i = {
|
|
1923
|
+
id: "polyglot_js",
|
|
1924
|
+
name: {
|
|
1925
|
+
[e.EN_US]: "Polyglot.js"
|
|
1926
|
+
},
|
|
1927
|
+
label: {
|
|
1928
|
+
[e.EN_US]: ""
|
|
1929
|
+
},
|
|
1930
|
+
definition: {
|
|
1931
|
+
[e.EN_US]: ""
|
|
1932
|
+
},
|
|
1933
|
+
type: [],
|
|
1934
|
+
tags: []
|
|
1935
|
+
}, et = {
|
|
1936
|
+
id: "postgres",
|
|
1937
|
+
name: {
|
|
1938
|
+
[e.EN_US]: "PostgreSQL"
|
|
1939
|
+
},
|
|
1940
|
+
label: {
|
|
1941
|
+
[e.EN_US]: ""
|
|
1942
|
+
},
|
|
1943
|
+
definition: {
|
|
1944
|
+
[e.EN_US]: ""
|
|
1945
|
+
},
|
|
1946
|
+
type: [],
|
|
1947
|
+
tags: []
|
|
1948
|
+
}, it = {
|
|
1949
|
+
id: "posthog",
|
|
1950
|
+
name: {
|
|
1951
|
+
[e.EN_US]: "PostHog"
|
|
1952
|
+
},
|
|
1953
|
+
label: {
|
|
1954
|
+
[e.EN_US]: ""
|
|
1955
|
+
},
|
|
1956
|
+
definition: {
|
|
1957
|
+
[e.EN_US]: ""
|
|
1958
|
+
},
|
|
1959
|
+
type: [],
|
|
1960
|
+
tags: []
|
|
1961
|
+
}, tt = {
|
|
1962
|
+
id: "prettier",
|
|
1963
|
+
name: {
|
|
1964
|
+
[e.EN_US]: "Prettier"
|
|
1965
|
+
},
|
|
1966
|
+
label: {
|
|
1967
|
+
[e.EN_US]: ""
|
|
1968
|
+
},
|
|
1969
|
+
definition: {
|
|
1970
|
+
[e.EN_US]: ""
|
|
1971
|
+
},
|
|
1972
|
+
type: [],
|
|
1973
|
+
tags: []
|
|
1974
|
+
}, nt = {
|
|
1975
|
+
id: "putty",
|
|
1976
|
+
name: {
|
|
1977
|
+
[e.EN_US]: "PuTTY"
|
|
1978
|
+
},
|
|
1979
|
+
label: {
|
|
1980
|
+
[e.EN_US]: ""
|
|
1981
|
+
},
|
|
1982
|
+
definition: {
|
|
1983
|
+
[e.EN_US]: ""
|
|
1984
|
+
},
|
|
1985
|
+
type: [],
|
|
1986
|
+
tags: []
|
|
1987
|
+
}, at = {
|
|
1988
|
+
id: "pwa",
|
|
1989
|
+
name: {
|
|
1990
|
+
[e.EN_US]: "Progressive Web App (PWA)"
|
|
1991
|
+
},
|
|
1992
|
+
label: {
|
|
1993
|
+
[e.EN_US]: ""
|
|
1994
|
+
},
|
|
1995
|
+
definition: {
|
|
1996
|
+
[e.EN_US]: ""
|
|
1997
|
+
},
|
|
1998
|
+
type: [],
|
|
1999
|
+
tags: []
|
|
2000
|
+
}, st = {
|
|
2001
|
+
id: "python",
|
|
2002
|
+
name: {
|
|
2003
|
+
[e.EN_US]: "Python"
|
|
2004
|
+
},
|
|
2005
|
+
label: {
|
|
2006
|
+
[e.EN_US]: ""
|
|
2007
|
+
},
|
|
2008
|
+
definition: {
|
|
2009
|
+
[e.EN_US]: ""
|
|
2010
|
+
},
|
|
2011
|
+
type: [],
|
|
2012
|
+
tags: []
|
|
2013
|
+
}, ot = {
|
|
2014
|
+
id: "quickbooks",
|
|
2015
|
+
name: {
|
|
2016
|
+
[e.EN_US]: "QuickBooks"
|
|
2017
|
+
},
|
|
2018
|
+
label: {
|
|
2019
|
+
[e.EN_US]: ""
|
|
2020
|
+
},
|
|
2021
|
+
definition: {
|
|
2022
|
+
[e.EN_US]: ""
|
|
2023
|
+
},
|
|
2024
|
+
type: [],
|
|
2025
|
+
tags: []
|
|
2026
|
+
}, _t = {
|
|
2027
|
+
id: "react",
|
|
2028
|
+
name: {
|
|
2029
|
+
[e.EN_US]: "React"
|
|
2030
|
+
},
|
|
2031
|
+
label: {
|
|
2032
|
+
[e.EN_US]: "JavaScript Library",
|
|
2033
|
+
[e.DE_DE]: "JavaScript-Bibliothek"
|
|
2034
|
+
},
|
|
2035
|
+
definition: {
|
|
2036
|
+
[e.EN_US]: "A JavaScript library for building component-based user interfaces.",
|
|
2037
|
+
[e.DE_DE]: "Eine JavaScript-Bibliothek zum Erstellen komponentenbasierter Benutzeroberflächen."
|
|
2038
|
+
},
|
|
2039
|
+
type: [N.library],
|
|
2040
|
+
tags: [E.frontend, E.backend],
|
|
2041
|
+
links: {
|
|
2042
|
+
website: "https://react.dev"
|
|
2043
|
+
}
|
|
2044
|
+
}, dt = {
|
|
2045
|
+
id: "react_hook_form",
|
|
2046
|
+
name: {
|
|
2047
|
+
[e.EN_US]: "React Hook Form"
|
|
2048
|
+
},
|
|
2049
|
+
label: {
|
|
2050
|
+
[e.EN_US]: ""
|
|
2051
|
+
},
|
|
2052
|
+
definition: {
|
|
2053
|
+
[e.EN_US]: ""
|
|
2054
|
+
},
|
|
2055
|
+
type: [],
|
|
2056
|
+
tags: []
|
|
2057
|
+
}, Et = {
|
|
2058
|
+
id: "react_pdf",
|
|
2059
|
+
name: {
|
|
2060
|
+
[e.EN_US]: "React PDF"
|
|
2061
|
+
},
|
|
2062
|
+
label: {
|
|
2063
|
+
[e.EN_US]: ""
|
|
2064
|
+
},
|
|
2065
|
+
definition: {
|
|
2066
|
+
[e.EN_US]: ""
|
|
2067
|
+
},
|
|
2068
|
+
type: [],
|
|
2069
|
+
tags: []
|
|
2070
|
+
}, St = {
|
|
2071
|
+
id: "react_testing_library",
|
|
2072
|
+
name: {
|
|
2073
|
+
[e.EN_US]: "React Testing Library"
|
|
2074
|
+
},
|
|
2075
|
+
label: {
|
|
2076
|
+
[e.EN_US]: ""
|
|
2077
|
+
},
|
|
2078
|
+
definition: {
|
|
2079
|
+
[e.EN_US]: ""
|
|
2080
|
+
},
|
|
2081
|
+
type: [],
|
|
2082
|
+
tags: []
|
|
2083
|
+
}, lt = {
|
|
2084
|
+
id: "redux",
|
|
2085
|
+
name: {
|
|
2086
|
+
[e.EN_US]: "Redux"
|
|
2087
|
+
},
|
|
2088
|
+
label: {
|
|
2089
|
+
[e.EN_US]: ""
|
|
2090
|
+
},
|
|
2091
|
+
definition: {
|
|
2092
|
+
[e.EN_US]: ""
|
|
2093
|
+
},
|
|
2094
|
+
type: [],
|
|
2095
|
+
tags: []
|
|
2096
|
+
}, Nt = {
|
|
2097
|
+
id: "reflow_soldering",
|
|
2098
|
+
name: {
|
|
2099
|
+
[e.EN_US]: "Reflow Soldering"
|
|
2100
|
+
},
|
|
2101
|
+
label: {
|
|
2102
|
+
[e.EN_US]: ""
|
|
2103
|
+
},
|
|
2104
|
+
definition: {
|
|
2105
|
+
[e.EN_US]: ""
|
|
2106
|
+
},
|
|
2107
|
+
type: [],
|
|
2108
|
+
tags: []
|
|
2109
|
+
}, Ut = {
|
|
2110
|
+
id: "resend",
|
|
2111
|
+
name: {
|
|
2112
|
+
[e.EN_US]: "Resend"
|
|
2113
|
+
},
|
|
2114
|
+
label: {
|
|
2115
|
+
[e.EN_US]: ""
|
|
2116
|
+
},
|
|
2117
|
+
definition: {
|
|
2118
|
+
[e.EN_US]: ""
|
|
2119
|
+
},
|
|
2120
|
+
type: [],
|
|
2121
|
+
tags: []
|
|
2122
|
+
}, ct = {
|
|
2123
|
+
id: "rest_api",
|
|
2124
|
+
name: {
|
|
2125
|
+
[e.EN_US]: "REST API"
|
|
2126
|
+
},
|
|
2127
|
+
label: {
|
|
2128
|
+
[e.EN_US]: ""
|
|
2129
|
+
},
|
|
2130
|
+
definition: {
|
|
2131
|
+
[e.EN_US]: ""
|
|
2132
|
+
},
|
|
2133
|
+
type: [],
|
|
2134
|
+
tags: []
|
|
2135
|
+
}, rt = {
|
|
2136
|
+
id: "rsync",
|
|
2137
|
+
name: {
|
|
2138
|
+
[e.EN_US]: "rsync"
|
|
2139
|
+
},
|
|
2140
|
+
label: {
|
|
2141
|
+
[e.EN_US]: ""
|
|
2142
|
+
},
|
|
2143
|
+
definition: {
|
|
2144
|
+
[e.EN_US]: ""
|
|
2145
|
+
},
|
|
2146
|
+
type: [],
|
|
2147
|
+
tags: []
|
|
2148
|
+
}, pt = {
|
|
2149
|
+
id: "sanity",
|
|
2150
|
+
name: {
|
|
2151
|
+
[e.EN_US]: "Sanity CMS"
|
|
2152
|
+
},
|
|
2153
|
+
label: {
|
|
2154
|
+
[e.EN_US]: ""
|
|
2155
|
+
},
|
|
2156
|
+
definition: {
|
|
2157
|
+
[e.EN_US]: ""
|
|
2158
|
+
},
|
|
2159
|
+
type: [],
|
|
2160
|
+
tags: []
|
|
2161
|
+
}, mt = {
|
|
2162
|
+
id: "sass",
|
|
2163
|
+
name: {
|
|
2164
|
+
[e.EN_US]: "SASS"
|
|
2165
|
+
},
|
|
2166
|
+
label: {
|
|
2167
|
+
[e.EN_US]: ""
|
|
2168
|
+
},
|
|
2169
|
+
definition: {
|
|
2170
|
+
[e.EN_US]: ""
|
|
2171
|
+
},
|
|
2172
|
+
type: [],
|
|
2173
|
+
tags: []
|
|
2174
|
+
}, gt = {
|
|
2175
|
+
id: "scrum",
|
|
2176
|
+
name: {
|
|
2177
|
+
[e.EN_US]: "Scrum"
|
|
2178
|
+
},
|
|
2179
|
+
label: {
|
|
2180
|
+
[e.EN_US]: ""
|
|
2181
|
+
},
|
|
2182
|
+
definition: {
|
|
2183
|
+
[e.EN_US]: ""
|
|
2184
|
+
},
|
|
2185
|
+
type: [],
|
|
2186
|
+
tags: []
|
|
2187
|
+
}, bt = {
|
|
2188
|
+
id: "sendgrid",
|
|
2189
|
+
name: {
|
|
2190
|
+
[e.EN_US]: "SendGrid"
|
|
2191
|
+
},
|
|
2192
|
+
label: {
|
|
2193
|
+
[e.EN_US]: ""
|
|
2194
|
+
},
|
|
2195
|
+
definition: {
|
|
2196
|
+
[e.EN_US]: ""
|
|
2197
|
+
},
|
|
2198
|
+
type: [],
|
|
2199
|
+
tags: []
|
|
2200
|
+
}, yt = {
|
|
2201
|
+
id: "sentry",
|
|
2202
|
+
name: {
|
|
2203
|
+
[e.EN_US]: "Sentry"
|
|
2204
|
+
},
|
|
2205
|
+
label: {
|
|
2206
|
+
[e.EN_US]: ""
|
|
2207
|
+
},
|
|
2208
|
+
definition: {
|
|
2209
|
+
[e.EN_US]: ""
|
|
2210
|
+
},
|
|
2211
|
+
type: [],
|
|
2212
|
+
tags: []
|
|
2213
|
+
}, ft = {
|
|
2214
|
+
id: "service_workers",
|
|
2215
|
+
name: {
|
|
2216
|
+
[e.EN_US]: "Service Workers"
|
|
2217
|
+
},
|
|
2218
|
+
label: {
|
|
2219
|
+
[e.EN_US]: ""
|
|
2220
|
+
},
|
|
2221
|
+
definition: {
|
|
2222
|
+
[e.EN_US]: ""
|
|
2223
|
+
},
|
|
2224
|
+
type: [],
|
|
2225
|
+
tags: []
|
|
2226
|
+
}, ut = {
|
|
2227
|
+
id: "shadcn",
|
|
2228
|
+
name: {
|
|
2229
|
+
[e.EN_US]: "Shadcn"
|
|
2230
|
+
},
|
|
2231
|
+
label: {
|
|
2232
|
+
[e.EN_US]: ""
|
|
2233
|
+
},
|
|
2234
|
+
definition: {
|
|
2235
|
+
[e.EN_US]: ""
|
|
2236
|
+
},
|
|
2237
|
+
type: [],
|
|
2238
|
+
tags: []
|
|
2239
|
+
}, kt = {
|
|
2240
|
+
id: "smarty",
|
|
2241
|
+
name: {
|
|
2242
|
+
[e.EN_US]: "Smarty"
|
|
2243
|
+
},
|
|
2244
|
+
label: {
|
|
2245
|
+
[e.EN_US]: ""
|
|
2246
|
+
},
|
|
2247
|
+
definition: {
|
|
2248
|
+
[e.EN_US]: ""
|
|
2249
|
+
},
|
|
2250
|
+
type: [],
|
|
2251
|
+
tags: []
|
|
2252
|
+
}, ht = {
|
|
2253
|
+
id: "snyk",
|
|
2254
|
+
name: {
|
|
2255
|
+
[e.EN_US]: "Snyk"
|
|
2256
|
+
},
|
|
2257
|
+
label: {
|
|
2258
|
+
[e.EN_US]: ""
|
|
2259
|
+
},
|
|
2260
|
+
definition: {
|
|
2261
|
+
[e.EN_US]: ""
|
|
2262
|
+
},
|
|
2263
|
+
type: [],
|
|
2264
|
+
tags: []
|
|
2265
|
+
}, Lt = {
|
|
2266
|
+
id: "socket_io",
|
|
2267
|
+
name: {
|
|
2268
|
+
[e.EN_US]: "Socket.io"
|
|
2269
|
+
},
|
|
2270
|
+
label: {
|
|
2271
|
+
[e.EN_US]: ""
|
|
2272
|
+
},
|
|
2273
|
+
definition: {
|
|
2274
|
+
[e.EN_US]: ""
|
|
2275
|
+
},
|
|
2276
|
+
type: [],
|
|
2277
|
+
tags: []
|
|
2278
|
+
}, jt = {
|
|
2279
|
+
id: "splunk",
|
|
2280
|
+
name: {
|
|
2281
|
+
[e.EN_US]: "Splunk"
|
|
2282
|
+
},
|
|
2283
|
+
label: {
|
|
2284
|
+
[e.EN_US]: ""
|
|
2285
|
+
},
|
|
2286
|
+
definition: {
|
|
2287
|
+
[e.EN_US]: ""
|
|
2288
|
+
},
|
|
2289
|
+
type: [],
|
|
2290
|
+
tags: []
|
|
2291
|
+
}, At = {
|
|
2292
|
+
id: "sql",
|
|
2293
|
+
name: {
|
|
2294
|
+
[e.EN_US]: "SQL"
|
|
2295
|
+
},
|
|
2296
|
+
label: {
|
|
2297
|
+
[e.EN_US]: ""
|
|
2298
|
+
},
|
|
2299
|
+
definition: {
|
|
2300
|
+
[e.EN_US]: ""
|
|
2301
|
+
},
|
|
2302
|
+
type: [],
|
|
2303
|
+
tags: []
|
|
2304
|
+
}, wt = {
|
|
2305
|
+
id: "sql_lite",
|
|
2306
|
+
name: {
|
|
2307
|
+
[e.EN_US]: "SQLite"
|
|
2308
|
+
},
|
|
2309
|
+
label: {
|
|
2310
|
+
[e.EN_US]: ""
|
|
2311
|
+
},
|
|
2312
|
+
definition: {
|
|
2313
|
+
[e.EN_US]: ""
|
|
2314
|
+
},
|
|
2315
|
+
type: [],
|
|
2316
|
+
tags: []
|
|
2317
|
+
}, vt = {
|
|
2318
|
+
id: "ssh",
|
|
2319
|
+
name: {
|
|
2320
|
+
[e.EN_US]: "SSH"
|
|
2321
|
+
},
|
|
2322
|
+
label: {
|
|
2323
|
+
[e.EN_US]: ""
|
|
2324
|
+
},
|
|
2325
|
+
definition: {
|
|
2326
|
+
[e.EN_US]: ""
|
|
2327
|
+
},
|
|
2328
|
+
type: [],
|
|
2329
|
+
tags: []
|
|
2330
|
+
}, Ct = {
|
|
2331
|
+
id: "storybook",
|
|
2332
|
+
name: {
|
|
2333
|
+
[e.EN_US]: "Storybook"
|
|
2334
|
+
},
|
|
2335
|
+
label: {
|
|
2336
|
+
[e.EN_US]: ""
|
|
2337
|
+
},
|
|
2338
|
+
definition: {
|
|
2339
|
+
[e.EN_US]: ""
|
|
2340
|
+
},
|
|
2341
|
+
type: [],
|
|
2342
|
+
tags: []
|
|
2343
|
+
}, Dt = {
|
|
2344
|
+
id: "stripe",
|
|
2345
|
+
name: {
|
|
2346
|
+
[e.EN_US]: "Stripe"
|
|
2347
|
+
},
|
|
2348
|
+
label: {
|
|
2349
|
+
[e.EN_US]: ""
|
|
2350
|
+
},
|
|
2351
|
+
definition: {
|
|
2352
|
+
[e.EN_US]: ""
|
|
2353
|
+
},
|
|
2354
|
+
type: [],
|
|
2355
|
+
tags: []
|
|
2356
|
+
}, Tt = {
|
|
2357
|
+
id: "styled_components",
|
|
2358
|
+
name: {
|
|
2359
|
+
[e.EN_US]: "Styled Components"
|
|
2360
|
+
},
|
|
2361
|
+
label: {
|
|
2362
|
+
[e.EN_US]: ""
|
|
2363
|
+
},
|
|
2364
|
+
definition: {
|
|
2365
|
+
[e.EN_US]: ""
|
|
2366
|
+
},
|
|
2367
|
+
type: [],
|
|
2368
|
+
tags: []
|
|
2369
|
+
}, Bt = {
|
|
2370
|
+
id: "sublime_text",
|
|
2371
|
+
name: {
|
|
2372
|
+
[e.EN_US]: "Sublime Text"
|
|
2373
|
+
},
|
|
2374
|
+
label: {
|
|
2375
|
+
[e.EN_US]: ""
|
|
2376
|
+
},
|
|
2377
|
+
definition: {
|
|
2378
|
+
[e.EN_US]: ""
|
|
2379
|
+
},
|
|
2380
|
+
type: [],
|
|
2381
|
+
tags: []
|
|
2382
|
+
}, xt = {
|
|
2383
|
+
id: "supabase",
|
|
2384
|
+
name: {
|
|
2385
|
+
[e.EN_US]: "Supabase"
|
|
2386
|
+
},
|
|
2387
|
+
label: {
|
|
2388
|
+
[e.EN_US]: ""
|
|
2389
|
+
},
|
|
2390
|
+
definition: {
|
|
2391
|
+
[e.EN_US]: ""
|
|
2392
|
+
},
|
|
2393
|
+
type: [],
|
|
2394
|
+
tags: []
|
|
2395
|
+
}, zt = {
|
|
2396
|
+
id: "svn",
|
|
2397
|
+
name: {
|
|
2398
|
+
[e.EN_US]: "SVN"
|
|
2399
|
+
},
|
|
2400
|
+
label: {
|
|
2401
|
+
[e.EN_US]: ""
|
|
2402
|
+
},
|
|
2403
|
+
definition: {
|
|
2404
|
+
[e.EN_US]: ""
|
|
2405
|
+
},
|
|
2406
|
+
type: [],
|
|
2407
|
+
tags: []
|
|
2408
|
+
}, Ft = {
|
|
2409
|
+
id: "tailwind",
|
|
2410
|
+
name: {
|
|
2411
|
+
[e.EN_US]: "Tailwind CSS"
|
|
2412
|
+
},
|
|
2413
|
+
label: {
|
|
2414
|
+
[e.EN_US]: ""
|
|
2415
|
+
},
|
|
2416
|
+
definition: {
|
|
2417
|
+
[e.EN_US]: ""
|
|
2418
|
+
},
|
|
2419
|
+
type: [],
|
|
2420
|
+
tags: []
|
|
2421
|
+
}, Gt = {
|
|
2422
|
+
id: "tanstack",
|
|
2423
|
+
name: {
|
|
2424
|
+
[e.EN_US]: "Tanstack"
|
|
2425
|
+
},
|
|
2426
|
+
label: {
|
|
2427
|
+
[e.EN_US]: ""
|
|
2428
|
+
},
|
|
2429
|
+
definition: {
|
|
2430
|
+
[e.EN_US]: ""
|
|
2431
|
+
},
|
|
2432
|
+
type: [],
|
|
2433
|
+
tags: []
|
|
2434
|
+
}, Pt = {
|
|
2435
|
+
id: "tanstack_query",
|
|
2436
|
+
name: {
|
|
2437
|
+
[e.EN_US]: "Tanstack Query"
|
|
2438
|
+
},
|
|
2439
|
+
label: {
|
|
2440
|
+
[e.EN_US]: ""
|
|
2441
|
+
},
|
|
2442
|
+
definition: {
|
|
2443
|
+
[e.EN_US]: ""
|
|
2444
|
+
},
|
|
2445
|
+
type: [],
|
|
2446
|
+
tags: []
|
|
2447
|
+
}, Ot = {
|
|
2448
|
+
id: "templ",
|
|
2449
|
+
name: {
|
|
2450
|
+
[e.EN_US]: "Templ"
|
|
2451
|
+
},
|
|
2452
|
+
label: {
|
|
2453
|
+
[e.EN_US]: ""
|
|
2454
|
+
},
|
|
2455
|
+
definition: {
|
|
2456
|
+
[e.EN_US]: ""
|
|
2457
|
+
},
|
|
2458
|
+
type: [],
|
|
2459
|
+
tags: []
|
|
2460
|
+
}, Mt = {
|
|
2461
|
+
id: "terraform",
|
|
2462
|
+
name: {
|
|
2463
|
+
[e.EN_US]: "Terraform"
|
|
2464
|
+
},
|
|
2465
|
+
label: {
|
|
2466
|
+
[e.EN_US]: ""
|
|
2467
|
+
},
|
|
2468
|
+
definition: {
|
|
2469
|
+
[e.EN_US]: ""
|
|
2470
|
+
},
|
|
2471
|
+
type: [],
|
|
2472
|
+
tags: []
|
|
2473
|
+
}, Rt = {
|
|
2474
|
+
id: "trello",
|
|
2475
|
+
name: {
|
|
2476
|
+
[e.EN_US]: "Trello"
|
|
2477
|
+
},
|
|
2478
|
+
label: {
|
|
2479
|
+
[e.EN_US]: ""
|
|
2480
|
+
},
|
|
2481
|
+
definition: {
|
|
2482
|
+
[e.EN_US]: ""
|
|
2483
|
+
},
|
|
2484
|
+
type: [],
|
|
2485
|
+
tags: []
|
|
2486
|
+
}, Jt = {
|
|
2487
|
+
id: "twig",
|
|
2488
|
+
name: {
|
|
2489
|
+
[e.EN_US]: "Twig"
|
|
2490
|
+
},
|
|
2491
|
+
label: {
|
|
2492
|
+
[e.EN_US]: ""
|
|
2493
|
+
},
|
|
2494
|
+
definition: {
|
|
2495
|
+
[e.EN_US]: ""
|
|
2496
|
+
},
|
|
2497
|
+
type: [],
|
|
2498
|
+
tags: []
|
|
2499
|
+
}, Wt = {
|
|
2500
|
+
id: "typescript",
|
|
2501
|
+
name: {
|
|
2502
|
+
[e.EN_US]: "TypeScript"
|
|
2503
|
+
},
|
|
2504
|
+
label: {
|
|
2505
|
+
[e.EN_US]: "High-Level Programming Language",
|
|
2506
|
+
[e.EN_GB]: e.EN_US,
|
|
2507
|
+
[e.DE_DE]: "Hochsprache"
|
|
2508
|
+
},
|
|
2509
|
+
definition: {
|
|
2510
|
+
[e.EN_US]: "TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.",
|
|
2511
|
+
[e.EN_GB]: e.EN_US,
|
|
2512
|
+
[e.DE_DE]: "TypeScript ist eine stark typisierte Programmiersprache, die auf JavaScript aufbaut und Ihnen bei jeder Größenordnung bessere Werkzeuge bietet."
|
|
2513
|
+
},
|
|
2514
|
+
type: [N.language],
|
|
2515
|
+
tags: [E.frontend, E.backend, E.open_source],
|
|
2516
|
+
links: {
|
|
2517
|
+
website: "https://www.typescriptlang.org"
|
|
2518
|
+
}
|
|
2519
|
+
}, qt = {
|
|
2520
|
+
id: "typesense",
|
|
2521
|
+
name: {
|
|
2522
|
+
[e.EN_US]: "Typesense"
|
|
2523
|
+
},
|
|
2524
|
+
label: {
|
|
2525
|
+
[e.EN_US]: ""
|
|
2526
|
+
},
|
|
2527
|
+
definition: {
|
|
2528
|
+
[e.EN_US]: ""
|
|
2529
|
+
},
|
|
2530
|
+
type: [],
|
|
2531
|
+
tags: []
|
|
2532
|
+
}, Ht = {
|
|
2533
|
+
id: "vercel",
|
|
2534
|
+
name: {
|
|
2535
|
+
[e.EN_US]: "Vercel"
|
|
2536
|
+
},
|
|
2537
|
+
label: {
|
|
2538
|
+
[e.EN_US]: ""
|
|
2539
|
+
},
|
|
2540
|
+
definition: {
|
|
2541
|
+
[e.EN_US]: ""
|
|
2542
|
+
},
|
|
2543
|
+
type: [],
|
|
2544
|
+
tags: []
|
|
2545
|
+
}, Kt = {
|
|
2546
|
+
id: "vim",
|
|
2547
|
+
name: {
|
|
2548
|
+
[e.EN_US]: "Vim"
|
|
2549
|
+
},
|
|
2550
|
+
label: {
|
|
2551
|
+
[e.EN_US]: ""
|
|
2552
|
+
},
|
|
2553
|
+
definition: {
|
|
2554
|
+
[e.EN_US]: ""
|
|
2555
|
+
},
|
|
2556
|
+
type: [],
|
|
2557
|
+
tags: []
|
|
2558
|
+
}, It = {
|
|
2559
|
+
id: "vite",
|
|
2560
|
+
name: {
|
|
2561
|
+
[e.EN_US]: "Vite"
|
|
2562
|
+
},
|
|
2563
|
+
label: {
|
|
2564
|
+
[e.EN_US]: ""
|
|
2565
|
+
},
|
|
2566
|
+
definition: {
|
|
2567
|
+
[e.EN_US]: ""
|
|
2568
|
+
},
|
|
2569
|
+
type: [],
|
|
2570
|
+
tags: []
|
|
2571
|
+
}, Qt = {
|
|
2572
|
+
id: "vitest",
|
|
2573
|
+
name: {
|
|
2574
|
+
[e.EN_US]: "Vitest"
|
|
2575
|
+
},
|
|
2576
|
+
label: {
|
|
2577
|
+
[e.EN_US]: ""
|
|
2578
|
+
},
|
|
2579
|
+
definition: {
|
|
2580
|
+
[e.EN_US]: ""
|
|
2581
|
+
},
|
|
2582
|
+
type: [],
|
|
2583
|
+
tags: []
|
|
2584
|
+
}, Vt = {
|
|
2585
|
+
id: "vue_js",
|
|
2586
|
+
name: {
|
|
2587
|
+
[e.EN_US]: "Vue.js"
|
|
2588
|
+
},
|
|
2589
|
+
label: {
|
|
2590
|
+
[e.EN_US]: ""
|
|
2591
|
+
},
|
|
2592
|
+
definition: {
|
|
2593
|
+
[e.EN_US]: ""
|
|
2594
|
+
},
|
|
2595
|
+
type: [],
|
|
2596
|
+
tags: []
|
|
2597
|
+
}, Yt = {
|
|
2598
|
+
id: "wdio",
|
|
2599
|
+
name: {
|
|
2600
|
+
[e.EN_US]: "WebdriverIO"
|
|
2601
|
+
},
|
|
2602
|
+
label: {
|
|
2603
|
+
[e.EN_US]: ""
|
|
2604
|
+
},
|
|
2605
|
+
definition: {
|
|
2606
|
+
[e.EN_US]: ""
|
|
2607
|
+
},
|
|
2608
|
+
type: [],
|
|
2609
|
+
tags: []
|
|
2610
|
+
}, Zt = {
|
|
2611
|
+
id: "web_forms",
|
|
2612
|
+
name: {
|
|
2613
|
+
[e.EN_US]: "Web Forms"
|
|
2614
|
+
},
|
|
2615
|
+
label: {
|
|
2616
|
+
[e.EN_US]: ""
|
|
2617
|
+
},
|
|
2618
|
+
definition: {
|
|
2619
|
+
[e.EN_US]: ""
|
|
2620
|
+
},
|
|
2621
|
+
type: [],
|
|
2622
|
+
tags: []
|
|
2623
|
+
}, Xt = {
|
|
2624
|
+
id: "web_workers",
|
|
2625
|
+
name: {
|
|
2626
|
+
[e.EN_US]: "Web Workers"
|
|
2627
|
+
},
|
|
2628
|
+
label: {
|
|
2629
|
+
[e.EN_US]: ""
|
|
2630
|
+
},
|
|
2631
|
+
definition: {
|
|
2632
|
+
[e.EN_US]: ""
|
|
2633
|
+
},
|
|
2634
|
+
type: [],
|
|
2635
|
+
tags: []
|
|
2636
|
+
}, $t = {
|
|
2637
|
+
id: "web3",
|
|
2638
|
+
name: {
|
|
2639
|
+
[e.EN_US]: "Web3"
|
|
2640
|
+
},
|
|
2641
|
+
label: {
|
|
2642
|
+
[e.EN_US]: ""
|
|
2643
|
+
},
|
|
2644
|
+
definition: {
|
|
2645
|
+
[e.EN_US]: ""
|
|
2646
|
+
},
|
|
2647
|
+
type: [],
|
|
2648
|
+
tags: []
|
|
2649
|
+
}, en = {
|
|
2650
|
+
id: "webpack",
|
|
2651
|
+
name: {
|
|
2652
|
+
[e.EN_US]: "Webpack"
|
|
2653
|
+
},
|
|
2654
|
+
label: {
|
|
2655
|
+
[e.EN_US]: ""
|
|
2656
|
+
},
|
|
2657
|
+
definition: {
|
|
2658
|
+
[e.EN_US]: ""
|
|
2659
|
+
},
|
|
2660
|
+
type: [],
|
|
2661
|
+
tags: []
|
|
2662
|
+
}, tn = {
|
|
2663
|
+
id: "websockets",
|
|
2664
|
+
name: {
|
|
2665
|
+
[e.EN_US]: "WebSockets"
|
|
2666
|
+
},
|
|
2667
|
+
label: {
|
|
2668
|
+
[e.EN_US]: ""
|
|
2669
|
+
},
|
|
2670
|
+
definition: {
|
|
2671
|
+
[e.EN_US]: ""
|
|
2672
|
+
},
|
|
2673
|
+
type: [],
|
|
2674
|
+
tags: []
|
|
2675
|
+
}, nn = {
|
|
2676
|
+
id: "windows",
|
|
2677
|
+
name: {
|
|
2678
|
+
[e.EN_US]: "Windows"
|
|
2679
|
+
},
|
|
2680
|
+
label: {
|
|
2681
|
+
[e.EN_US]: ""
|
|
2682
|
+
},
|
|
2683
|
+
definition: {
|
|
2684
|
+
[e.EN_US]: ""
|
|
2685
|
+
},
|
|
2686
|
+
type: [],
|
|
2687
|
+
tags: []
|
|
2688
|
+
}, an = {
|
|
2689
|
+
id: "winscp",
|
|
2690
|
+
name: {
|
|
2691
|
+
[e.EN_US]: "WinSCP"
|
|
2692
|
+
},
|
|
2693
|
+
label: {
|
|
2694
|
+
[e.EN_US]: ""
|
|
2695
|
+
},
|
|
2696
|
+
definition: {
|
|
2697
|
+
[e.EN_US]: ""
|
|
2698
|
+
},
|
|
2699
|
+
type: [],
|
|
2700
|
+
tags: []
|
|
2701
|
+
}, sn = {
|
|
2702
|
+
id: "wordpress",
|
|
2703
|
+
name: {
|
|
2704
|
+
[e.EN_US]: "WordPress"
|
|
2705
|
+
},
|
|
2706
|
+
label: {
|
|
2707
|
+
[e.EN_US]: ""
|
|
2708
|
+
},
|
|
2709
|
+
definition: {
|
|
2710
|
+
[e.EN_US]: ""
|
|
2711
|
+
},
|
|
2712
|
+
type: [],
|
|
2713
|
+
tags: []
|
|
2714
|
+
}, on = {
|
|
2715
|
+
id: "yarn",
|
|
2716
|
+
name: {
|
|
2717
|
+
[e.EN_US]: "Yarn"
|
|
2718
|
+
},
|
|
2719
|
+
label: {
|
|
2720
|
+
[e.EN_US]: ""
|
|
2721
|
+
},
|
|
2722
|
+
definition: {
|
|
2723
|
+
[e.EN_US]: ""
|
|
2724
|
+
},
|
|
2725
|
+
type: [],
|
|
2726
|
+
tags: []
|
|
2727
|
+
}, _n = {
|
|
2728
|
+
id: "zephyr",
|
|
2729
|
+
name: {
|
|
2730
|
+
[e.EN_US]: "Zephyr"
|
|
2731
|
+
},
|
|
2732
|
+
label: {
|
|
2733
|
+
[e.EN_US]: ""
|
|
2734
|
+
},
|
|
2735
|
+
definition: {
|
|
2736
|
+
[e.EN_US]: ""
|
|
2737
|
+
},
|
|
2738
|
+
type: [],
|
|
2739
|
+
tags: []
|
|
2740
|
+
}, dn = {
|
|
2741
|
+
id: "zod",
|
|
2742
|
+
name: {
|
|
2743
|
+
[e.EN_US]: "Zod"
|
|
2744
|
+
},
|
|
2745
|
+
label: {
|
|
2746
|
+
[e.EN_US]: ""
|
|
2747
|
+
},
|
|
2748
|
+
definition: {
|
|
2749
|
+
[e.EN_US]: ""
|
|
2750
|
+
},
|
|
2751
|
+
type: [],
|
|
2752
|
+
tags: []
|
|
2753
|
+
}, U = {
|
|
2754
|
+
[m.id]: m,
|
|
2755
|
+
[g.id]: g,
|
|
2756
|
+
[b.id]: b,
|
|
2757
|
+
[y.id]: y,
|
|
2758
|
+
[f.id]: f,
|
|
2759
|
+
[u.id]: u,
|
|
2760
|
+
[k.id]: k,
|
|
2761
|
+
[h.id]: h,
|
|
2762
|
+
[L.id]: L,
|
|
2763
|
+
[T.id]: T,
|
|
2764
|
+
[B.id]: B,
|
|
2765
|
+
[x.id]: x,
|
|
2766
|
+
[z.id]: z,
|
|
2767
|
+
[F.id]: F,
|
|
2768
|
+
[G.id]: G,
|
|
2769
|
+
[P.id]: P,
|
|
2770
|
+
[O.id]: O,
|
|
2771
|
+
[M.id]: M,
|
|
2772
|
+
[R.id]: R,
|
|
2773
|
+
[J.id]: J,
|
|
2774
|
+
[W.id]: W,
|
|
2775
|
+
[q.id]: q,
|
|
2776
|
+
[H.id]: H,
|
|
2777
|
+
[K.id]: K,
|
|
2778
|
+
[I.id]: I,
|
|
2779
|
+
[Q.id]: Q,
|
|
2780
|
+
[V.id]: V,
|
|
2781
|
+
[Y.id]: Y,
|
|
2782
|
+
[Z.id]: Z,
|
|
2783
|
+
[X.id]: X,
|
|
2784
|
+
[$.id]: $,
|
|
2785
|
+
[ee.id]: ee,
|
|
2786
|
+
[ie.id]: ie,
|
|
2787
|
+
[te.id]: te,
|
|
2788
|
+
[ne.id]: ne,
|
|
2789
|
+
[ae.id]: ae,
|
|
2790
|
+
[se.id]: se,
|
|
2791
|
+
[oe.id]: oe,
|
|
2792
|
+
[_e.id]: _e,
|
|
2793
|
+
[de.id]: de,
|
|
2794
|
+
[Ee.id]: Ee,
|
|
2795
|
+
[Se.id]: Se,
|
|
2796
|
+
[le.id]: le,
|
|
2797
|
+
[Ne.id]: Ne,
|
|
2798
|
+
[Ue.id]: Ue,
|
|
2799
|
+
[ce.id]: ce,
|
|
2800
|
+
[re.id]: re,
|
|
2801
|
+
[pe.id]: pe,
|
|
2802
|
+
[me.id]: me,
|
|
2803
|
+
[ge.id]: ge,
|
|
2804
|
+
[be.id]: be,
|
|
2805
|
+
[ye.id]: ye,
|
|
2806
|
+
[fe.id]: fe,
|
|
2807
|
+
[ue.id]: ue,
|
|
2808
|
+
[ke.id]: ke,
|
|
2809
|
+
[he.id]: he,
|
|
2810
|
+
[Le.id]: Le,
|
|
2811
|
+
[je.id]: je,
|
|
2812
|
+
[Ae.id]: Ae,
|
|
2813
|
+
[we.id]: we,
|
|
2814
|
+
[ve.id]: ve,
|
|
2815
|
+
[Ce.id]: Ce,
|
|
2816
|
+
[De.id]: De,
|
|
2817
|
+
[Te.id]: Te,
|
|
2818
|
+
[Be.id]: Be,
|
|
2819
|
+
[xe.id]: xe,
|
|
2820
|
+
[ze.id]: ze,
|
|
2821
|
+
[Fe.id]: Fe,
|
|
2822
|
+
[Ge.id]: Ge,
|
|
2823
|
+
[Pe.id]: Pe,
|
|
2824
|
+
[Oe.id]: Oe,
|
|
2825
|
+
[Me.id]: Me,
|
|
2826
|
+
[Re.id]: Re,
|
|
2827
|
+
[Je.id]: Je,
|
|
2828
|
+
[We.id]: We,
|
|
2829
|
+
[qe.id]: qe,
|
|
2830
|
+
[He.id]: He,
|
|
2831
|
+
[Ke.id]: Ke,
|
|
2832
|
+
[Ie.id]: Ie,
|
|
2833
|
+
[Qe.id]: Qe,
|
|
2834
|
+
[Ve.id]: Ve,
|
|
2835
|
+
[Ye.id]: Ye,
|
|
2836
|
+
[Ze.id]: Ze,
|
|
2837
|
+
[Xe.id]: Xe,
|
|
2838
|
+
[$e.id]: $e,
|
|
2839
|
+
[ei.id]: ei,
|
|
2840
|
+
[ii.id]: ii,
|
|
2841
|
+
[ti.id]: ti,
|
|
2842
|
+
[ni.id]: ni,
|
|
2843
|
+
[ai.id]: ai,
|
|
2844
|
+
[si.id]: si,
|
|
2845
|
+
[oi.id]: oi,
|
|
2846
|
+
[_i.id]: _i,
|
|
2847
|
+
[di.id]: di,
|
|
2848
|
+
[Ei.id]: Ei,
|
|
2849
|
+
[Si.id]: Si,
|
|
2850
|
+
[li.id]: li,
|
|
2851
|
+
[Ni.id]: Ni,
|
|
2852
|
+
[Ui.id]: Ui,
|
|
2853
|
+
[ci.id]: ci,
|
|
2854
|
+
[ri.id]: ri,
|
|
2855
|
+
[pi.id]: pi,
|
|
2856
|
+
[mi.id]: mi,
|
|
2857
|
+
[gi.id]: gi,
|
|
2858
|
+
[bi.id]: bi,
|
|
2859
|
+
[yi.id]: yi,
|
|
2860
|
+
[fi.id]: fi,
|
|
2861
|
+
[ui.id]: ui,
|
|
2862
|
+
[ki.id]: ki,
|
|
2863
|
+
[hi.id]: hi,
|
|
2864
|
+
[Li.id]: Li,
|
|
2865
|
+
[ji.id]: ji,
|
|
2866
|
+
[Ai.id]: Ai,
|
|
2867
|
+
[wi.id]: wi,
|
|
2868
|
+
[vi.id]: vi,
|
|
2869
|
+
[Ci.id]: Ci,
|
|
2870
|
+
[Di.id]: Di,
|
|
2871
|
+
[Ti.id]: Ti,
|
|
2872
|
+
[Bi.id]: Bi,
|
|
2873
|
+
[xi.id]: xi,
|
|
2874
|
+
[zi.id]: zi,
|
|
2875
|
+
[Fi.id]: Fi,
|
|
2876
|
+
[Gi.id]: Gi,
|
|
2877
|
+
[Pi.id]: Pi,
|
|
2878
|
+
[Oi.id]: Oi,
|
|
2879
|
+
[Mi.id]: Mi,
|
|
2880
|
+
[Ri.id]: Ri,
|
|
2881
|
+
[Ji.id]: Ji,
|
|
2882
|
+
[Wi.id]: Wi,
|
|
2883
|
+
[qi.id]: qi,
|
|
2884
|
+
[Hi.id]: Hi,
|
|
2885
|
+
[Ki.id]: Ki,
|
|
2886
|
+
[Ii.id]: Ii,
|
|
2887
|
+
[Qi.id]: Qi,
|
|
2888
|
+
[Vi.id]: Vi,
|
|
2889
|
+
[Yi.id]: Yi,
|
|
2890
|
+
[Zi.id]: Zi,
|
|
2891
|
+
[Xi.id]: Xi,
|
|
2892
|
+
[$i.id]: $i,
|
|
2893
|
+
[et.id]: et,
|
|
2894
|
+
[it.id]: it,
|
|
2895
|
+
[tt.id]: tt,
|
|
2896
|
+
[nt.id]: nt,
|
|
2897
|
+
[at.id]: at,
|
|
2898
|
+
[st.id]: st,
|
|
2899
|
+
[ot.id]: ot,
|
|
2900
|
+
[_t.id]: _t,
|
|
2901
|
+
[dt.id]: dt,
|
|
2902
|
+
[Et.id]: Et,
|
|
2903
|
+
[St.id]: St,
|
|
2904
|
+
[lt.id]: lt,
|
|
2905
|
+
[Nt.id]: Nt,
|
|
2906
|
+
[Ut.id]: Ut,
|
|
2907
|
+
[ct.id]: ct,
|
|
2908
|
+
[rt.id]: rt,
|
|
2909
|
+
[pt.id]: pt,
|
|
2910
|
+
[mt.id]: mt,
|
|
2911
|
+
[gt.id]: gt,
|
|
2912
|
+
[bt.id]: bt,
|
|
2913
|
+
[yt.id]: yt,
|
|
2914
|
+
[ft.id]: ft,
|
|
2915
|
+
[ut.id]: ut,
|
|
2916
|
+
[kt.id]: kt,
|
|
2917
|
+
[ht.id]: ht,
|
|
2918
|
+
[Lt.id]: Lt,
|
|
2919
|
+
[jt.id]: jt,
|
|
2920
|
+
[At.id]: At,
|
|
2921
|
+
[wt.id]: wt,
|
|
2922
|
+
[vt.id]: vt,
|
|
2923
|
+
[Ct.id]: Ct,
|
|
2924
|
+
[Dt.id]: Dt,
|
|
2925
|
+
[Tt.id]: Tt,
|
|
2926
|
+
[Bt.id]: Bt,
|
|
2927
|
+
[xt.id]: xt,
|
|
2928
|
+
[zt.id]: zt,
|
|
2929
|
+
[Ft.id]: Ft,
|
|
2930
|
+
[Gt.id]: Gt,
|
|
2931
|
+
[Pt.id]: Pt,
|
|
2932
|
+
[Ot.id]: Ot,
|
|
2933
|
+
[Mt.id]: Mt,
|
|
2934
|
+
[Rt.id]: Rt,
|
|
2935
|
+
[Jt.id]: Jt,
|
|
2936
|
+
[Wt.id]: Wt,
|
|
2937
|
+
[qt.id]: qt,
|
|
2938
|
+
[Ht.id]: Ht,
|
|
2939
|
+
[Kt.id]: Kt,
|
|
2940
|
+
[It.id]: It,
|
|
2941
|
+
[Qt.id]: Qt,
|
|
2942
|
+
[Vt.id]: Vt,
|
|
2943
|
+
[Yt.id]: Yt,
|
|
2944
|
+
[$t.id]: $t,
|
|
2945
|
+
[Zt.id]: Zt,
|
|
2946
|
+
[Xt.id]: Xt,
|
|
2947
|
+
[en.id]: en,
|
|
2948
|
+
[tn.id]: tn,
|
|
2949
|
+
[nn.id]: nn,
|
|
2950
|
+
[an.id]: an,
|
|
2951
|
+
[sn.id]: sn,
|
|
2952
|
+
[on.id]: on,
|
|
2953
|
+
[_n.id]: _n,
|
|
2954
|
+
[dn.id]: dn
|
|
211
2955
|
};
|
|
212
|
-
|
|
213
|
-
const
|
|
2956
|
+
S({ obj: U, keys: ["name", "label", "definition"], useFallback: !1 });
|
|
2957
|
+
const s = {
|
|
214
2958
|
DEFAULT_LOCALE: e.EN_US,
|
|
215
2959
|
USE_FALLBACK: !0
|
|
216
2960
|
};
|
|
217
|
-
function
|
|
2961
|
+
function cn({
|
|
218
2962
|
id: t,
|
|
219
|
-
localized:
|
|
220
|
-
locale:
|
|
221
|
-
useFallback:
|
|
2963
|
+
localized: n = !0,
|
|
2964
|
+
locale: i = s.DEFAULT_LOCALE,
|
|
2965
|
+
useFallback: a = s.USE_FALLBACK
|
|
222
2966
|
}) {
|
|
223
|
-
const
|
|
224
|
-
return
|
|
225
|
-
...
|
|
226
|
-
name:
|
|
227
|
-
label:
|
|
228
|
-
definition:
|
|
229
|
-
type:
|
|
230
|
-
tags:
|
|
231
|
-
} :
|
|
2967
|
+
const _ = S({ obj: U, keys: ["name", "label", "definition"], useFallback: a })[t];
|
|
2968
|
+
return n ? {
|
|
2969
|
+
..._,
|
|
2970
|
+
name: l({ obj: _.name, locale: i, useFallback: a }),
|
|
2971
|
+
label: l({ obj: _.label, locale: i, useFallback: a }),
|
|
2972
|
+
definition: l({ obj: _.definition, locale: i, useFallback: a }),
|
|
2973
|
+
type: _.type.map((d) => ln({ term: d, locale: i, useFallback: a })),
|
|
2974
|
+
tags: _.tags.map((d) => Sn({ tag: d, locale: i, useFallback: a }))
|
|
2975
|
+
} : _;
|
|
232
2976
|
}
|
|
233
|
-
function
|
|
2977
|
+
function mn({
|
|
234
2978
|
localized: t = !0,
|
|
235
|
-
locale:
|
|
236
|
-
useFallback:
|
|
2979
|
+
locale: n = s.DEFAULT_LOCALE,
|
|
2980
|
+
useFallback: i = s.USE_FALLBACK
|
|
237
2981
|
} = {}) {
|
|
238
|
-
const
|
|
239
|
-
return t ? o.map((
|
|
2982
|
+
const a = S({ obj: U, keys: ["name", "label", "definition"], useFallback: i }), o = Object.values(a);
|
|
2983
|
+
return t ? o.map((_) => cn({ id: _.id, locale: n, useFallback: i })) : o;
|
|
240
2984
|
}
|
|
241
|
-
function
|
|
2985
|
+
function gn({
|
|
242
2986
|
localized: t = !0,
|
|
243
|
-
locale:
|
|
244
|
-
useFallback:
|
|
2987
|
+
locale: n = s.DEFAULT_LOCALE,
|
|
2988
|
+
useFallback: i = s.USE_FALLBACK
|
|
245
2989
|
} = {}) {
|
|
246
|
-
const
|
|
2990
|
+
const a = S({ obj: U, keys: ["name", "label", "definition"], useFallback: i });
|
|
247
2991
|
if (!t)
|
|
248
|
-
return
|
|
2992
|
+
return a;
|
|
249
2993
|
const o = {};
|
|
250
|
-
for (const [
|
|
251
|
-
const
|
|
252
|
-
o[
|
|
2994
|
+
for (const [_, d] of Object.entries(a)) {
|
|
2995
|
+
const rn = cn({ id: d.id, locale: n, useFallback: i });
|
|
2996
|
+
o[_] = rn;
|
|
253
2997
|
}
|
|
254
2998
|
return o;
|
|
255
2999
|
}
|
|
256
|
-
function
|
|
3000
|
+
function bn({
|
|
257
3001
|
localized: t = !0,
|
|
258
|
-
locale:
|
|
259
|
-
useFallback:
|
|
3002
|
+
locale: n = s.DEFAULT_LOCALE,
|
|
3003
|
+
useFallback: i = s.USE_FALLBACK
|
|
260
3004
|
} = {}) {
|
|
261
|
-
const
|
|
262
|
-
return t ? o.map((
|
|
3005
|
+
const a = S({ obj: Un, keys: ["name"], useFallback: i }), o = Object.values(a);
|
|
3006
|
+
return t ? o.map((_) => ln({ term: _, locale: n, useFallback: i })) : o;
|
|
263
3007
|
}
|
|
264
|
-
function
|
|
3008
|
+
function yn({
|
|
265
3009
|
localized: t = !0,
|
|
266
|
-
locale:
|
|
267
|
-
useFallback:
|
|
3010
|
+
locale: n = s.DEFAULT_LOCALE,
|
|
3011
|
+
useFallback: i = s.USE_FALLBACK
|
|
268
3012
|
} = {}) {
|
|
269
|
-
const
|
|
270
|
-
return t ? o.map((
|
|
3013
|
+
const a = S({ obj: Nn, keys: ["name"], useFallback: i }), o = Object.values(a);
|
|
3014
|
+
return t ? o.map((_) => Sn({ tag: _, locale: n, useFallback: i })) : o;
|
|
271
3015
|
}
|
|
272
3016
|
export {
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
3017
|
+
gn as getDict,
|
|
3018
|
+
yn as getTags,
|
|
3019
|
+
cn as getTerm,
|
|
3020
|
+
mn as getTerms,
|
|
3021
|
+
bn as getTypes
|
|
278
3022
|
};
|
|
279
3023
|
//# sourceMappingURL=index.js.map
|