-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.65 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.65 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
{
"name": "@mskits/validate-auth",
"version": "1.0.1",
"description": "A lightweight, TypeScript-ready authentication validation utility for NestJS microservices architecture",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FinCube-23/validate-auth.git"
},
"homepage": "https://github.com/FinCube-23/validate-auth#readme",
"bugs": {
"url": "https://github.com/FinCube-23/validate-auth/issues"
},
"keywords": [
"nestjs",
"authentication",
"validation",
"microservices",
"auth",
"jwt",
"typescript",
"rxjs",
"guard",
"middleware"
],
"author": {
"name": "antonin686"
},
"contributors": [
{
"name": "SampadSikder"
}
],
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"@nestjs/microservices": "^9.0.0 || ^10.0.0",
"rxjs": "^7.0.0"
},
"dependencies": {
"consola": "^3.4.0",
"fast-safe-stringify": "^2.1.1",
"iterare": "^1.2.1",
"path-to-regexp": "^8.2.0",
"reflect-metadata": "^0.2.2",
"tslib": "^2.8.1",
"uid": "^2.0.2"
},
"devDependencies": {
"@nestjs/microservices": "^10.3.8",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@types/node": "^22.13.4",
"rxjs": "^7.8.1",
"typescript": "^5.7.3"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"prepare": "npm run build"
}
}