mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-07 21:53:07 -04:00
use subpath import maps
This commit is contained in:
parent
3c087fd648
commit
cf6fb6da9a
115 changed files with 708 additions and 664 deletions
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { imtranslator } = require('#api');
|
||||
const { IMTRANSLATOR_VOICES } = require('#constants');
|
||||
|
||||
const { imtranslator } = require('../../../../labscore/api');
|
||||
const { IMTRANSLATOR_VOICES } = require('../../../../labscore/constants');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../labscore/utils/markdown');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
module.exports = {
|
||||
description: 'Text to Speech with imtranslator voices',
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { sapi4 } = require('#api');
|
||||
const { MICROSOFT_VOICES, MICROSOFT_VOICE_CONFIG } = require('#constants');
|
||||
|
||||
const { sapi4 } = require('../../../../labscore/api');
|
||||
const { MICROSOFT_VOICES, MICROSOFT_VOICE_CONFIG } = require('../../../../labscore/constants');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../labscore/utils/markdown');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
module.exports = {
|
||||
description: 'Text to Speech with microsoft voices',
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { moonbase } = require('#api');
|
||||
|
||||
const { moonbase } = require('../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../labscore/utils/markdown');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
module.exports = {
|
||||
description: 'Moonbase Alpha text to speech voices',
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { playht } = require('#api');
|
||||
const { PLAYHT_VOICES } = require('#constants');
|
||||
|
||||
const { playht } = require('../../../../labscore/api');
|
||||
const { PLAYHT_VOICES } = require('../../../../labscore/constants');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../labscore/utils/markdown');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
module.exports = {
|
||||
description: 'Text to Speech with playht voices',
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_CHARACTERS } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_CHARACTERS } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_CHARACTERS)) voices.unshift({
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_FRENCH } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_FRENCH } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_FRENCH)) voices.unshift({
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_GERMAN } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_GERMAN } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_GERMAN)) voices.unshift({
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_INDONESIAN } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_INDONESIAN } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_INDONESIAN)) voices.unshift({
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_ITALIAN } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_ITALIAN } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_ITALIAN)) voices.unshift({
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_JAPANESE } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_JAPANESE } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_JAPANESE)) voices.unshift({
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_KOREAN } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_KOREAN } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_KOREAN)) voices.unshift({
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_POP_CULTURE } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_POP_CULTURE } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_POP_CULTURE)) voices.unshift({
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_PORTUGESE } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_PORTUGESE } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_PORTUGESE)) voices.unshift({
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_SONG } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_SONG } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_SONG)) voices.unshift({
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
const { Constants } = require('detritus-client');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = Constants;
|
||||
const { tiktok } = require('#api');
|
||||
const { TIKTOK_VOICES_SPANISH } = require('#constants');
|
||||
|
||||
const { tiktok } = require('../../../../../labscore/api');
|
||||
const { createEmbed } = require('#utils/embed');
|
||||
const { icon, highlight } = require('#utils/markdown');
|
||||
|
||||
const { createEmbed } = require('../../../../../labscore/utils/embed');
|
||||
const { icon, highlight } = require('../../../../../labscore/utils/markdown');
|
||||
const { TIKTOK_VOICES_SPANISH } = require('../../../../../labscore/constants');
|
||||
const { InteractionCallbackTypes, ApplicationCommandOptionTypes } = require('detritus-client/lib/constants');
|
||||
|
||||
let voices = []
|
||||
for(const k of Object.keys(TIKTOK_VOICES_SPANISH)) voices.unshift({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue