mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
feat: add JSON comparison tool
This commit is contained in:
13
src/pages/tools/json/json-comparison/meta.ts
Normal file
13
src/pages/tools/json/json-comparison/meta.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
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'))
|
||||
});
|
||||
Reference in New Issue
Block a user