1- # @cyberark-auth/ core
1+ # @vector-institute/aieng-auth- core
22
33Framework-agnostic CyberArk OAuth authentication core library with PKCE support.
44
@@ -14,11 +14,11 @@ Framework-agnostic CyberArk OAuth authentication core library with PKCE support.
1414## Installation
1515
1616``` bash
17- npm install @cyberark-auth/ core
17+ npm install @vector-institute/aieng-auth- core
1818# or
19- pnpm add @cyberark-auth/ core
19+ pnpm add @vector-institute/aieng-auth- core
2020# or
21- yarn add @cyberark-auth/ core
21+ yarn add @vector-institute/aieng-auth- core
2222```
2323
2424## Quick Start
@@ -29,7 +29,7 @@ import {
2929 TokenManager ,
3030 MemoryTokenStorage ,
3131 type AuthConfig ,
32- } from ' @cyberark-auth/ core' ;
32+ } from ' @vector-institute/aieng-auth- core' ;
3333
3434// Configure authentication
3535const config: AuthConfig = {
@@ -67,7 +67,7 @@ import {
6767 MemoryTokenStorage ,
6868 SessionStorageAdapter ,
6969 LocalStorageAdapter ,
70- } from ' @cyberark-auth/ core' ;
70+ } from ' @vector-institute/aieng-auth- core' ;
7171
7272// Memory storage (most secure, lost on refresh)
7373const memoryStorage = new MemoryTokenStorage ();
@@ -82,7 +82,7 @@ const localStorage = new LocalStorageAdapter();
8282### Token Manager
8383
8484``` typescript
85- import { TokenManager } from ' @cyberark-auth/ core' ;
85+ import { TokenManager } from ' @vector-institute/aieng-auth- core' ;
8686
8787const manager = new TokenManager (storage );
8888
@@ -109,7 +109,7 @@ await manager.clearTokens();
109109### Token Validation
110110
111111``` typescript
112- import { decodeToken , isTokenExpired , validateToken } from ' @cyberark-auth/ core' ;
112+ import { decodeToken , isTokenExpired , validateToken } from ' @vector-institute/aieng-auth- core' ;
113113
114114// Decode JWT
115115const decoded = decodeToken (accessToken );
0 commit comments