├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── renovate.json └── workflows │ └── main.yml ├── .gitignore ├── .idea └── .idea.passwordless-client-js.dir │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── .prettierrc.json ├── LICENSE.txt ├── README.md ├── Screenshot 2023-04-28 at 11.50.52 AM (2).png ├── eslint.config.js ├── jest.config.js ├── package.json ├── rollup.config.js ├── src ├── Client.spec.ts ├── passwordless.ts └── types.ts └── tsconfig.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .vscode 4 | .DS_STORE 5 | .idea -------------------------------------------------------------------------------- /.idea/.idea.passwordless-client-js.dir/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/.idea/.idea.passwordless-client-js.dir/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.passwordless-client-js.dir/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/.idea/.idea.passwordless-client-js.dir/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.passwordless-client-js.dir/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/.idea/.idea.passwordless-client-js.dir/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.passwordless-client-js.dir/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/.idea/.idea.passwordless-client-js.dir/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot 2023-04-28 at 11.50.52 AM (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/Screenshot 2023-04-28 at 11.50.52 AM (2).png -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/Client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/src/Client.spec.ts -------------------------------------------------------------------------------- /src/passwordless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/src/passwordless.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwarden/passwordless-client-js/HEAD/tsconfig.json --------------------------------------------------------------------------------