From 69f0bd079fd824dc9e929ccbbaa6bcaab0c38a7c Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Sun, 18 Jun 2023 17:57:18 +0200 Subject: feat(new-tool): json to csv converter --- src/tools/json-to-csv/index.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/tools/json-to-csv/index.ts (limited to 'src/tools/json-to-csv/index.ts') diff --git a/src/tools/json-to-csv/index.ts b/src/tools/json-to-csv/index.ts new file mode 100644 index 0000000..acfef02 --- /dev/null +++ b/src/tools/json-to-csv/index.ts @@ -0,0 +1,12 @@ +import { List } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'JSON to CSV', + path: '/json-to-csv', + description: 'Convert JSON to CSV with automatic header detection.', + keywords: ['json', 'to', 'csv', 'convert'], + component: () => import('./json-to-csv.vue'), + icon: List, + createdAt: new Date('2023-06-18'), +}); -- cgit v1.2.3