mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 14:39:34 +02:00
16 lines
420 B
TypeScript
16 lines
420 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('json', {
|
|
path: 'minify',
|
|
icon: 'material-symbols:code',
|
|
|
|
keywords: ['json', 'minify', 'compress', 'whitespace'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'json:minify.title',
|
|
description: 'json:minify.description',
|
|
shortDescription: 'json:minify.shortDescription'
|
|
}
|
|
});
|