├── .eslintrc.yml ├── .github ├── FUNDING.yml └── workflows │ └── autotests.yml ├── .gitignore ├── .hooks └── pre-push ├── LICENSE ├── README.md ├── batch-response-sample.json ├── index.cjs ├── index.d.ts ├── lib ├── defaults.cjs ├── languages.cjs ├── speak.cjs └── translation │ ├── TranslationResult.cjs │ ├── Translator.cjs │ ├── batchTranslate.cjs │ ├── singleTranslate.cjs │ └── translate.cjs ├── package.json ├── single-response-sample.json ├── test ├── .eslintrc.yml ├── Translator.test.mjs ├── batchTranslate.test.mjs ├── index.test-d.ts ├── languages.test.mjs ├── singleTranslate.test.mjs ├── speak.test.mjs └── translate.test.cjs └── tools └── updatelanguages.mjs /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/autotests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/.github/workflows/autotests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.hooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/.hooks/pre-push -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/README.md -------------------------------------------------------------------------------- /batch-response-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/batch-response-sample.json -------------------------------------------------------------------------------- /index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/index.cjs -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/index.d.ts -------------------------------------------------------------------------------- /lib/defaults.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/lib/defaults.cjs -------------------------------------------------------------------------------- /lib/languages.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/lib/languages.cjs -------------------------------------------------------------------------------- /lib/speak.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/lib/speak.cjs -------------------------------------------------------------------------------- /lib/translation/TranslationResult.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/lib/translation/TranslationResult.cjs -------------------------------------------------------------------------------- /lib/translation/Translator.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/lib/translation/Translator.cjs -------------------------------------------------------------------------------- /lib/translation/batchTranslate.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/lib/translation/batchTranslate.cjs -------------------------------------------------------------------------------- /lib/translation/singleTranslate.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/lib/translation/singleTranslate.cjs -------------------------------------------------------------------------------- /lib/translation/translate.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/lib/translation/translate.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/package.json -------------------------------------------------------------------------------- /single-response-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/single-response-sample.json -------------------------------------------------------------------------------- /test/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/test/.eslintrc.yml -------------------------------------------------------------------------------- /test/Translator.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/test/Translator.test.mjs -------------------------------------------------------------------------------- /test/batchTranslate.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/test/batchTranslate.test.mjs -------------------------------------------------------------------------------- /test/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/test/index.test-d.ts -------------------------------------------------------------------------------- /test/languages.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/test/languages.test.mjs -------------------------------------------------------------------------------- /test/singleTranslate.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/test/singleTranslate.test.mjs -------------------------------------------------------------------------------- /test/speak.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/test/speak.test.mjs -------------------------------------------------------------------------------- /test/translate.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/test/translate.test.cjs -------------------------------------------------------------------------------- /tools/updatelanguages.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanWelch/google-translate-api/HEAD/tools/updatelanguages.mjs --------------------------------------------------------------------------------