mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
11 lines
353 B
TypeScript
11 lines
353 B
TypeScript
import { Braces } from '@vicons/tabler';
|
|
import type { ITool } from '../tool';
|
|
|
|
export const tool: ITool = {
|
|
name: 'JSON viewer',
|
|
path: '/json-viewer',
|
|
description: 'Prettify JSON string to a human friendly readable format.',
|
|
keywords: ['json', 'viewer', 'prettify', 'format'],
|
|
component: () => import('./json-viewer.vue'),
|
|
icon: Braces,
|
|
};
|