diff --git a/extension/.github/workflows/submit.yml b/.github/workflows/submit.yml similarity index 100% rename from extension/.github/workflows/submit.yml rename to .github/workflows/submit.yml diff --git a/extension/.gitignore b/.gitignore similarity index 100% rename from extension/.gitignore rename to .gitignore diff --git a/extension/.idea/.gitignore b/.idea/.gitignore similarity index 100% rename from extension/.idea/.gitignore rename to .idea/.gitignore diff --git a/extension/.idea/extension.iml b/.idea/extension.iml similarity index 100% rename from extension/.idea/extension.iml rename to .idea/extension.iml diff --git a/extension/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml similarity index 100% rename from extension/.idea/inspectionProfiles/Project_Default.xml rename to .idea/inspectionProfiles/Project_Default.xml diff --git a/extension/.idea/material_theme_project_new.xml b/.idea/material_theme_project_new.xml similarity index 100% rename from extension/.idea/material_theme_project_new.xml rename to .idea/material_theme_project_new.xml diff --git a/extension/.idea/modules.xml b/.idea/modules.xml similarity index 100% rename from extension/.idea/modules.xml rename to .idea/modules.xml diff --git a/extension/.idea/prettier.xml b/.idea/prettier.xml similarity index 100% rename from extension/.idea/prettier.xml rename to .idea/prettier.xml diff --git a/extension/.idea/vcs.xml b/.idea/vcs.xml similarity index 100% rename from extension/.idea/vcs.xml rename to .idea/vcs.xml diff --git a/extension/README.md b/README.md similarity index 100% rename from extension/README.md rename to README.md diff --git a/extension/assets/icon.png b/assets/icon.png similarity index 100% rename from extension/assets/icon.png rename to assets/icon.png diff --git a/extension/biome.jsonc b/biome.jsonc similarity index 100% rename from extension/biome.jsonc rename to biome.jsonc diff --git a/extension/components.json b/components.json similarity index 100% rename from extension/components.json rename to components.json diff --git a/extension/.env.example b/extension/.env.example deleted file mode 100644 index a6aef8d..0000000 --- a/extension/.env.example +++ /dev/null @@ -1,6 +0,0 @@ -# Twitch API -PLASMO_PUBLIC_TWITCH_CLIENT_ID="vfir3y164p9aiv3v6nkbsjg0wdx4za" -PLASMO_PUBLIC_TWITCH_API_URL="https://api.twitch.tv/helix/" - -# App API -PLASMO_PUBLIC_API_URL="https://twitch-extension.danielheart.dev" \ No newline at end of file diff --git a/extension/locales/en/messages.json b/locales/en/messages.json similarity index 100% rename from extension/locales/en/messages.json rename to locales/en/messages.json diff --git a/extension/locales/pt_BR/messages.json b/locales/pt_BR/messages.json similarity index 100% rename from extension/locales/pt_BR/messages.json rename to locales/pt_BR/messages.json diff --git a/extension/package.json b/package.json similarity index 100% rename from extension/package.json rename to package.json diff --git a/extension/pnpm-lock.yaml b/pnpm-lock.yaml similarity index 100% rename from extension/pnpm-lock.yaml rename to pnpm-lock.yaml diff --git a/extension/postcss.config.js b/postcss.config.js similarity index 100% rename from extension/postcss.config.js rename to postcss.config.js diff --git a/extension/src/background/index.ts b/src/background/index.ts similarity index 100% rename from extension/src/background/index.ts rename to src/background/index.ts diff --git a/extension/src/background/messages/oauth.ts b/src/background/messages/oauth.ts similarity index 100% rename from extension/src/background/messages/oauth.ts rename to src/background/messages/oauth.ts diff --git a/extension/src/config/env.ts b/src/config/env.ts similarity index 100% rename from extension/src/config/env.ts rename to src/config/env.ts diff --git a/extension/src/content.ts b/src/content.ts similarity index 100% rename from extension/src/content.ts rename to src/content.ts diff --git a/extension/src/popup.tsx b/src/popup.tsx similarity index 100% rename from extension/src/popup.tsx rename to src/popup.tsx diff --git a/extension/src/resources/components/about/about.tsx b/src/resources/components/about/about.tsx similarity index 100% rename from extension/src/resources/components/about/about.tsx rename to src/resources/components/about/about.tsx diff --git a/extension/src/resources/components/app/header.tsx b/src/resources/components/app/header.tsx similarity index 100% rename from extension/src/resources/components/app/header.tsx rename to src/resources/components/app/header.tsx diff --git a/extension/src/resources/components/app/mode-toggle.tsx b/src/resources/components/app/mode-toggle.tsx similarity index 100% rename from extension/src/resources/components/app/mode-toggle.tsx rename to src/resources/components/app/mode-toggle.tsx diff --git a/extension/src/resources/components/app/theme-provide.tsx b/src/resources/components/app/theme-provide.tsx similarity index 100% rename from extension/src/resources/components/app/theme-provide.tsx rename to src/resources/components/app/theme-provide.tsx diff --git a/extension/src/resources/components/auth/authenticate-button.tsx b/src/resources/components/auth/authenticate-button.tsx similarity index 100% rename from extension/src/resources/components/auth/authenticate-button.tsx rename to src/resources/components/auth/authenticate-button.tsx diff --git a/extension/src/resources/components/auth/hero.tsx b/src/resources/components/auth/hero.tsx similarity index 100% rename from extension/src/resources/components/auth/hero.tsx rename to src/resources/components/auth/hero.tsx diff --git a/extension/src/resources/components/settings/chat-appearance.tsx b/src/resources/components/settings/chat-appearance.tsx similarity index 100% rename from extension/src/resources/components/settings/chat-appearance.tsx rename to src/resources/components/settings/chat-appearance.tsx diff --git a/extension/src/resources/components/settings/profile-card.tsx b/src/resources/components/settings/profile-card.tsx similarity index 100% rename from extension/src/resources/components/settings/profile-card.tsx rename to src/resources/components/settings/profile-card.tsx diff --git a/extension/src/resources/components/settings/settings-form.tsx b/src/resources/components/settings/settings-form.tsx similarity index 100% rename from extension/src/resources/components/settings/settings-form.tsx rename to src/resources/components/settings/settings-form.tsx diff --git a/extension/src/resources/pages/auth.tsx b/src/resources/pages/auth.tsx similarity index 100% rename from extension/src/resources/pages/auth.tsx rename to src/resources/pages/auth.tsx diff --git a/extension/src/resources/pages/profile.tsx b/src/resources/pages/profile.tsx similarity index 100% rename from extension/src/resources/pages/profile.tsx rename to src/resources/pages/profile.tsx diff --git a/extension/src/resources/shad/components/ui/button.tsx b/src/resources/shad/components/ui/button.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/button.tsx rename to src/resources/shad/components/ui/button.tsx diff --git a/extension/src/resources/shad/components/ui/card.tsx b/src/resources/shad/components/ui/card.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/card.tsx rename to src/resources/shad/components/ui/card.tsx diff --git a/extension/src/resources/shad/components/ui/dialog.tsx b/src/resources/shad/components/ui/dialog.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/dialog.tsx rename to src/resources/shad/components/ui/dialog.tsx diff --git a/extension/src/resources/shad/components/ui/dropdown-menu.tsx b/src/resources/shad/components/ui/dropdown-menu.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/dropdown-menu.tsx rename to src/resources/shad/components/ui/dropdown-menu.tsx diff --git a/extension/src/resources/shad/components/ui/input.tsx b/src/resources/shad/components/ui/input.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/input.tsx rename to src/resources/shad/components/ui/input.tsx diff --git a/extension/src/resources/shad/components/ui/label.tsx b/src/resources/shad/components/ui/label.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/label.tsx rename to src/resources/shad/components/ui/label.tsx diff --git a/extension/src/resources/shad/components/ui/tabs.tsx b/src/resources/shad/components/ui/tabs.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/tabs.tsx rename to src/resources/shad/components/ui/tabs.tsx diff --git a/extension/src/resources/shad/components/ui/typography/h1.tsx b/src/resources/shad/components/ui/typography/h1.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/typography/h1.tsx rename to src/resources/shad/components/ui/typography/h1.tsx diff --git a/extension/src/resources/shad/components/ui/typography/h2.tsx b/src/resources/shad/components/ui/typography/h2.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/typography/h2.tsx rename to src/resources/shad/components/ui/typography/h2.tsx diff --git a/extension/src/resources/shad/components/ui/typography/h3.tsx b/src/resources/shad/components/ui/typography/h3.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/typography/h3.tsx rename to src/resources/shad/components/ui/typography/h3.tsx diff --git a/extension/src/resources/shad/components/ui/typography/h4.tsx b/src/resources/shad/components/ui/typography/h4.tsx similarity index 100% rename from extension/src/resources/shad/components/ui/typography/h4.tsx rename to src/resources/shad/components/ui/typography/h4.tsx diff --git a/extension/src/resources/shad/lib/utils.ts b/src/resources/shad/lib/utils.ts similarity index 100% rename from extension/src/resources/shad/lib/utils.ts rename to src/resources/shad/lib/utils.ts diff --git a/extension/src/scripting/components.ts b/src/scripting/components.ts similarity index 100% rename from extension/src/scripting/components.ts rename to src/scripting/components.ts diff --git a/extension/src/scripting/index.ts b/src/scripting/index.ts similarity index 100% rename from extension/src/scripting/index.ts rename to src/scripting/index.ts diff --git a/extension/src/scripting/observers/chat-observer.ts b/src/scripting/observers/chat-observer.ts similarity index 100% rename from extension/src/scripting/observers/chat-observer.ts rename to src/scripting/observers/chat-observer.ts diff --git a/extension/src/scripting/observers/popover-observer.ts b/src/scripting/observers/popover-observer.ts similarity index 100% rename from extension/src/scripting/observers/popover-observer.ts rename to src/scripting/observers/popover-observer.ts diff --git a/extension/src/scripting/queue.ts b/src/scripting/queue.ts similarity index 100% rename from extension/src/scripting/queue.ts rename to src/scripting/queue.ts diff --git a/extension/src/scripting/scripting.css b/src/scripting/scripting.css similarity index 100% rename from extension/src/scripting/scripting.css rename to src/scripting/scripting.css diff --git a/extension/src/scripting/watchers/page-watcher.ts b/src/scripting/watchers/page-watcher.ts similarity index 100% rename from extension/src/scripting/watchers/page-watcher.ts rename to src/scripting/watchers/page-watcher.ts diff --git a/extension/src/style.css b/src/style.css similarity index 100% rename from extension/src/style.css rename to src/style.css diff --git a/extension/src/types/types.d.ts b/src/types/types.d.ts similarity index 100% rename from extension/src/types/types.d.ts rename to src/types/types.d.ts diff --git a/extension/src/utils/i18nUtils.ts b/src/utils/i18nUtils.ts similarity index 100% rename from extension/src/utils/i18nUtils.ts rename to src/utils/i18nUtils.ts diff --git a/extension/tailwind.config.js b/tailwind.config.js similarity index 100% rename from extension/tailwind.config.js rename to tailwind.config.js diff --git a/extension/tsconfig.json b/tsconfig.json similarity index 100% rename from extension/tsconfig.json rename to tsconfig.json