@jjlmoya/utils-developer 1.10.0 → 1.12.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/package.json +3 -2
- package/src/entries.ts +74 -0
- package/src/index.ts +0 -24
- package/src/tool/aspectRatio/entry.ts +30 -0
- package/src/tool/aspectRatio/index.ts +2 -32
- package/src/tool/calculadoraTiempoDatos/entry.ts +29 -0
- package/src/tool/calculadoraTiempoDatos/index.ts +2 -31
- package/src/tool/colorConverter/entry.ts +29 -0
- package/src/tool/colorConverter/index.ts +2 -31
- package/src/tool/conversorExcelCsvHtml/entry.ts +29 -0
- package/src/tool/conversorExcelCsvHtml/index.ts +2 -31
- package/src/tool/cronGenerator/entry.ts +30 -0
- package/src/tool/cronGenerator/index.ts +2 -32
- package/src/tool/cssSpecificityCalculator/entry.ts +30 -0
- package/src/tool/cssSpecificityCalculator/index.ts +2 -32
- package/src/tool/cssToInlineConverter/entry.ts +30 -0
- package/src/tool/cssToInlineConverter/index.ts +2 -32
- package/src/tool/duplicateCssRemover/entry.ts +30 -0
- package/src/tool/duplicateCssRemover/index.ts +2 -32
- package/src/tool/generadorSecurityTxt/entry.ts +29 -0
- package/src/tool/generadorSecurityTxt/index.ts +2 -31
- package/src/tool/hashGenerator/entry.ts +29 -0
- package/src/tool/hashGenerator/index.ts +2 -31
- package/src/tool/inspectorCertificadosSsl/entry.ts +45 -0
- package/src/tool/inspectorCertificadosSsl/index.ts +2 -47
- package/src/tool/jsonFormatter/entry.ts +30 -0
- package/src/tool/jsonFormatter/index.ts +2 -32
- package/src/tool/keycode/entry.ts +30 -0
- package/src/tool/keycode/index.ts +2 -32
- package/src/tool/llmCostCalculator/entry.ts +46 -0
- package/src/tool/llmCostCalculator/index.ts +2 -48
- package/src/tool/mobileMockupGenerator/entry.ts +45 -0
- package/src/tool/mobileMockupGenerator/index.ts +2 -47
- package/src/tool/musicalTypography/entry.ts +29 -0
- package/src/tool/musicalTypography/index.ts +2 -31
- package/src/tool/placeholderGenerator/entry.ts +46 -0
- package/src/tool/placeholderGenerator/index.ts +2 -48
- package/src/tool/promptLibrary/entry.ts +45 -0
- package/src/tool/promptLibrary/index.ts +2 -47
- package/src/tool/readabilityCalculator/entry.ts +45 -0
- package/src/tool/readabilityCalculator/index.ts +2 -47
- package/src/tool/svgSanitizer/entry.ts +45 -0
- package/src/tool/svgSanitizer/index.ts +2 -47
- package/src/tool/svgToCss/entry.ts +30 -0
- package/src/tool/svgToCss/index.ts +2 -32
- package/src/tool/urlCleaner/entry.ts +45 -0
- package/src/tool/urlCleaner/index.ts +2 -47
- package/src/tool/urlEncoderDecoder/entry.ts +30 -0
- package/src/tool/urlEncoderDecoder/index.ts +2 -32
- package/src/tool/utmGenerator/entry.ts +29 -0
- package/src/tool/utmGenerator/index.ts +2 -31
- package/src/tools.ts +1 -1
|
@@ -1,35 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import type { CssToInlineConverterUI } from './ui';
|
|
4
|
-
|
|
5
|
-
export type CssToInlineConverterLocaleContent = ToolLocaleContent<CssToInlineConverterUI>;
|
|
6
|
-
|
|
7
|
-
export const cssToInlineConverter: DeveloperToolEntry<CssToInlineConverterUI> = {
|
|
8
|
-
id: 'css-to-inline-converter',
|
|
9
|
-
icons: {
|
|
10
|
-
bg: 'mdi:email-outline',
|
|
11
|
-
fg: 'mdi:language-css3',
|
|
12
|
-
},
|
|
13
|
-
i18n: {
|
|
14
|
-
de: async () => (await import('./i18n/de')).content,
|
|
15
|
-
en: async () => (await import('./i18n/en')).content,
|
|
16
|
-
es: async () => (await import('./i18n/es')).content,
|
|
17
|
-
fr: async () => (await import('./i18n/fr')).content,
|
|
18
|
-
id: async () => (await import('./i18n/id')).content,
|
|
19
|
-
it: async () => (await import('./i18n/it')).content,
|
|
20
|
-
ja: async () => (await import('./i18n/ja')).content,
|
|
21
|
-
ko: async () => (await import('./i18n/ko')).content,
|
|
22
|
-
nl: async () => (await import('./i18n/nl')).content,
|
|
23
|
-
pl: async () => (await import('./i18n/pl')).content,
|
|
24
|
-
pt: async () => (await import('./i18n/pt')).content,
|
|
25
|
-
ru: async () => (await import('./i18n/ru')).content,
|
|
26
|
-
sv: async () => (await import('./i18n/sv')).content,
|
|
27
|
-
tr: async () => (await import('./i18n/tr')).content,
|
|
28
|
-
zh: async () => (await import('./i18n/zh')).content,
|
|
29
|
-
},
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
|
|
1
|
+
import { cssToInlineConverter } from './entry';
|
|
2
|
+
export * from './entry';
|
|
33
3
|
export const CSS_TO_INLINE_CONVERTER_TOOL: ToolDefinition = {
|
|
34
4
|
entry: cssToInlineConverter,
|
|
35
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
import type { DuplicateCssRemoverUI } from './ui';
|
|
4
|
+
|
|
5
|
+
export type DuplicateCssRemoverLocaleContent = ToolLocaleContent<DuplicateCssRemoverUI>;
|
|
6
|
+
|
|
7
|
+
export const duplicateCssRemover: DeveloperToolEntry<DuplicateCssRemoverUI> = {
|
|
8
|
+
id: 'duplicate-css-remover',
|
|
9
|
+
icons: {
|
|
10
|
+
bg: 'mdi:broom',
|
|
11
|
+
fg: 'mdi:language-css3',
|
|
12
|
+
},
|
|
13
|
+
i18n: {
|
|
14
|
+
de: async () => (await import('./i18n/de')).content,
|
|
15
|
+
en: async () => (await import('./i18n/en')).content,
|
|
16
|
+
es: async () => (await import('./i18n/es')).content,
|
|
17
|
+
fr: async () => (await import('./i18n/fr')).content,
|
|
18
|
+
id: async () => (await import('./i18n/id')).content,
|
|
19
|
+
it: async () => (await import('./i18n/it')).content,
|
|
20
|
+
ja: async () => (await import('./i18n/ja')).content,
|
|
21
|
+
ko: async () => (await import('./i18n/ko')).content,
|
|
22
|
+
nl: async () => (await import('./i18n/nl')).content,
|
|
23
|
+
pl: async () => (await import('./i18n/pl')).content,
|
|
24
|
+
pt: async () => (await import('./i18n/pt')).content,
|
|
25
|
+
ru: async () => (await import('./i18n/ru')).content,
|
|
26
|
+
sv: async () => (await import('./i18n/sv')).content,
|
|
27
|
+
tr: async () => (await import('./i18n/tr')).content,
|
|
28
|
+
zh: async () => (await import('./i18n/zh')).content,
|
|
29
|
+
},
|
|
30
|
+
};
|
|
@@ -1,35 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import type { DuplicateCssRemoverUI } from './ui';
|
|
4
|
-
|
|
5
|
-
export type DuplicateCssRemoverLocaleContent = ToolLocaleContent<DuplicateCssRemoverUI>;
|
|
6
|
-
|
|
7
|
-
export const duplicateCssRemover: DeveloperToolEntry<DuplicateCssRemoverUI> = {
|
|
8
|
-
id: 'duplicate-css-remover',
|
|
9
|
-
icons: {
|
|
10
|
-
bg: 'mdi:broom',
|
|
11
|
-
fg: 'mdi:language-css3',
|
|
12
|
-
},
|
|
13
|
-
i18n: {
|
|
14
|
-
de: async () => (await import('./i18n/de')).content,
|
|
15
|
-
en: async () => (await import('./i18n/en')).content,
|
|
16
|
-
es: async () => (await import('./i18n/es')).content,
|
|
17
|
-
fr: async () => (await import('./i18n/fr')).content,
|
|
18
|
-
id: async () => (await import('./i18n/id')).content,
|
|
19
|
-
it: async () => (await import('./i18n/it')).content,
|
|
20
|
-
ja: async () => (await import('./i18n/ja')).content,
|
|
21
|
-
ko: async () => (await import('./i18n/ko')).content,
|
|
22
|
-
nl: async () => (await import('./i18n/nl')).content,
|
|
23
|
-
pl: async () => (await import('./i18n/pl')).content,
|
|
24
|
-
pt: async () => (await import('./i18n/pt')).content,
|
|
25
|
-
ru: async () => (await import('./i18n/ru')).content,
|
|
26
|
-
sv: async () => (await import('./i18n/sv')).content,
|
|
27
|
-
tr: async () => (await import('./i18n/tr')).content,
|
|
28
|
-
zh: async () => (await import('./i18n/zh')).content,
|
|
29
|
-
},
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
|
|
1
|
+
import { duplicateCssRemover } from './entry';
|
|
2
|
+
export * from './entry';
|
|
33
3
|
export const DUPLICATE_CSS_REMOVER_TOOL: ToolDefinition = {
|
|
34
4
|
entry: duplicateCssRemover,
|
|
35
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { GeneradorSecurityTxtUI } from './ui';
|
|
3
|
+
|
|
4
|
+
export type GeneradorSecurityTxtLocaleContent = ToolLocaleContent<GeneradorSecurityTxtUI>;
|
|
5
|
+
|
|
6
|
+
export const generadorSecurityTxt: DeveloperToolEntry<GeneradorSecurityTxtUI> = {
|
|
7
|
+
id: 'generador-security-txt',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:shield-alert',
|
|
10
|
+
fg: 'mdi:file-document',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
de: async () => (await import('./i18n/de')).content,
|
|
14
|
+
en: async () => (await import('./i18n/en')).content,
|
|
15
|
+
es: async () => (await import('./i18n/es')).content,
|
|
16
|
+
fr: async () => (await import('./i18n/fr')).content,
|
|
17
|
+
id: async () => (await import('./i18n/id')).content,
|
|
18
|
+
it: async () => (await import('./i18n/it')).content,
|
|
19
|
+
ja: async () => (await import('./i18n/ja')).content,
|
|
20
|
+
ko: async () => (await import('./i18n/ko')).content,
|
|
21
|
+
nl: async () => (await import('./i18n/nl')).content,
|
|
22
|
+
pl: async () => (await import('./i18n/pl')).content,
|
|
23
|
+
pt: async () => (await import('./i18n/pt')).content,
|
|
24
|
+
ru: async () => (await import('./i18n/ru')).content,
|
|
25
|
+
sv: async () => (await import('./i18n/sv')).content,
|
|
26
|
+
tr: async () => (await import('./i18n/tr')).content,
|
|
27
|
+
zh: async () => (await import('./i18n/zh')).content,
|
|
28
|
+
},
|
|
29
|
+
};
|
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type GeneradorSecurityTxtLocaleContent = ToolLocaleContent<GeneradorSecurityTxtUI>;
|
|
5
|
-
|
|
6
|
-
export const generadorSecurityTxt: DeveloperToolEntry<GeneradorSecurityTxtUI> = {
|
|
7
|
-
id: 'generador-security-txt',
|
|
8
|
-
icons: {
|
|
9
|
-
bg: 'mdi:shield-alert',
|
|
10
|
-
fg: 'mdi:file-document',
|
|
11
|
-
},
|
|
12
|
-
i18n: {
|
|
13
|
-
de: async () => (await import('./i18n/de')).content,
|
|
14
|
-
en: async () => (await import('./i18n/en')).content,
|
|
15
|
-
es: async () => (await import('./i18n/es')).content,
|
|
16
|
-
fr: async () => (await import('./i18n/fr')).content,
|
|
17
|
-
id: async () => (await import('./i18n/id')).content,
|
|
18
|
-
it: async () => (await import('./i18n/it')).content,
|
|
19
|
-
ja: async () => (await import('./i18n/ja')).content,
|
|
20
|
-
ko: async () => (await import('./i18n/ko')).content,
|
|
21
|
-
nl: async () => (await import('./i18n/nl')).content,
|
|
22
|
-
pl: async () => (await import('./i18n/pl')).content,
|
|
23
|
-
pt: async () => (await import('./i18n/pt')).content,
|
|
24
|
-
ru: async () => (await import('./i18n/ru')).content,
|
|
25
|
-
sv: async () => (await import('./i18n/sv')).content,
|
|
26
|
-
tr: async () => (await import('./i18n/tr')).content,
|
|
27
|
-
zh: async () => (await import('./i18n/zh')).content,
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { generadorSecurityTxt } from './entry';
|
|
2
|
+
export * from './entry';
|
|
32
3
|
export const GENERADOR_SECURITY_TXT_TOOL: ToolDefinition = {
|
|
33
4
|
entry: generadorSecurityTxt,
|
|
34
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { HashGeneratorUI } from './ui';
|
|
3
|
+
|
|
4
|
+
export type HashGeneratorLocaleContent = ToolLocaleContent<HashGeneratorUI>;
|
|
5
|
+
|
|
6
|
+
export const hashGenerator: DeveloperToolEntry<HashGeneratorUI> = {
|
|
7
|
+
id: 'hash-generator',
|
|
8
|
+
icons: {
|
|
9
|
+
bg: 'mdi:shield-lock',
|
|
10
|
+
fg: 'mdi:pound',
|
|
11
|
+
},
|
|
12
|
+
i18n: {
|
|
13
|
+
de: async () => (await import('./i18n/de')).content,
|
|
14
|
+
en: async () => (await import('./i18n/en')).content,
|
|
15
|
+
es: async () => (await import('./i18n/es')).content,
|
|
16
|
+
fr: async () => (await import('./i18n/fr')).content,
|
|
17
|
+
id: async () => (await import('./i18n/id')).content,
|
|
18
|
+
it: async () => (await import('./i18n/it')).content,
|
|
19
|
+
ja: async () => (await import('./i18n/ja')).content,
|
|
20
|
+
ko: async () => (await import('./i18n/ko')).content,
|
|
21
|
+
nl: async () => (await import('./i18n/nl')).content,
|
|
22
|
+
pl: async () => (await import('./i18n/pl')).content,
|
|
23
|
+
pt: async () => (await import('./i18n/pt')).content,
|
|
24
|
+
ru: async () => (await import('./i18n/ru')).content,
|
|
25
|
+
sv: async () => (await import('./i18n/sv')).content,
|
|
26
|
+
tr: async () => (await import('./i18n/tr')).content,
|
|
27
|
+
zh: async () => (await import('./i18n/zh')).content,
|
|
28
|
+
},
|
|
29
|
+
};
|
|
@@ -1,34 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type HashGeneratorLocaleContent = ToolLocaleContent<HashGeneratorUI>;
|
|
5
|
-
|
|
6
|
-
export const hashGenerator: DeveloperToolEntry<HashGeneratorUI> = {
|
|
7
|
-
id: 'hash-generator',
|
|
8
|
-
icons: {
|
|
9
|
-
bg: 'mdi:shield-lock',
|
|
10
|
-
fg: 'mdi:pound',
|
|
11
|
-
},
|
|
12
|
-
i18n: {
|
|
13
|
-
de: async () => (await import('./i18n/de')).content,
|
|
14
|
-
en: async () => (await import('./i18n/en')).content,
|
|
15
|
-
es: async () => (await import('./i18n/es')).content,
|
|
16
|
-
fr: async () => (await import('./i18n/fr')).content,
|
|
17
|
-
id: async () => (await import('./i18n/id')).content,
|
|
18
|
-
it: async () => (await import('./i18n/it')).content,
|
|
19
|
-
ja: async () => (await import('./i18n/ja')).content,
|
|
20
|
-
ko: async () => (await import('./i18n/ko')).content,
|
|
21
|
-
nl: async () => (await import('./i18n/nl')).content,
|
|
22
|
-
pl: async () => (await import('./i18n/pl')).content,
|
|
23
|
-
pt: async () => (await import('./i18n/pt')).content,
|
|
24
|
-
ru: async () => (await import('./i18n/ru')).content,
|
|
25
|
-
sv: async () => (await import('./i18n/sv')).content,
|
|
26
|
-
tr: async () => (await import('./i18n/tr')).content,
|
|
27
|
-
zh: async () => (await import('./i18n/zh')).content,
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { hashGenerator } from './entry';
|
|
2
|
+
export * from './entry';
|
|
32
3
|
export const HASH_GENERATOR_TOOL: ToolDefinition = {
|
|
33
4
|
entry: hashGenerator,
|
|
34
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { InspectorCertificadosSslUI } from './ui';
|
|
3
|
+
|
|
4
|
+
export type InspectorCertificadosSslLocaleContent = ToolLocaleContent<InspectorCertificadosSslUI>;
|
|
5
|
+
|
|
6
|
+
import { content as es } from './i18n/es';
|
|
7
|
+
import { content as en } from './i18n/en';
|
|
8
|
+
import { content as fr } from './i18n/fr';
|
|
9
|
+
import { content as de } from './i18n/de';
|
|
10
|
+
import { content as it } from './i18n/it';
|
|
11
|
+
import { content as ja } from './i18n/ja';
|
|
12
|
+
import { content as ko } from './i18n/ko';
|
|
13
|
+
import { content as nl } from './i18n/nl';
|
|
14
|
+
import { content as pl } from './i18n/pl';
|
|
15
|
+
import { content as pt } from './i18n/pt';
|
|
16
|
+
import { content as ru } from './i18n/ru';
|
|
17
|
+
import { content as sv } from './i18n/sv';
|
|
18
|
+
import { content as tr } from './i18n/tr';
|
|
19
|
+
import { content as zh } from './i18n/zh';
|
|
20
|
+
import { content as id } from './i18n/id';
|
|
21
|
+
|
|
22
|
+
export const inspectorCertificadosSsl: DeveloperToolEntry<InspectorCertificadosSslUI> = {
|
|
23
|
+
id: 'inspector-certificados-ssl',
|
|
24
|
+
icons: {
|
|
25
|
+
bg: 'mdi:security',
|
|
26
|
+
fg: 'mdi:certificate',
|
|
27
|
+
},
|
|
28
|
+
i18n: {
|
|
29
|
+
es: async () => es,
|
|
30
|
+
en: async () => en,
|
|
31
|
+
fr: async () => fr,
|
|
32
|
+
de: async () => de,
|
|
33
|
+
it: async () => it,
|
|
34
|
+
ja: async () => ja,
|
|
35
|
+
ko: async () => ko,
|
|
36
|
+
nl: async () => nl,
|
|
37
|
+
pl: async () => pl,
|
|
38
|
+
pt: async () => pt,
|
|
39
|
+
ru: async () => ru,
|
|
40
|
+
sv: async () => sv,
|
|
41
|
+
tr: async () => tr,
|
|
42
|
+
zh: async () => zh,
|
|
43
|
+
id: async () => id,
|
|
44
|
+
},
|
|
45
|
+
};
|
|
@@ -1,50 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export type InspectorCertificadosSslLocaleContent = ToolLocaleContent<InspectorCertificadosSslUI>;
|
|
5
|
-
|
|
6
|
-
import { content as es } from './i18n/es';
|
|
7
|
-
import { content as en } from './i18n/en';
|
|
8
|
-
import { content as fr } from './i18n/fr';
|
|
9
|
-
import { content as de } from './i18n/de';
|
|
10
|
-
import { content as it } from './i18n/it';
|
|
11
|
-
import { content as ja } from './i18n/ja';
|
|
12
|
-
import { content as ko } from './i18n/ko';
|
|
13
|
-
import { content as nl } from './i18n/nl';
|
|
14
|
-
import { content as pl } from './i18n/pl';
|
|
15
|
-
import { content as pt } from './i18n/pt';
|
|
16
|
-
import { content as ru } from './i18n/ru';
|
|
17
|
-
import { content as sv } from './i18n/sv';
|
|
18
|
-
import { content as tr } from './i18n/tr';
|
|
19
|
-
import { content as zh } from './i18n/zh';
|
|
20
|
-
import { content as id } from './i18n/id';
|
|
21
|
-
|
|
22
|
-
export const inspectorCertificadosSsl: DeveloperToolEntry<InspectorCertificadosSslUI> = {
|
|
23
|
-
id: 'inspector-certificados-ssl',
|
|
24
|
-
icons: {
|
|
25
|
-
bg: 'mdi:security',
|
|
26
|
-
fg: 'mdi:certificate',
|
|
27
|
-
},
|
|
28
|
-
i18n: {
|
|
29
|
-
es: async () => es,
|
|
30
|
-
en: async () => en,
|
|
31
|
-
fr: async () => fr,
|
|
32
|
-
de: async () => de,
|
|
33
|
-
it: async () => it,
|
|
34
|
-
ja: async () => ja,
|
|
35
|
-
ko: async () => ko,
|
|
36
|
-
nl: async () => nl,
|
|
37
|
-
pl: async () => pl,
|
|
38
|
-
pt: async () => pt,
|
|
39
|
-
ru: async () => ru,
|
|
40
|
-
sv: async () => sv,
|
|
41
|
-
tr: async () => tr,
|
|
42
|
-
zh: async () => zh,
|
|
43
|
-
id: async () => id,
|
|
44
|
-
},
|
|
45
|
-
};
|
|
46
|
-
|
|
47
|
-
|
|
1
|
+
import { inspectorCertificadosSsl } from './entry';
|
|
2
|
+
export * from './entry';
|
|
48
3
|
export const INSPECTOR_CERTIFICADOS_SSL_TOOL: ToolDefinition = {
|
|
49
4
|
entry: inspectorCertificadosSsl,
|
|
50
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
import type { JsonFormatterUI } from './ui';
|
|
4
|
+
|
|
5
|
+
export type JsonFormatterLocaleContent = ToolLocaleContent<JsonFormatterUI>;
|
|
6
|
+
|
|
7
|
+
export const jsonFormatter: DeveloperToolEntry<JsonFormatterUI> = {
|
|
8
|
+
id: 'json-formatter',
|
|
9
|
+
icons: {
|
|
10
|
+
bg: 'mdi:code-json',
|
|
11
|
+
fg: 'mdi:code-braces',
|
|
12
|
+
},
|
|
13
|
+
i18n: {
|
|
14
|
+
de: async () => (await import('./i18n/de')).content,
|
|
15
|
+
en: async () => (await import('./i18n/en')).content,
|
|
16
|
+
es: async () => (await import('./i18n/es')).content,
|
|
17
|
+
fr: async () => (await import('./i18n/fr')).content,
|
|
18
|
+
id: async () => (await import('./i18n/id')).content,
|
|
19
|
+
it: async () => (await import('./i18n/it')).content,
|
|
20
|
+
ja: async () => (await import('./i18n/ja')).content,
|
|
21
|
+
ko: async () => (await import('./i18n/ko')).content,
|
|
22
|
+
nl: async () => (await import('./i18n/nl')).content,
|
|
23
|
+
pl: async () => (await import('./i18n/pl')).content,
|
|
24
|
+
pt: async () => (await import('./i18n/pt')).content,
|
|
25
|
+
ru: async () => (await import('./i18n/ru')).content,
|
|
26
|
+
sv: async () => (await import('./i18n/sv')).content,
|
|
27
|
+
tr: async () => (await import('./i18n/tr')).content,
|
|
28
|
+
zh: async () => (await import('./i18n/zh')).content,
|
|
29
|
+
},
|
|
30
|
+
};
|
|
@@ -1,35 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import type { JsonFormatterUI } from './ui';
|
|
4
|
-
|
|
5
|
-
export type JsonFormatterLocaleContent = ToolLocaleContent<JsonFormatterUI>;
|
|
6
|
-
|
|
7
|
-
export const jsonFormatter: DeveloperToolEntry<JsonFormatterUI> = {
|
|
8
|
-
id: 'json-formatter',
|
|
9
|
-
icons: {
|
|
10
|
-
bg: 'mdi:code-json',
|
|
11
|
-
fg: 'mdi:code-braces',
|
|
12
|
-
},
|
|
13
|
-
i18n: {
|
|
14
|
-
de: async () => (await import('./i18n/de')).content,
|
|
15
|
-
en: async () => (await import('./i18n/en')).content,
|
|
16
|
-
es: async () => (await import('./i18n/es')).content,
|
|
17
|
-
fr: async () => (await import('./i18n/fr')).content,
|
|
18
|
-
id: async () => (await import('./i18n/id')).content,
|
|
19
|
-
it: async () => (await import('./i18n/it')).content,
|
|
20
|
-
ja: async () => (await import('./i18n/ja')).content,
|
|
21
|
-
ko: async () => (await import('./i18n/ko')).content,
|
|
22
|
-
nl: async () => (await import('./i18n/nl')).content,
|
|
23
|
-
pl: async () => (await import('./i18n/pl')).content,
|
|
24
|
-
pt: async () => (await import('./i18n/pt')).content,
|
|
25
|
-
ru: async () => (await import('./i18n/ru')).content,
|
|
26
|
-
sv: async () => (await import('./i18n/sv')).content,
|
|
27
|
-
tr: async () => (await import('./i18n/tr')).content,
|
|
28
|
-
zh: async () => (await import('./i18n/zh')).content,
|
|
29
|
-
},
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
|
|
1
|
+
import { jsonFormatter } from './entry';
|
|
2
|
+
export * from './entry';
|
|
33
3
|
export const JSON_FORMATTER_TOOL: ToolDefinition = {
|
|
34
4
|
entry: jsonFormatter,
|
|
35
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
import type { KeycodeUI } from './ui';
|
|
4
|
+
|
|
5
|
+
export type KeycodeLocaleContent = ToolLocaleContent<KeycodeUI>;
|
|
6
|
+
|
|
7
|
+
export const keycode: DeveloperToolEntry<KeycodeUI> = {
|
|
8
|
+
id: 'keycode',
|
|
9
|
+
icons: {
|
|
10
|
+
bg: 'mdi:keyboard-outline',
|
|
11
|
+
fg: 'mdi:code-braces',
|
|
12
|
+
},
|
|
13
|
+
i18n: {
|
|
14
|
+
de: async () => (await import('./i18n/de')).content,
|
|
15
|
+
en: async () => (await import('./i18n/en')).content,
|
|
16
|
+
es: async () => (await import('./i18n/es')).content,
|
|
17
|
+
fr: async () => (await import('./i18n/fr')).content,
|
|
18
|
+
id: async () => (await import('./i18n/id')).content,
|
|
19
|
+
it: async () => (await import('./i18n/it')).content,
|
|
20
|
+
ja: async () => (await import('./i18n/ja')).content,
|
|
21
|
+
ko: async () => (await import('./i18n/ko')).content,
|
|
22
|
+
nl: async () => (await import('./i18n/nl')).content,
|
|
23
|
+
pl: async () => (await import('./i18n/pl')).content,
|
|
24
|
+
pt: async () => (await import('./i18n/pt')).content,
|
|
25
|
+
ru: async () => (await import('./i18n/ru')).content,
|
|
26
|
+
sv: async () => (await import('./i18n/sv')).content,
|
|
27
|
+
tr: async () => (await import('./i18n/tr')).content,
|
|
28
|
+
zh: async () => (await import('./i18n/zh')).content,
|
|
29
|
+
},
|
|
30
|
+
};
|
|
@@ -1,35 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import type { KeycodeUI } from './ui';
|
|
4
|
-
|
|
5
|
-
export type KeycodeLocaleContent = ToolLocaleContent<KeycodeUI>;
|
|
6
|
-
|
|
7
|
-
export const keycode: DeveloperToolEntry<KeycodeUI> = {
|
|
8
|
-
id: 'keycode',
|
|
9
|
-
icons: {
|
|
10
|
-
bg: 'mdi:keyboard-outline',
|
|
11
|
-
fg: 'mdi:code-braces',
|
|
12
|
-
},
|
|
13
|
-
i18n: {
|
|
14
|
-
de: async () => (await import('./i18n/de')).content,
|
|
15
|
-
en: async () => (await import('./i18n/en')).content,
|
|
16
|
-
es: async () => (await import('./i18n/es')).content,
|
|
17
|
-
fr: async () => (await import('./i18n/fr')).content,
|
|
18
|
-
id: async () => (await import('./i18n/id')).content,
|
|
19
|
-
it: async () => (await import('./i18n/it')).content,
|
|
20
|
-
ja: async () => (await import('./i18n/ja')).content,
|
|
21
|
-
ko: async () => (await import('./i18n/ko')).content,
|
|
22
|
-
nl: async () => (await import('./i18n/nl')).content,
|
|
23
|
-
pl: async () => (await import('./i18n/pl')).content,
|
|
24
|
-
pt: async () => (await import('./i18n/pt')).content,
|
|
25
|
-
ru: async () => (await import('./i18n/ru')).content,
|
|
26
|
-
sv: async () => (await import('./i18n/sv')).content,
|
|
27
|
-
tr: async () => (await import('./i18n/tr')).content,
|
|
28
|
-
zh: async () => (await import('./i18n/zh')).content,
|
|
29
|
-
},
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
|
|
1
|
+
import { keycode } from './entry';
|
|
2
|
+
export * from './entry';
|
|
33
3
|
export const KEYCODE_TOOL: ToolDefinition = {
|
|
34
4
|
entry: keycode,
|
|
35
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
|
|
3
|
+
import type { LlmCostCalculatorUI } from './ui';
|
|
4
|
+
|
|
5
|
+
export type LlmCostCalculatorLocaleContent = ToolLocaleContent<LlmCostCalculatorUI>;
|
|
6
|
+
|
|
7
|
+
import { content as es } from './i18n/es';
|
|
8
|
+
import { content as en } from './i18n/en';
|
|
9
|
+
import { content as fr } from './i18n/fr';
|
|
10
|
+
import { content as de } from './i18n/de';
|
|
11
|
+
import { content as id } from './i18n/id';
|
|
12
|
+
import { content as it } from './i18n/it';
|
|
13
|
+
import { content as ja } from './i18n/ja';
|
|
14
|
+
import { content as ko } from './i18n/ko';
|
|
15
|
+
import { content as nl } from './i18n/nl';
|
|
16
|
+
import { content as pl } from './i18n/pl';
|
|
17
|
+
import { content as pt } from './i18n/pt';
|
|
18
|
+
import { content as ru } from './i18n/ru';
|
|
19
|
+
import { content as sv } from './i18n/sv';
|
|
20
|
+
import { content as tr } from './i18n/tr';
|
|
21
|
+
import { content as zh } from './i18n/zh';
|
|
22
|
+
|
|
23
|
+
export const llmCostCalculator: DeveloperToolEntry<LlmCostCalculatorUI> = {
|
|
24
|
+
id: 'llm-cost-calculator',
|
|
25
|
+
icons: {
|
|
26
|
+
bg: 'mdi:currency-usd',
|
|
27
|
+
fg: 'mdi:robot-outline',
|
|
28
|
+
},
|
|
29
|
+
i18n: {
|
|
30
|
+
es: async () => es,
|
|
31
|
+
en: async () => en,
|
|
32
|
+
fr: async () => fr,
|
|
33
|
+
de: async () => de,
|
|
34
|
+
id: async () => id,
|
|
35
|
+
it: async () => it,
|
|
36
|
+
ja: async () => ja,
|
|
37
|
+
ko: async () => ko,
|
|
38
|
+
nl: async () => nl,
|
|
39
|
+
pl: async () => pl,
|
|
40
|
+
pt: async () => pt,
|
|
41
|
+
ru: async () => ru,
|
|
42
|
+
sv: async () => sv,
|
|
43
|
+
tr: async () => tr,
|
|
44
|
+
zh: async () => zh,
|
|
45
|
+
},
|
|
46
|
+
};
|
|
@@ -1,51 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import type { LlmCostCalculatorUI } from './ui';
|
|
4
|
-
|
|
5
|
-
export type LlmCostCalculatorLocaleContent = ToolLocaleContent<LlmCostCalculatorUI>;
|
|
6
|
-
|
|
7
|
-
import { content as es } from './i18n/es';
|
|
8
|
-
import { content as en } from './i18n/en';
|
|
9
|
-
import { content as fr } from './i18n/fr';
|
|
10
|
-
import { content as de } from './i18n/de';
|
|
11
|
-
import { content as id } from './i18n/id';
|
|
12
|
-
import { content as it } from './i18n/it';
|
|
13
|
-
import { content as ja } from './i18n/ja';
|
|
14
|
-
import { content as ko } from './i18n/ko';
|
|
15
|
-
import { content as nl } from './i18n/nl';
|
|
16
|
-
import { content as pl } from './i18n/pl';
|
|
17
|
-
import { content as pt } from './i18n/pt';
|
|
18
|
-
import { content as ru } from './i18n/ru';
|
|
19
|
-
import { content as sv } from './i18n/sv';
|
|
20
|
-
import { content as tr } from './i18n/tr';
|
|
21
|
-
import { content as zh } from './i18n/zh';
|
|
22
|
-
|
|
23
|
-
export const llmCostCalculator: DeveloperToolEntry<LlmCostCalculatorUI> = {
|
|
24
|
-
id: 'llm-cost-calculator',
|
|
25
|
-
icons: {
|
|
26
|
-
bg: 'mdi:currency-usd',
|
|
27
|
-
fg: 'mdi:robot-outline',
|
|
28
|
-
},
|
|
29
|
-
i18n: {
|
|
30
|
-
es: async () => es,
|
|
31
|
-
en: async () => en,
|
|
32
|
-
fr: async () => fr,
|
|
33
|
-
de: async () => de,
|
|
34
|
-
id: async () => id,
|
|
35
|
-
it: async () => it,
|
|
36
|
-
ja: async () => ja,
|
|
37
|
-
ko: async () => ko,
|
|
38
|
-
nl: async () => nl,
|
|
39
|
-
pl: async () => pl,
|
|
40
|
-
pt: async () => pt,
|
|
41
|
-
ru: async () => ru,
|
|
42
|
-
sv: async () => sv,
|
|
43
|
-
tr: async () => tr,
|
|
44
|
-
zh: async () => zh,
|
|
45
|
-
},
|
|
46
|
-
};
|
|
47
|
-
|
|
48
|
-
|
|
1
|
+
import { llmCostCalculator } from './entry';
|
|
2
|
+
export * from './entry';
|
|
49
3
|
export const LLM_COST_CALCULATOR_TOOL: ToolDefinition = {
|
|
50
4
|
entry: llmCostCalculator,
|
|
51
5
|
Component: () => import('./component.astro'),
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { DeveloperToolEntry, ToolLocaleContent } from '../../types';
|
|
2
|
+
import type { MobileMockupGeneratorUI } from './ui';
|
|
3
|
+
|
|
4
|
+
export type MobileMockupGeneratorLocaleContent = ToolLocaleContent<MobileMockupGeneratorUI>;
|
|
5
|
+
|
|
6
|
+
import { content as es } from './i18n/es';
|
|
7
|
+
import { content as en } from './i18n/en';
|
|
8
|
+
import { content as fr } from './i18n/fr';
|
|
9
|
+
import { content as de } from './i18n/de';
|
|
10
|
+
import { content as id } from './i18n/id';
|
|
11
|
+
import { content as it } from './i18n/it';
|
|
12
|
+
import { content as ja } from './i18n/ja';
|
|
13
|
+
import { content as ko } from './i18n/ko';
|
|
14
|
+
import { content as nl } from './i18n/nl';
|
|
15
|
+
import { content as pl } from './i18n/pl';
|
|
16
|
+
import { content as pt } from './i18n/pt';
|
|
17
|
+
import { content as ru } from './i18n/ru';
|
|
18
|
+
import { content as sv } from './i18n/sv';
|
|
19
|
+
import { content as tr } from './i18n/tr';
|
|
20
|
+
import { content as zh } from './i18n/zh';
|
|
21
|
+
|
|
22
|
+
export const mobileMockupGenerator: DeveloperToolEntry<MobileMockupGeneratorUI> = {
|
|
23
|
+
id: 'mobile-mockup-generator',
|
|
24
|
+
icons: {
|
|
25
|
+
bg: 'mdi:cellphone',
|
|
26
|
+
fg: 'mdi:image-frame',
|
|
27
|
+
},
|
|
28
|
+
i18n: {
|
|
29
|
+
es: async () => es,
|
|
30
|
+
en: async () => en,
|
|
31
|
+
fr: async () => fr,
|
|
32
|
+
de: async () => de,
|
|
33
|
+
id: async () => id,
|
|
34
|
+
it: async () => it,
|
|
35
|
+
ja: async () => ja,
|
|
36
|
+
ko: async () => ko,
|
|
37
|
+
nl: async () => nl,
|
|
38
|
+
pl: async () => pl,
|
|
39
|
+
pt: async () => pt,
|
|
40
|
+
ru: async () => ru,
|
|
41
|
+
sv: async () => sv,
|
|
42
|
+
tr: async () => tr,
|
|
43
|
+
zh: async () => zh,
|
|
44
|
+
},
|
|
45
|
+
};
|