feat: minify json

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-08 06:43:11 +00:00
parent 4a956bf916
commit 90d3c0801e
10 changed files with 211 additions and 103 deletions

View File

@@ -0,0 +1,12 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('json', {
name: 'Minify JSON',
path: 'minify',
icon: 'lets-icons:json-light',
description: 'Minify your JSON by removing all unnecessary whitespace and formatting. This tool compresses JSON data to its smallest possible size while maintaining valid JSON structure.',
shortDescription: 'Remove all unnecessary whitespace from JSON data.',
keywords: ['minify', 'compress', 'minimize', 'json', 'compact'],
component: lazy(() => import('./index'))
});