gitextract_7hlm4j7g/ ├── .editorconfig ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ └── docs.yaml ├── .gitignore ├── .npmignore ├── .npmrc ├── .prettierrc ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs/ │ ├── .vitepress/ │ │ └── config.ts │ ├── index.md │ ├── installation.md │ └── properties.md ├── eslint.config.mjs ├── package.json ├── playground/ │ ├── app.vue │ ├── nuxt.config.ts │ ├── package.json │ ├── server/ │ │ └── tsconfig.json │ └── tsconfig.json ├── src/ │ ├── module.ts │ └── runtime/ │ ├── app/ │ │ └── composables/ │ │ └── session.ts │ ├── components/ │ │ └── TelegramLoginWidget.vue │ ├── server/ │ │ ├── api/ │ │ │ └── telegram/ │ │ │ ├── session.delete.ts │ │ │ └── session.get.ts │ │ └── tsconfig.json │ └── types/ │ └── session.ts ├── test/ │ ├── basic.test.ts │ └── fixtures/ │ └── basic/ │ ├── app.vue │ ├── nuxt.config.ts │ └── package.json └── tsconfig.json