aboutsummaryrefslogtreecommitdiff
path: root/src/tools/json-minify/index.ts
blob: e6a02dbeaaba131d6cc31287b88d328c442a015f (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 minify',
  path: '/json-minify',
  description: 'Minify and compress your JSON by removing unnecessary white spaces.',
  keywords: ['json', 'minify', 'format'],
  component: () => import('./json-minify.vue'),
  icon: Braces,
});