2025-06-05 23:15:58 +01:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('json', {
|
2025-07-12 23:02:35 -07:00
|
|
|
name: 'TSV to JSON',
|
2025-06-05 23:15:58 +01:00
|
|
|
path: 'tsv-to-json',
|
2025-07-12 23:02:35 -07:00
|
|
|
icon: 'material-symbols:code',
|
2025-06-05 23:15:58 +01:00
|
|
|
description:
|
2025-07-12 23:02:35 -07:00
|
|
|
'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: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'json:tsvToJson.title',
|
|
|
|
|
description: 'json:tsvToJson.description',
|
|
|
|
|
shortDescription: 'json:tsvToJson.shortDescription'
|
2025-07-12 23:02:35 -07:00
|
|
|
}
|
2025-06-05 23:15:58 +01:00
|
|
|
});
|