19 lines
640 B
TypeScript
Raw Normal View History

2025-03-08 06:43:11 +00:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('json', {
name: 'Minify JSON',
path: 'minify',
2025-07-12 23:02:35 -07:00
icon: 'material-symbols:code',
2025-03-08 07:11:57 +00:00
description:
2025-07-12 23:02:35 -07:00
'Minify JSON data by removing unnecessary whitespace and formatting. Reduce file size while maintaining data integrity.',
shortDescription: 'Minify JSON by removing whitespace',
keywords: ['json', 'minify', 'compress', 'whitespace'],
component: lazy(() => import('./index')),
i18n: {
name: 'json.minify.name',
description: 'json.minify.description',
shortDescription: 'json.minify.shortDescription'
}
2025-03-08 06:43:11 +00:00
});