feat: add JSON comparison tool

This commit is contained in:
Bhavesh Kshatriya
2025-07-15 15:22:10 +05:30
parent 2ff720629a
commit 91bc7ac122
5 changed files with 449 additions and 1 deletions

View 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'))
});