@jjlmoya/utils-developer 1.23.0 → 1.24.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 +1 -1
- package/src/category/index.ts +23 -23
package/package.json
CHANGED
package/src/category/index.ts
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import type { DeveloperCategoryEntry } from '../types';
|
|
2
|
-
import { jsonFormatter } from '../tool/jsonFormatter/
|
|
3
|
-
import { svgToCss } from '../tool/svgToCss/
|
|
4
|
-
import { aspectRatio } from '../tool/aspectRatio/
|
|
5
|
-
import { placeholderGenerator } from '../tool/placeholderGenerator/
|
|
6
|
-
import { urlEncoderDecoder } from '../tool/urlEncoderDecoder/
|
|
7
|
-
import { duplicateCssRemover } from '../tool/duplicateCssRemover/
|
|
8
|
-
import { cssToInlineConverter } from '../tool/cssToInlineConverter/
|
|
9
|
-
import { cssSpecificityCalculator } from '../tool/cssSpecificityCalculator/
|
|
10
|
-
import { cronGenerator } from '../tool/cronGenerator/
|
|
11
|
-
import { keycode } from '../tool/keycode/
|
|
12
|
-
import { llmCostCalculator } from '../tool/llmCostCalculator/
|
|
13
|
-
import { musicalTypography } from '../tool/musicalTypography/
|
|
14
|
-
import { mobileMockupGenerator } from '../tool/mobileMockupGenerator/
|
|
15
|
-
import { hashGenerator } from '../tool/hashGenerator/
|
|
16
|
-
import { promptLibrary } from '../tool/promptLibrary/
|
|
17
|
-
import { colorConverter } from '../tool/colorConverter/
|
|
18
|
-
import { readabilityCalculator } from '../tool/readabilityCalculator/
|
|
19
|
-
import { svgSanitizer } from '../tool/svgSanitizer/
|
|
20
|
-
import { utmGenerator } from '../tool/utmGenerator/
|
|
21
|
-
import { urlCleaner } from '../tool/urlCleaner/
|
|
22
|
-
import { serpPixelSimulator } from '../tool/serpPixelSimulator/
|
|
23
|
-
import { jwtDecoder } from '../tool/jwtDecoder/
|
|
24
|
-
import { visualCssGridFlexboxGenerator } from '../tool/visualCssGridFlexboxGenerator/
|
|
2
|
+
import { jsonFormatter } from '../tool/jsonFormatter/entry';
|
|
3
|
+
import { svgToCss } from '../tool/svgToCss/entry';
|
|
4
|
+
import { aspectRatio } from '../tool/aspectRatio/entry';
|
|
5
|
+
import { placeholderGenerator } from '../tool/placeholderGenerator/entry';
|
|
6
|
+
import { urlEncoderDecoder } from '../tool/urlEncoderDecoder/entry';
|
|
7
|
+
import { duplicateCssRemover } from '../tool/duplicateCssRemover/entry';
|
|
8
|
+
import { cssToInlineConverter } from '../tool/cssToInlineConverter/entry';
|
|
9
|
+
import { cssSpecificityCalculator } from '../tool/cssSpecificityCalculator/entry';
|
|
10
|
+
import { cronGenerator } from '../tool/cronGenerator/entry';
|
|
11
|
+
import { keycode } from '../tool/keycode/entry';
|
|
12
|
+
import { llmCostCalculator } from '../tool/llmCostCalculator/entry';
|
|
13
|
+
import { musicalTypography } from '../tool/musicalTypography/entry';
|
|
14
|
+
import { mobileMockupGenerator } from '../tool/mobileMockupGenerator/entry';
|
|
15
|
+
import { hashGenerator } from '../tool/hashGenerator/entry';
|
|
16
|
+
import { promptLibrary } from '../tool/promptLibrary/entry';
|
|
17
|
+
import { colorConverter } from '../tool/colorConverter/entry';
|
|
18
|
+
import { readabilityCalculator } from '../tool/readabilityCalculator/entry';
|
|
19
|
+
import { svgSanitizer } from '../tool/svgSanitizer/entry';
|
|
20
|
+
import { utmGenerator } from '../tool/utmGenerator/entry';
|
|
21
|
+
import { urlCleaner } from '../tool/urlCleaner/entry';
|
|
22
|
+
import { serpPixelSimulator } from '../tool/serpPixelSimulator/entry';
|
|
23
|
+
import { jwtDecoder } from '../tool/jwtDecoder/entry';
|
|
24
|
+
import { visualCssGridFlexboxGenerator } from '../tool/visualCssGridFlexboxGenerator/entry';
|
|
25
25
|
|
|
26
26
|
export const developerCategory: DeveloperCategoryEntry = {
|
|
27
27
|
icon: 'mdi:code-tags',
|