├── .dockerignore ├── .editorconfig ├── .env.example ├── .github ├── FUNDING.yml └── workflows │ ├── automerge.yml │ └── ncu.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── images ├── SkypeToTelegram.png └── SkypeToTelegram.sketch ├── package.json ├── src ├── index.ts └── utils.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | node_modules 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/ncu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/.github/workflows/ncu.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /images/SkypeToTelegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/images/SkypeToTelegram.png -------------------------------------------------------------------------------- /images/SkypeToTelegram.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/images/SkypeToTelegram.sketch -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/skype-to-telegram/HEAD/yarn.lock --------------------------------------------------------------------------------