- Standalone Node.js OIDC server simulating Google login - Uses oidc-provider with dev interactions for quick testing - Configurable via environment variables - Includes README with setup instructions and MAS config example
13 lines
201 B
JSON
13 lines
201 B
JSON
{
|
|
"name": "mock-google-oidc",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node server.mjs"
|
|
},
|
|
"dependencies": {
|
|
"jose": "^6.0.11",
|
|
"oidc-provider": "^9.5.1"
|
|
}
|
|
}
|