19 lines
657 B
TypeScript
Raw Normal View History

2025-03-29 18:01:50 +05:30
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('json', {
name: 'Escape JSON',
path: 'escape-json',
2025-07-12 23:02:35 -07:00
icon: 'material-symbols:code',
2025-03-29 18:01:50 +05:30
description:
2025-07-12 23:02:35 -07:00
'Escape special characters in JSON strings. Convert JSON data to properly escaped format for safe transmission or storage.',
shortDescription: 'Escape special characters in JSON',
keywords: ['json', 'escape', 'characters', 'format'],
component: lazy(() => import('./index')),
i18n: {
name: 'json.escapeJson.name',
description: 'json.escapeJson.description',
shortDescription: 'json.escapeJson.shortDescription'
}
2025-03-29 18:01:50 +05:30
});