blob: 6b5b88120a8743d295062cb65e0d36e9c1f82e72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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'],
});
|