- openid-client 기반 SSO Discovery 및 클라이언트 초기화 - jose를 이용한 동적 JWKS 생성 및 엔드포인트(/well-known/jwks.json) 구현 - OIDC 백채널 인증 흐름 시뮬레이션 및 상세 로그 추가 - .env 기반 환경 설정 및 보안 처리
20 lines
391 B
JSON
20 lines
391 B
JSON
{
|
|
"name": "headless-login-demo",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"dotenv": "^17.4.1",
|
|
"express": "^5.2.1",
|
|
"jose": "^6.2.2",
|
|
"openid-client": "^5.7.1"
|
|
}
|
|
}
|