├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── pull_request.yml │ └── pull_request_lint.yml ├── .gitignore ├── .prettierignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .yarn └── releases │ └── yarn-4.0.0-rc.39.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── core ├── env.ts ├── error.ts ├── jwt.test.ts ├── jwt.ts └── utils.ts ├── google ├── accessToken.test.ts ├── accessToken.ts ├── credentials.test.ts ├── credentials.ts ├── customToken.test.ts ├── customToken.ts ├── idToken.test.ts ├── idToken.ts └── index.ts ├── index.ts ├── jest.config.js ├── package.json ├── test ├── env.ts ├── setup.ts └── test.env ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/.github/workflows/pull_request_lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /.yarn 2 | /dist 3 | /node_modules 4 | /tsconfig.json 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.0.0-rc.39.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/.yarn/releases/yarn-4.0.0-rc.39.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/README.md -------------------------------------------------------------------------------- /core/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/core/env.ts -------------------------------------------------------------------------------- /core/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/core/error.ts -------------------------------------------------------------------------------- /core/jwt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/core/jwt.test.ts -------------------------------------------------------------------------------- /core/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/core/jwt.ts -------------------------------------------------------------------------------- /core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/core/utils.ts -------------------------------------------------------------------------------- /google/accessToken.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/google/accessToken.test.ts -------------------------------------------------------------------------------- /google/accessToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/google/accessToken.ts -------------------------------------------------------------------------------- /google/credentials.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/google/credentials.test.ts -------------------------------------------------------------------------------- /google/credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/google/credentials.ts -------------------------------------------------------------------------------- /google/customToken.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/google/customToken.test.ts -------------------------------------------------------------------------------- /google/customToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/google/customToken.ts -------------------------------------------------------------------------------- /google/idToken.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/google/idToken.test.ts -------------------------------------------------------------------------------- /google/idToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/google/idToken.ts -------------------------------------------------------------------------------- /google/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/google/index.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/package.json -------------------------------------------------------------------------------- /test/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/test/env.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/test/test.env -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/web-auth-library/HEAD/yarn.lock --------------------------------------------------------------------------------