feat(new tool): JSON Size Analyzer

Fix #450
This commit is contained in:
sharevb 2024-09-28 11:20:01 +02:00 committed by ShareVB
parent 318fb6efb9
commit 3aa887ce54
9 changed files with 321 additions and 9 deletions

View file

@ -0,0 +1,12 @@
import { FileAnalytics } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Json Size Analyzer',
path: '/json-size-analyzer',
description: 'Measure JSON nodes relative weights',
keywords: ['json', 'size', 'analyzer'],
component: () => import('./json-size-analyzer.vue'),
icon: FileAnalytics,
createdAt: new Date('2024-07-14'),
});