-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 KB
/
package.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "passport-zitadel",
"version": "0.0.0-development",
"description": "Passport JS strategy for ZITADEL IDP",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc -w",
"build": "tsc -p tsconfig.build.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/buehler/node-passport-zitadel.git"
},
"keywords": [
"passport",
"zitadel",
"oauth",
"oidc",
"introspection",
"authentication",
"auth",
"authn"
],
"author": "Christoph Bühler <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/buehler/node-passport-zitadel/issues"
},
"homepage": "https://github.com/buehler/node-passport-zitadel#readme",
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/jest": "29.5.14",
"@types/node-rsa": "1.1.4",
"@types/passport": "1.0.16",
"babel-jest": "29.7.0",
"jest": "29.7.0",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"dependencies": {
"axios": "^1.0.0",
"jose": "^5.0.0",
"node-rsa": "^1.1.1",
"openid-client": "^5.1.9",
"passport": "^0.7.0"
}
}