### Required Peer Dependencies This library requires the following peer dependency to be installed in your application:
npm install mike-sso``bash`
npm install jwt-decode
without issues. Example:``typescriptexport class JwtService {
decodeToken(token: string): any {
return jwtDecode(token);
}
}