aboutsummaryrefslogtreecommitdiff
path: root/src/tools/jwt-parser/index.ts
blob: 7249ace0720e144d40a6ad45a9bab7a5322ff1c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { Key } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'JWT parser',
  path: '/jwt-parser',
  description: 'Parse and decode your JSON Web Token (jwt) and display its content.',
  keywords: [
    'jwt',
    'parser',
    'decode',
    'typ',
    'alg',
    'iss',
    'sub',
    'aud',
    'exp',
    'nbf',
    'iat',
    'jti',
    'json',
    'web',
    'token',
  ],
  component: () => import('./jwt-parser.vue'),
  icon: Key,
});