├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── main.yml │ └── publish.yml ├── .gitignore ├── .nvmrc ├── .yarnrc.yml ├── LICENSE ├── README.md ├── biome.json ├── docs ├── API.md ├── POLYFILLS.md ├── V3-MIGRATION.md └── logos │ ├── microsoft.png │ └── speechly.png ├── package.json ├── src ├── NativeSpeechRecognition.js ├── RecognitionManager.js ├── SpeechRecognition.js ├── SpeechRecognition.test.js ├── actions.js ├── android.test.js ├── constants.js ├── index.js ├── isAndroid.js ├── isAndroid.test.js ├── reducers.js └── utils.js ├── tests └── vendor │ └── corti.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: jamesbrill 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/biome.json -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/docs/API.md -------------------------------------------------------------------------------- /docs/POLYFILLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/docs/POLYFILLS.md -------------------------------------------------------------------------------- /docs/V3-MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/docs/V3-MIGRATION.md -------------------------------------------------------------------------------- /docs/logos/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/docs/logos/microsoft.png -------------------------------------------------------------------------------- /docs/logos/speechly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/docs/logos/speechly.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/package.json -------------------------------------------------------------------------------- /src/NativeSpeechRecognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/NativeSpeechRecognition.js -------------------------------------------------------------------------------- /src/RecognitionManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/RecognitionManager.js -------------------------------------------------------------------------------- /src/SpeechRecognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/SpeechRecognition.js -------------------------------------------------------------------------------- /src/SpeechRecognition.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/SpeechRecognition.test.js -------------------------------------------------------------------------------- /src/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/actions.js -------------------------------------------------------------------------------- /src/android.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/android.test.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/index.js -------------------------------------------------------------------------------- /src/isAndroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/isAndroid.js -------------------------------------------------------------------------------- /src/isAndroid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/isAndroid.test.js -------------------------------------------------------------------------------- /src/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/reducers.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/vendor/corti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/tests/vendor/corti.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBrill/react-speech-recognition/HEAD/yarn.lock --------------------------------------------------------------------------------