aboutsummaryrefslogtreecommitdiff
path: root/src/tools/yaml-to-json-converter/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/yaml-to-json-converter/index.ts')
-rw-r--r--src/tools/yaml-to-json-converter/index.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/yaml-to-json-converter/index.ts b/src/tools/yaml-to-json-converter/index.ts
new file mode 100644
index 0000000..724ecdb
--- /dev/null
+++ b/src/tools/yaml-to-json-converter/index.ts
@@ -0,0 +1,12 @@
+import { AlignJustified } from '@vicons/tabler';
+import { defineTool } from '../tool';
+
+export const tool = defineTool({
+ name: 'YAML to JSON converter',
+ path: '/yaml-to-json-converter',
+ description: 'Simply convert YAML to JSON with this live online converter.',
+ keywords: ['yaml', 'to', 'json'],
+ component: () => import('./yaml-to-json.vue'),
+ icon: AlignJustified,
+ createdAt: new Date('2023-04-10'),
+});