aboutsummaryrefslogtreecommitdiff
path: root/src/tools/json-to-toml/index.ts
blob: 13e45eaf4554e6cb322642fa9d6e4f742b3ad84b (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 TOML',
  path: '/json-to-toml',
  description: 'Parse and convert JSON to TOML.',
  keywords: ['json', 'parse', 'toml', 'convert', 'transform'],
  component: () => import('./json-to-toml.vue'),
  icon: Braces,
  createdAt: new Date('2023-06-23'),
});