1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| {
| "name": "@dh-software/opus-x-openid-client-helper",
| "version": "1.0.2",
| "description": "Custom abstraction library for openid-client",
| "main": "./dist/index.js",
| "type": "module",
| "types": "./dist/index.d.ts",
| "files": [
| "./dist"
| ],
| "scripts": {
| "prepublishOnly": "npm run build:prod",
| "build:prod": "npx tsc",
| "test": "echo \"Error: no test specified\" && exit 1"
| },
| "keywords": [],
| "author": "D+H Software",
| "license": "proprietary",
| "devDependencies": {
| "@types/node": "^24.5.0",
| "typescript": "^5.9.3"
| },
| "dependencies": {
| "jose": "^6.2.2",
| "openid-client": "^6.8.3"
| }
| }
|
|