mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-11 00:21:29 -04:00
12 lines
412 B
TypeScript
12 lines
412 B
TypeScript
import { Braces } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'JSON prettify and format',
|
|
path: '/json-prettify',
|
|
description: 'Prettify your JSON string to a human friendly readable format.',
|
|
keywords: ['json', 'viewer', 'prettify', 'format'],
|
|
component: () => import('./json-viewer.vue'),
|
|
icon: Braces,
|
|
redirectFrom: ['/json-viewer'],
|
|
});
|