blob: 23f1b8a5ef18c5b1204c9463729d3dba7fea22c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { Braces } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
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,
});
|