mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
14 lines
502 B
TypeScript
14 lines
502 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('json', {
|
||
|
|
name: 'Compare JSON',
|
||
|
|
path: 'json-comparison',
|
||
|
|
icon: 'fluent:branch-compare-24-regular',
|
||
|
|
description:
|
||
|
|
'Compare two JSON objects to identify differences in structure and values.',
|
||
|
|
shortDescription: 'Find differences between two JSON objects',
|
||
|
|
keywords: ['json', 'compare', 'diff', 'differences', 'match', 'validation'],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|