Skip to content

Commit 5441b26

Browse files
committed
feat: add npmPackages
1 parent c2e55b1 commit 5441b26

File tree

43 files changed

+43
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+43
-0
lines changed

src/tools/ascii-text-drawer/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ export const tool = defineTool({
99
component: () => import('./ascii-text-drawer.vue'),
1010
icon: Artboard,
1111
createdAt: new Date('2024-03-03'),
12+
npmPackages: ['figlet'],
1213
});

src/tools/base64-file-converter/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ export const tool = defineTool({
99
keywords: ['base64', 'converter', 'upload', 'image', 'file', 'conversion', 'web', 'data', 'format'],
1010
component: () => import('./base64-file-converter.vue'),
1111
icon: FileDigit,
12+
npmPackages: ['js-base64'],
1213
});

src/tools/base64-string-converter/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ export const tool = defineTool({
1010
component: () => import('./base64-string-converter.vue'),
1111
icon: FileDigit,
1212
redirectFrom: ['/file-to-base64', '/base64-converter'],
13+
npmPackages: ['js-base64'],
1314
});

src/tools/bcrypt/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ export const tool = defineTool({
99
keywords: ['bcrypt', 'hash', 'compare', 'password', 'salt', 'round', 'storage', 'crypto'],
1010
component: () => import('./bcrypt.vue'),
1111
icon: LockSquare,
12+
npmPackages: ['bcryptjs'],
1213
});

src/tools/bip39-generator/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ export const tool = defineTool({
99
keywords: ['BIP39', 'passphrase', 'generator', 'mnemonic', 'entropy'],
1010
component: () => import('./bip39-generator.vue'),
1111
icon: AlignJustified,
12+
npmPackages: ['@it-tools/bip39'],
1213
});

src/tools/case-converter/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ export const tool = defineTool({
2323
],
2424
component: () => import('./case-converter.vue'),
2525
icon: LetterCaseToggle,
26+
npmPackages: ['change-case'],
2627
});

src/tools/color-converter/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ export const tool = defineTool({
1010
component: () => import('./color-converter.vue'),
1111
icon: Palette,
1212
redirectFrom: ['/color-picker-converter'],
13+
npmPackages: ['colord'],
1314
});

src/tools/crontab-generator/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ export const tool = defineTool({
2323
],
2424
component: () => import('./crontab-generator.vue'),
2525
icon: Alarm,
26+
npmPackages: ['cronstrue'],
2627
});

src/tools/date-time-converter/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ export const tool = defineTool({
99
keywords: ['date', 'time', 'converter', 'iso', 'utc', 'timezone', 'year', 'month', 'day', 'minute', 'seconde'],
1010
component: () => import('./date-time-converter.vue'),
1111
icon: Calendar,
12+
npmPackages: ['date-fns'],
1213
});

src/tools/emoji-picker/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ export const tool = defineTool({
1010
component: () => import('./emoji-picker.vue'),
1111
icon: MoodSmile,
1212
createdAt: new Date('2023-08-07'),
13+
npmPackages: ['unicode-emoji-json', 'emojilib'],
1314
});

0 commit comments

Comments
 (0)