aboutsummaryrefslogtreecommitdiff
path: root/src/tools/json-to-yaml-converter/index.ts
blob: 9db09d3eb278c77d92559d88e06194d86aa320a4 (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 to YAML converter',
  path: '/json-to-yaml-converter',
  description: 'Simply convert JSON to YAML with this live online converter.',
  keywords: ['yaml', 'to', 'json'],
  component: () => import('./json-to-yaml.vue'),
  icon: Braces,
  createdAt: new Date('2023-04-10'),
});