mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
19 lines
630 B
TypeScript
19 lines
630 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('json', {
|
|
name: 'TSV to JSON',
|
|
path: 'tsv-to-json',
|
|
icon: 'material-symbols:code',
|
|
description:
|
|
'Convert TSV (Tab-Separated Values) data to JSON format. Transform tabular data into structured JSON objects.',
|
|
shortDescription: 'Convert TSV to JSON format',
|
|
keywords: ['tsv', 'json', 'convert', 'tabular'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'json:tsvToJson.title',
|
|
description: 'json:tsvToJson.description',
|
|
shortDescription: 'json:tsvToJson.shortDescription'
|
|
}
|
|
});
|