it-tools/src/tools/json-viewer/index.ts

13 lines
412 B
TypeScript
Raw Normal View History

2022-05-09 17:41:42 +02:00
import { Braces } from '@vicons/tabler';
import { defineTool } from '../tool';
2022-05-09 17:41:42 +02:00
export const tool = defineTool({
name: 'JSON prettify and format',
path: '/json-prettify',
description: 'Prettify your JSON string to a human friendly readable format.',
2022-05-09 17:41:42 +02:00
keywords: ['json', 'viewer', 'prettify', 'format'],
component: () => import('./json-viewer.vue'),
icon: Braces,
redirectFrom: ['/json-viewer'],
});