-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.06 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@zitadel/nestjs-auth",
"version": "1.6.2",
"type": "module",
"description": "A comprehensive Auth.js integration for NestJS applications with TypeScript support, framework-agnostic HTTP adapters, and role-based access control",
"author": {
"name": "Mridang Agarwalla",
"email": "mridang@zitadel.com",
"url": "https://github.com/zitadel"
},
"license": "Apache-2.0",
"scripts": {
"prepack": "tsc",
"prepare": "npm run build",
"build": "tsc",
"test": "jest --verbose --config=jest.config.mjs --runInBand",
"test:watch": "npm run test -- --watch",
"test:debug": "jest --verbose --config=jest.config.mjs --runInBand --detectOpenHandles",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"depcheck": "npx knip",
"docs": "typedoc"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./adapters": {
"types": "./dist/adapter.d.ts"
}
},
"keywords": [
"nestjs",
"authjs",
"authentication",
"authorization",
"oauth",
"session",
"jwt",
"typescript",
"express",
"fastify",
"guards",
"decorators",
"rbac",
"roles",
"middleware",
"google",
"github",
"social-login",
"passport",
"security"
],
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0"
},
"devDependencies": {
"@auth/core": "^0.40.0",
"@commitlint/config-conventional": "^20.5.0",
"@jest/globals": "^30.0.5",
"@mridang/eslint-defaults": "^1.6.3",
"@nestjs/common": "11.1.5",
"@nestjs/core": "11.1.18",
"@nestjs/platform-express": "11.1.15",
"@nestjs/testing": "^11.1.5",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@tsconfig/node22": "^22.0.2",
"@types/express": "^5.0.3",
"@types/jest": "30.0.0",
"@types/node": "^22.18.13",
"@types/supertest": "^6.0.3",
"cookiejar": "^2.1.4",
"eslint": "^9.39.1",
"fastify": "^5.4.0",
"jest": "30.0.5",
"jest-junit": "^17.0.0",
"knip": "^5.83.0",
"prettier": "^3.6.2",
"reflect-metadata": "0.2.2",
"semantic-release": "^25.0.1",
"superagent": "^10.2.3",
"supertest": "^7.1.4",
"testcontainers": "^12.0.0",
"ts-jest": "29.4.0",
"typedoc": "^0.28.7",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zitadel/nestjs-auth.git"
},
"dependencies": {
"memoize": "^10.1.0",
"qs": "^6.14.0"
},
"private": false,
"engines": {
"node": ">=22.0.0"
},
"homepage": "https://github.com/zitadel/nestjs-auth",
"bugs": "https://github.com/zitadel/nestjs-auth/issues",
"publishConfig": {
"access": "public"
},
"overrides": {
"multer": "2.2.0"
}
}