mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
19 lines
657 B
TypeScript
19 lines
657 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('json', {
|
|
name: 'Escape JSON',
|
|
path: 'escape-json',
|
|
icon: 'material-symbols:code',
|
|
description:
|
|
'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'
|
|
}
|
|
});
|